{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Crew Roster", "description": "Hosts and crew as LCARS ID panels.", "type": "object", "properties": { "eyebrow": { "type": "string", "title": "Eyebrow", "x-editor": "text" }, "heading": { "type": "string", "title": "Heading", "x-editor": "text" }, "members": { "type": "array", "title": "Crew", "x-editor": "collection", "items": { "type": "object", "properties": { "name": { "type": "string", "title": "Name", "x-editor": "text" }, "role": { "type": "string", "title": "Role", "x-editor": "text" }, "callsign": { "type": "string", "title": "Callsign", "x-editor": "text" }, "bio": { "type": "string", "title": "Bio", "x-editor": "textarea" }, "avatar": { "type": "string", "title": "Portrait", "x-editor": "media" } } } } } }