{ "$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"] } } } }