{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DashboardUpdateRequest", "title": "Dashboard Request", "type": "object", "properties": { "name": { "description": "The dashboard name, which is displayed at the top of the dashboard and in lists.\nIt does not need to be unique.\n", "type": "string", "maxLength": 255, "minLength": 1 }, "definition": { "$ref": "#/components/schemas/Dashboard" }, "labels": { "$ref": "#/components/schemas/Labels" } }, "required": [ "name", "definition" ] }