# get_dashboard_draft Read the exact current private draft and retained revision for one dashboard. Machine-readable: [focused JSON](/docs/agent-tools/tools/get_dashboard_draft.json) ยท [complete manifest](/docs/agent-tools/manifest.json) ## Contract | Property | Value | | --- | --- | | Authorization | `RESOURCE_EDIT` | | Effect | `read` | | Operation | `manual` | | Tags | `dashboard`, `authoring`, `draft` | | Defaults | `{}` | | MCP annotations | read-only, idempotent, non-destructive, closed-world | ## Input schema ```json { "additionalProperties": false, "properties": { "dashboardId": { "minLength": 1, "type": "string" } }, "required": [ "dashboardId" ], "type": "object" } ``` ## Output schema ```json { "additionalProperties": false, "properties": { "lifecycle": { "additionalProperties": {}, "type": "object" }, "revision": { "additionalProperties": {}, "type": "object" } }, "required": [ "lifecycle", "revision" ], "type": "object" } ```