themes-corporate-modernist/blocks/stat_pair.schema.json
Alex Dunmow 3207394c38 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:48 +08:00

31 lines
905 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Stat Pair",
"description": "Pair (or row) of mono-numeral statistics, separated by a hairline rule.",
"type": "object",
"properties": {
"title": {
"type": "string",
"title": "Title",
"description": "Optional title above the stats row",
"x-editor": "text"
},
"stats": {
"type": "array",
"title": "Stats",
"description": "Individual statistic entries",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"figure": { "type": "string", "title": "Figure", "x-editor": "text" },
"label": { "type": "string", "title": "Label", "x-editor": "text" },
"source": { "type": "string", "title": "Source", "x-editor": "text" }
},
"required": ["figure"]
}
}
}
}