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

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

27 lines
663 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Storybook Quote",
"description": "Picture-book page treatment for a quote with optional illustration.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Quote",
"description": "The quoted text.",
"x-editor": "textarea"
},
"author": {
"type": "string",
"title": "Author",
"description": "Who said it.",
"x-editor": "text"
},
"illustration": {
"type": "string",
"title": "Illustration",
"description": "Optional picture-book illustration.",
"x-editor": "media"
}
}
}