{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchedDashboard", "title": "PatchedDashboard", "type": "object", "description": "Serializer mixin that handles tags for objects.", "properties": { "id": { "type": "integer", "readOnly": true }, "name": { "type": "string", "nullable": true, "maxLength": 400 }, "description": { "type": "string" }, "pinned": { "type": "boolean" }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "last_accessed_at": { "type": "string", "format": "date-time", "nullable": true }, "last_viewed_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "is_shared": { "type": "boolean", "readOnly": true }, "deleted": { "type": "boolean" }, "creation_mode": { "allOf": [ { "$ref": "#/components/schemas/CreationModeEnum" } ], "readOnly": true }, "filters": { "type": "object", "additionalProperties": true, "readOnly": true }, "variables": { "type": "object", "additionalProperties": true, "nullable": true, "readOnly": true }, "breakdown_colors": { "description": "Custom color mapping for breakdown values." }, "data_color_theme_id": { "type": "integer", "nullable": true, "description": "ID of the color theme used for chart visualizations." }, "tags": { "type": "array", "items": {} }, "restriction_level": { "$ref": "#/components/schemas/RestrictionLevelEnum" }, "effective_restriction_level": { "allOf": [ { "$ref": "#/components/schemas/EffectivePrivilegeLevelEnum" } ], "readOnly": true }, "effective_privilege_level": { "allOf": [ { "$ref": "#/components/schemas/EffectivePrivilegeLevelEnum" } ], "readOnly": true }, "user_access_level": { "type": "string", "nullable": true, "readOnly": true, "description": "The effective access level the user has for this object" }, "access_control_version": { "type": "string", "readOnly": true }, "last_refresh": { "type": "string", "format": "date-time", "nullable": true }, "persisted_filters": { "type": "object", "additionalProperties": true, "nullable": true, "readOnly": true }, "persisted_variables": { "type": "object", "additionalProperties": true, "nullable": true, "readOnly": true }, "team_id": { "type": "integer", "readOnly": true }, "quick_filter_ids": { "type": "array", "items": { "type": "string" }, "nullable": true, "description": "List of quick filter IDs associated with this dashboard" }, "tiles": { "type": "array", "items": { "type": "object", "additionalProperties": true }, "nullable": true, "readOnly": true }, "use_template": { "type": "string", "writeOnly": true, "description": "Template key to create the dashboard from a predefined template." }, "use_dashboard": { "type": "integer", "writeOnly": true, "nullable": true, "description": "ID of an existing dashboard to duplicate." }, "delete_insights": { "type": "boolean", "writeOnly": true, "default": false, "description": "When deleting, also delete insights that are only on this dashboard." }, "_create_in_folder": { "type": "string", "writeOnly": true, "title": " create in folder" } } }