{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "dashboard-descriptor.schema.json", "title": "DashboardDescriptor", "description": "Describes a dashboard configuration with groups and visualizations", "type": "object", "properties": { "description": { "type": "string", "description": "Description text shown below the dashboard title" }, "groups": { "type": "array", "description": "Dashboard groups, each bound to a single entity", "items": { "$ref": "dashboard-group-descriptor.schema.json" }, "minItems": 1 } }, "required": ["groups"], "additionalProperties": false }