{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Glow Stats", "description": "Big mono numerals with accent underline and short labels.", "type": "object", "properties": { "items": { "type": "array", "title": "Items", "description": "Stats to display", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "value": { "type": "string", "title": "Value", "description": "Big numeric or string value (e.g. 99.99)", "x-editor": "text" }, "label": { "type": "string", "title": "Label", "description": "Short uppercase caption beneath the value", "x-editor": "text" }, "suffix": { "type": "string", "title": "Suffix", "description": "Trailing unit or symbol (e.g. % or ms), accent-coloured", "x-editor": "text" } } } } } }