themes-lcars/blocks/lcars_header.schema.json
Alex Dunmow 6dbd76f2e8 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:00:19 +08:00

42 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LCARS Header",
"description": "Top bar with elbow bracket, status indicators, and stardate",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "Main display title",
"x-editor": "text"
},
"subtitle": {
"type": "string",
"title": "Subtitle",
"description": "Secondary text below the title",
"x-editor": "text"
},
"stardate": {
"type": "string",
"title": "Stardate",
"description": "Stardate display (leave empty for auto)",
"x-editor": "text"
},
"status": {
"type": "string",
"title": "Status",
"description": "System status indicator",
"enum": ["online", "standby", "alert", "offline"],
"default": "online",
"x-editor": "select"
},
"menu_name": {
"type": "string",
"title": "Menu Name",
"description": "Navigation menu to display",
"x-editor": "text"
}
},
"required": ["title"]
}