Files
rustycms/schemas/link_list.schema.json

16 lines
469 B
JSON

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