themes-cyberpunk/blocks/stats_glow.schema.json
Alex Dunmow 8ea1477d37 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:26:00 +08:00

39 lines
1.0 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Glow Stats",
"description": "Big mono numerals with accent underline and short labels.",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Items",
"description": "Stats to display",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string",
"title": "Value",
"description": "Big numeric or string value (e.g. 99.99)",
"x-editor": "text"
},
"label": {
"type": "string",
"title": "Label",
"description": "Short uppercase caption beneath the value",
"x-editor": "text"
},
"suffix": {
"type": "string",
"title": "Suffix",
"description": "Trailing unit or symbol (e.g. % or ms), accent-coloured",
"x-editor": "text"
}
}
}
}
}
}