themes-kindergarten/blocks/alphabet_strip.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

24 lines
670 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Alphabet Strip",
"description": "Decorative letter band — primary, rainbow, or mono colorways.",
"type": "object",
"properties": {
"letters": {
"type": "string",
"title": "Letters",
"description": "Sequence of letters to render. Each character becomes one tile.",
"default": "ABCDEFGHIJ",
"x-editor": "text"
},
"colorMode": {
"type": "string",
"title": "Color Mode",
"description": "How the letter tiles are colored.",
"x-editor": "select",
"enum": ["primary", "rainbow", "mono"],
"default": "rainbow"
}
}
}