{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Schematic Hero", "description": "Landing hero with a large display title over a blueprint image and dual CTAs.", "type": "object", "properties": { "title": { "type": "string", "title": "Title", "description": "Main display headline (rendered in Space Grotesk at >= 64px).", "x-editor": "text" }, "kicker": { "type": "string", "title": "Kicker", "description": "Short mono uppercase eyebrow text printed above the title.", "x-editor": "text" }, "image": { "type": "string", "title": "Background Image", "description": "Blueprint / schematic image rendered behind the title.", "x-editor": "media" }, "primaryCta": { "type": "object", "title": "Primary CTA", "description": "Primary call-to-action link.", "x-editor": "link", "properties": { "text": { "type": "string", "title": "Text", "x-editor": "text" }, "href": { "type": "string", "title": "URL", "x-editor": "text" } } }, "secondaryCta": { "type": "object", "title": "Secondary CTA", "description": "Optional secondary call-to-action link.", "x-editor": "link", "properties": { "text": { "type": "string", "title": "Text", "x-editor": "text" }, "href": { "type": "string", "title": "URL", "x-editor": "text" } } } } }