{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Cozy Footer", "description": "Newsletter signup, small affirmation line, menu, and social links.", "type": "object", "properties": { "showSignup": { "type": "string", "title": "Newsletter signup", "description": "Toggle the inline email signup form.", "default": "yes", "enum": ["yes", "no"], "x-editor": "select" }, "affirmation": { "type": "string", "title": "Closing line", "description": "Short closing affirmation displayed beneath the signup.", "default": "Be gentle with yourself today.", "x-editor": "textarea" }, "menuName": { "type": "string", "title": "Menu", "description": "Name of the menu rendered in the footer column.", "x-editor": "menu-select" }, "social": { "type": "array", "title": "Social links", "description": "Outbound social links shown as small pills.", "x-editor": "array", "items": { "type": "string", "x-editor": "link" } } } }