themes-art-deco/schemas/press_quote.schema.json
Alex Dunmow 9fbedf5ba1 initial: theme plugin art-deco
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/art-deco.

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

32 lines
786 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Press Quote",
"description": "Italic Cormorant pull-quote between fan dividers.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Quote",
"description": "The press quotation (rich text).",
"x-editor": "richtext",
"default": ""
},
"source": {
"type": "string",
"title": "Source",
"description": "Attribution line — e.g. 'The Daily, March 2024'.",
"x-editor": "text",
"default": ""
},
"stars": {
"type": "integer",
"title": "Stars",
"description": "Filled-star count, clamped to 05.",
"x-editor": "number",
"default": 0,
"minimum": 0,
"maximum": 5
}
}
}