themes-corporate-modernist/schemas/cta_strip.schema.json
Alex Dunmow 4713787bbd initial: theme plugin corporate-modernist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/corporate-modernist.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:24 +08:00

31 lines
801 B
JSON

{
"$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"
}
}
}