{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Roster Grid", "description": "Crew / studio roster of neon HUD cards.", "type": "object", "properties": { "eyebrow": { "type": "string", "title": "Eyebrow", "x-editor": "text" }, "heading": { "type": "string", "title": "Heading", "x-editor": "text" }, "intro": { "type": "string", "title": "Intro", "x-editor": "textarea" }, "members": { "type": "array", "title": "Members", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "name": { "type": "string", "title": "Name", "x-editor": "text" }, "handle": { "type": "string", "title": "Handle", "description": "e.g. @nova", "x-editor": "text" }, "role": { "type": "string", "title": "Role", "x-editor": "text" }, "avatar": { "type": "string", "title": "Avatar", "x-editor": "media" }, "status": { "type": "boolean", "title": "Show online dot", "default": true, "x-editor": "checkbox" } } } }, "class": { "type": "string", "title": "CSS Classes", "x-editor": "text" } } }