{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DashboardDetails", "title": "DashboardDetails", "additionalProperties": false, "description": "Details of a dashboard.", "properties": { "description": { "description": "The description of the dashboard.", "type": "string" }, "editPermissions": { "description": "The edit permissions for the dashboard.", "items": { "$ref": "#/components/schemas/SharePermission" }, "type": "array" }, "name": { "description": "The name of the dashboard.", "type": "string" }, "sharePermissions": { "description": "The share permissions for the dashboard.", "items": { "$ref": "#/components/schemas/SharePermission" }, "type": "array" } }, "required": [ "editPermissions", "name", "sharePermissions" ], "type": "object" }