{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IbaDashboard", "title": "IbaDashboard", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "label": { "type": "string" }, "description": { "type": "string" }, "predefined_dashboard": { "type": "string" }, "widget_grid": { "type": "array", "items": { "type": "array", "items": { "type": "string" } } }, "updated_at": { "type": "string", "format": "date-time" } } }