themes-pastel-dream/blocks/affirmation.schema.json
Alex Dunmow 5dfc1cd4be 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:27:47 +08:00

30 lines
835 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Affirmation Strip",
"description": "Slow-shimmer band carrying a short affirmation in display type.",
"type": "object",
"properties": {
"quote": {
"type": "string",
"title": "Affirmation",
"description": "Short calming line (one or two sentences).",
"default": "You are doing enough.",
"x-editor": "textarea"
},
"author": {
"type": "string",
"title": "Attribution",
"description": "Optional source for the line.",
"x-editor": "text"
},
"palette": {
"type": "string",
"title": "Palette",
"description": "Which watercolor wash to use behind the strip.",
"default": "blush",
"enum": ["blush", "mint", "butter", "sky"],
"x-editor": "select"
}
}
}