{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LCARS Sidebar", "description": "Left panel with rounded-rectangle navigation buttons", "type": "object", "properties": { "items": { "type": "array", "title": "Navigation Items", "description": "List of sidebar navigation buttons", "items": { "type": "object", "properties": { "label": { "type": "string", "title": "Label" }, "url": { "type": "string", "title": "URL" }, "color": { "type": "string", "title": "Color", "enum": ["primary", "secondary", "accent"], "default": "primary" } }, "required": ["label", "url"] } } } }