{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Friendly Footer", "description": "Mascot wave, optional signup, contact, social links, and crayon-rule divider.", "type": "object", "properties": { "showSignup": { "type": "string", "title": "Show Newsletter Signup", "description": "Render the small newsletter signup form.", "x-editor": "select", "enum": ["true", "false"], "default": "true" }, "mascotName": { "type": "string", "title": "Mascot Name", "description": "Name of the mascot displayed in the footer wave (e.g. 'Pip').", "default": "Pip", "x-editor": "text" }, "socialLinks": { "type": "array", "title": "Social Links", "description": "Friendly icon links for social platforms.", "default": [], "x-editor": "array", "items": { "type": "object", "properties": { "platform": { "type": "string", "title": "Platform", "description": "Which platform this link points to.", "x-editor": "select", "enum": ["facebook", "instagram", "youtube", "tiktok", "email"] }, "href": { "type": "string", "title": "URL", "description": "Link target.", "x-editor": "link" } } } } } }