{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Leadership Grid", "description": "Responsive 2/3/4-up grid of leadership profiles.", "type": "object", "properties": { "title": { "type": "string", "title": "Title", "description": "Section title above the grid", "x-editor": "text" }, "members": { "type": "array", "title": "Members", "description": "Each member is a card with photo, name, role, short bio, and optional LinkedIn link", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "name": { "type": "string", "title": "Name", "x-editor": "text" }, "role": { "type": "string", "title": "Role", "x-editor": "text" }, "bio": { "type": "string", "title": "Bio", "x-editor": "textarea" }, "photo": { "type": "string", "title": "Photo", "x-editor": "media" }, "linkedin": { "type": "string", "title": "LinkedIn URL", "x-editor": "link" } }, "required": ["name"] } } } }