themes-kindergarten/schemas/numbers_counter.schema.json
Alex Dunmow ffe46a146c initial: theme plugin kindergarten
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/kindergarten.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:35 +08:00

33 lines
879 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Numbers Counter",
"description": "Big circular numeral badges for stats (e.g. '12 teachers').",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Numbers",
"description": "Collection of (number, label) pairs.",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"number": {
"type": "integer",
"title": "Number",
"description": "Numeral rendered as a circular badge.",
"x-editor": "number"
},
"label": {
"type": "string",
"title": "Label",
"description": "Plain-language description (e.g. 'teachers').",
"x-editor": "text"
}
}
}
}
}
}