Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously an unversioned directory inside ~/src/blockninja-themes/corporate-modernist. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
31 lines
905 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|