themes-scifi-clean/blocks/footer.schema.json
Alex Dunmow dc4cc2d8b3 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:24:40 +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"]
}
}
}
}