themes-cyberpunk/schemas/footer_grid.schema.json
Alex Dunmow 313ebaf296 initial: theme plugin cyberpunk
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/cyberpunk.

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

53 lines
1.5 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Grid Footer",
"description": "Multi-column footer with mono column titles, optional status pill, and a build-hash readout.",
"type": "object",
"properties": {
"showStatus": {
"type": "string",
"title": "Show status pill",
"description": "Display the OK/uptime status pill at the bottom right",
"x-editor": "select",
"enum": ["on", "off"],
"default": "on"
},
"buildHash": {
"type": "string",
"title": "Build hash",
"description": "Short build hash or version readout (e.g. 'a1b2c3' or 'auto')",
"x-editor": "text"
},
"columns": {
"type": "array",
"title": "Columns",
"description": "Footer columns with links",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Column title",
"x-editor": "text"
},
"links": {
"type": "array",
"title": "Links",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"label": { "type": "string", "title": "Label", "x-editor": "text" },
"href": { "type": "string", "title": "Href", "x-editor": "text" }
}
}
}
}
}
}
}
}