themes-noir/blocks/footer.schema.json

41 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Noir Footer",
"description": "Dissolved bottom rail with optional colophon and social links.",
"type": "object",
"properties": {
"showColophon": {
"type": "string",
"title": "Show Colophon",
"description": "Render the colophon block beneath the footer rail.",
"x-editor": "select",
"enum": ["true", "false"],
"default": "true"
},
"social": {
"type": "array",
"title": "Social Links",
"description": "Optional social media links shown on the right of the footer rail.",
"x-editor": "array",
"default": [],
"items": {
"type": "object",
"x-editor": "link",
"properties": {
"text": {
"type": "string",
"title": "Label",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"x-editor": "text"
}
},
"required": ["text", "url"]
}
}
}
}