{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Metadata Strip", "description": "Mono uppercase strip: CLIENT / YEAR / DISCIPLINE / LOCATION", "type": "object", "properties": { "items": { "type": "array", "title": "Items", "description": "Label/value pairs displayed inline", "default": [], "x-editor": "collection", "items": { "type": "object", "properties": { "label": { "type": "string", "title": "Label", "description": "Short uppercase label", "x-editor": "text" }, "value": { "type": "string", "title": "Value", "description": "Value text shown beside the label", "x-editor": "text" } }, "required": ["label", "value"] } } } }