themes-brutalist/blocks/pull_quote.schema.json
Alex Dunmow 979516b5e9 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:08:06 +08:00

22 lines
554 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Pull Quote",
"description": "Massive quote spanning 8 columns with hairline rules above and below",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Quote",
"description": "The quoted text",
"x-editor": "richtext"
},
"attribution": {
"type": "string",
"title": "Attribution",
"description": "Person or source the quote is attributed to",
"x-editor": "text"
}
},
"required": ["quote"]
}