themes-gotham/blocks/stats.schema.json
Alex Dunmow dfe3bd780d 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:06:38 +08:00

41 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Stats Block",
"description": "Display statistics with labels and values",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Statistics",
"description": "List of statistic items to display",
"x-editor": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string",
"title": "Value",
"description": "The statistic value (e.g., '100+', '99%')",
"x-editor": "text"
},
"label": {
"type": "string",
"title": "Label",
"description": "Description of the statistic",
"x-editor": "text"
},
"icon": {
"type": "string",
"title": "Icon",
"description": "Icon name (chart, users, clock, star)",
"x-editor": "select",
"enum": ["", "chart", "users", "clock", "star"]
}
},
"required": ["value", "label"]
}
}
},
"required": []
}