{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LCARS Panel", "description": "Framed content area with LCARS border treatment", "type": "object", "properties": { "title": { "type": "string", "title": "Panel Title", "description": "Title shown in the panel header bar", "x-editor": "text" }, "content": { "type": "string", "title": "Content", "description": "Panel body content (HTML)", "x-editor": "richtext" }, "border_color": { "type": "string", "title": "Border Color", "description": "Which theme color for the panel border", "enum": ["primary", "secondary", "accent"], "default": "primary", "x-editor": "select" } }, "required": ["title"] }