create_dashboard_draft
Create a private dashboard draft owned by the authenticated principal. Agent retries that reuse the same invocation identity and payload replay the original draft; reusing that identity with a different payload is rejected.
Machine-readable: focused JSON · complete manifest
Contract
| Property | Value |
|---|---|
| Authorization | RESOURCE_EDIT |
| Effect | write |
| Operation | manual |
| Tags | dashboard, authoring, create |
| Defaults | {} |
| MCP annotations | read/write, not idempotent, non-destructive, closed-world |
Input schema
{
"additionalProperties": false,
"properties": {
"dashboardId": {
"minLength": 1,
"type": "string"
},
"semanticModelId": {
"minLength": 1,
"type": "string"
},
"slug": {
"minLength": 1,
"type": "string"
},
"title": {
"minLength": 1,
"type": "string"
}
},
"required": [
"semanticModelId",
"title"
],
"type": "object"
}
Output schema
{
"additionalProperties": false,
"properties": {
"lifecycle": {
"additionalProperties": {},
"type": "object"
},
"revision": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"lifecycle",
"revision"
],
"type": "object"
}