FILE / ScuroNeko/scuroneko.dev

data/schemas/links.schema.json

Исходный файл и его история в репозитории.
FILE main
Files

33 lines
692 B
JSON

{
"$id": "https://scuroneko.dev/schemas/links.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"minLength": 1,
"type": "string"
},
"label": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"tone": {
"$ref": "./shared.schema.json#/$defs/tone"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": ["key", "name", "label", "url", "tone"],
"type": "object"
},
"title": "Links",
"type": "array"
}