{ "$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"] }