{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Colophon Footer", "description": "Three-row mono footer with address, email, and social links", "type": "object", "properties": { "address": { "type": "string", "title": "Address", "description": "Studio postal address", "x-editor": "textarea" }, "email": { "type": "string", "title": "Contact Email", "description": "Contact email rendered in mono", "x-editor": "text" }, "showAddress": { "type": "string", "title": "Show Address", "description": "Toggle the address row on or off", "x-editor": "select", "enum": ["true", "false"], "default": "true" }, "social": { "type": "array", "title": "Social Links", "description": "Optional list of social links", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "label": { "type": "string", "title": "Label", "description": "Display label", "x-editor": "text" }, "url": { "type": "string", "title": "URL", "description": "Target URL", "x-editor": "link" } }, "required": ["label", "url"] } } } }