Files
rustycms/schemas/fullwidth_banner.schema.json

46 lines
872 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": {
"type": "string"
},
"image": {
"description": "Image URLs",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Internal name",
"type": "string"
},
"subheadline": {
"type": "string"
},
"text": {
"description": "Banner body text",
"type": "string"
},
"variant": {
"description": "Color variant",
"enum": [
"dark",
"light"
],
"type": "string"
}
},
"required": [
"_slug",
"name",
"variant",
"headline"
],
"type": "object"
}