Files
rustycms/schemas/link_list.schema.json

28 lines
621 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"_slug": {
"description": "Entry identifier (URL slug / filename without extension)",
"type": "string"
},
"headline": {
"description": "Link list headline",
"type": "string"
},
"links": {
"description": "Links (references to link)",
"items": {
"description": "Reference (slug) to collection 'link'",
"type": "string"
},
"type": "array"
}
},
"required": [
"_slug",
"headline",
"links"
],
"type": "object"
}