{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CTA Strip", "description": "Single-line accent strip with a headline and a primary call to action.", "type": "object", "properties": { "headline": { "type": "string", "title": "Headline", "x-editor": "text" }, "primaryCta": { "type": "object", "title": "Primary CTA", "x-editor": "link", "properties": { "label": { "type": "string", "title": "Label" }, "href": { "type": "string", "title": "Href" } } }, "variant": { "type": "string", "title": "Variant", "description": "Visual treatment for the strip", "x-editor": "select", "enum": ["book-call", "download", "quiet"], "default": "book-call" } } }