themes-editorial/schemas/pullquote.schema.json
Alex Dunmow 1d9a4c8ce6 initial: theme plugin editorial
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/editorial.

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

21 lines
633 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Pull Quote",
"description": "Large oxblood pull quote rendered in Playfair Display italic with optional attribution.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Quote",
"description": "The pull quote text. Rich text is permitted so authors can emphasise inline.",
"x-editor": "richtext"
},
"attribution": {
"type": "string",
"title": "Attribution",
"description": "Optional source attribution rendered in small caps below the quote.",
"x-editor": "text"
}
}
}