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>
27 lines
663 B
JSON
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"
|
|
}
|
|
}
|
|
}
|