Files
rustycms/schemas/top_banner.schema.json

24 lines
498 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"_slug": {
"description": "Entry identifier (URL slug / filename without extension)",
"type": "string"
},
"id": {
"description": "Unique ID",
"type": "string"
},
"text": {
"description": "Banner text (e.g. notice at top of page)",
"type": "string"
}
},
"required": [
"_slug",
"id",
"text"
],
"type": "object"
}