# preview_dashboard_draft Preview an exact private dashboard draft revision and page against the active governed runtime. Machine-readable: [focused JSON](/docs/agent-tools/tools/preview_dashboard_draft.json) ยท [complete manifest](/docs/agent-tools/manifest.json) ## Contract | Property | Value | | --- | --- | | Authorization | `RESOURCE_EDIT` | | Effect | `read` | | Operation | `manual` | | Tags | `dashboard`, `authoring`, `preview` | | Defaults | `{}` | | MCP annotations | read-only, idempotent, non-destructive, closed-world | ## Input schema ```json { "additionalProperties": false, "properties": { "dashboardId": { "minLength": 1, "type": "string" }, "draftId": { "minLength": 1, "type": "string" }, "expectedRevision": { "additionalProperties": false, "properties": { "contentHash": { "type": "string" }, "number": { "type": "integer" }, "revisionId": { "type": "string" } }, "required": [ "contentHash", "number", "revisionId" ], "type": "object" }, "filters": { "additionalProperties": {}, "type": "object" }, "page": { "minLength": 1, "type": "string" } }, "required": [ "dashboardId", "draftId", "expectedRevision", "page" ], "type": "object" } ``` ## Output schema ```json { "additionalProperties": false, "properties": { "definition": { "additionalProperties": {}, "type": "object" }, "pagePatch": { "additionalProperties": {}, "type": "object" }, "revision": { "additionalProperties": {}, "type": "object" }, "semanticEvidence": { "additionalProperties": {}, "type": "object" } }, "required": [ "definition", "pagePatch", "revision", "semanticEvidence" ], "type": "object" } ```