themes-scifi-clean/schemas/footer.schema.json
Alex Dunmow 96b87b3e81 initial: theme plugin scifi-clean
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/scifi-clean.

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

47 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Instrument Footer",
"description": "Hairline-rule footer with callsign, optional signup, and link list.",
"type": "object",
"properties": {
"showSignup": {
"type": "boolean",
"title": "Show Signup",
"description": "Render the inline email signup form.",
"default": false,
"x-editor": "select"
},
"callsign": {
"type": "string",
"title": "Callsign",
"description": "Short mono identifier displayed at the corner of the footer rail.",
"x-editor": "text"
},
"links": {
"type": "array",
"title": "Links",
"description": "Footer link list (each item is text + url).",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string",
"title": "Link Text",
"description": "Visible link text.",
"x-editor": "text"
},
"url": {
"type": "string",
"title": "URL",
"description": "Destination URL.",
"x-editor": "text"
}
},
"required": ["text"]
}
}
}
}