{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Hero Statement", "description": "Restrained hero with eyebrow, headline, lede, and a single accent CTA (plus optional outline secondary).", "type": "object", "properties": { "eyebrow": { "type": "string", "title": "Eyebrow", "description": "Small uppercase label above the headline", "x-editor": "text" }, "headline": { "type": "string", "title": "Headline", "description": "Lead statement, typically one short sentence", "x-editor": "text" }, "lede": { "type": "string", "title": "Lede", "description": "Supporting paragraph below the headline", "x-editor": "textarea" }, "primaryCta": { "type": "object", "title": "Primary CTA", "description": "Accent-filled call to action", "x-editor": "link", "properties": { "label": { "type": "string", "title": "Label" }, "href": { "type": "string", "title": "Href" } } }, "secondaryCta": { "type": "object", "title": "Secondary CTA", "description": "Optional outline call to action", "x-editor": "link", "properties": { "label": { "type": "string", "title": "Label" }, "href": { "type": "string", "title": "Href" } } } } }