themes-kindergarten/blocks/storybook_quote.schema.json
Alex Dunmow dccd269ab2 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:17:12 +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"
}
}
}