themes-brutalist/schemas/pull_quote.schema.json
Alex Dunmow 771a286fa9 initial: theme plugin brutalist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/brutalist.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:21 +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"]
}