{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Transmission Status", "description": "Status board of channels and systems as LCARS readouts.", "type": "object", "properties": { "eyebrow": { "type": "string", "title": "Eyebrow", "x-editor": "text" }, "heading": { "type": "string", "title": "Heading", "x-editor": "text" }, "systems": { "type": "array", "title": "Systems", "x-editor": "collection", "items": { "type": "object", "properties": { "label": { "type": "string", "title": "Label", "x-editor": "text" }, "status": { "type": "string", "title": "Status", "x-editor": "select", "enum": ["online", "standby", "alert", "offline"], "default": "online" }, "detail": { "type": "string", "title": "Detail readout", "x-editor": "text" } } } } } }