themes-magazine-bold/blocks/pull_quote.schema.json
Alex Dunmow 989f1fb515 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:28:29 +08:00

29 lines
724 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Pull Quote",
"description": "Color-block pull quote that sits in the gutter or main column.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Quote",
"description": "The quote body (rich text).",
"x-editor": "richtext"
},
"attribution": {
"type": "string",
"title": "Attribution",
"description": "Who said it.",
"x-editor": "text"
},
"accent": {
"type": "string",
"title": "Accent",
"description": "Which rotating accent to apply.",
"enum": ["pink", "blue", "lime"],
"default": "pink",
"x-editor": "select"
}
}
}