themes-art-deco/schemas/footer.schema.json
Alex Dunmow 9fbedf5ba1 initial: theme plugin art-deco
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/art-deco.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:19 +08:00

38 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Footer",
"description": "Centered Art Deco footer with gold rule, address, reservations email and optional social row.",
"type": "object",
"properties": {
"address": {
"type": "string",
"title": "Address",
"description": "Multi-line postal address.",
"x-editor": "textarea",
"default": ""
},
"reservationsEmail": {
"type": "string",
"title": "Reservations email",
"description": "Public email shown in the footer for reservations enquiries.",
"x-editor": "text",
"default": ""
},
"showSocial": {
"type": "string",
"title": "Show social row",
"description": "Whether to render the social-icon row.",
"x-editor": "select",
"default": "true",
"enum": ["true", "false"]
},
"menuName": {
"type": "string",
"title": "Footer menu",
"description": "Name of the menu to render in the footer.",
"x-editor": "menu-select",
"default": ""
}
}
}