Power BI · Schema
Dashboard
A Power BI dashboard
AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the dashboard |
| displayName | string | The display name of the dashboard |
| isReadOnly | boolean | Whether the dashboard is read-only |
| webUrl | string | The web URL of the dashboard |
| embedUrl | string | The embed URL for embedding the dashboard |
| dataClassification | string | The data classification label |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Dashboard",
"title": "Dashboard",
"type": "object",
"description": "A Power BI dashboard",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier of the dashboard",
"example": "abc123"
},
"displayName": {
"type": "string",
"description": "The display name of the dashboard",
"example": "example_value"
},
"isReadOnly": {
"type": "boolean",
"description": "Whether the dashboard is read-only",
"example": true
},
"webUrl": {
"type": "string",
"format": "uri",
"description": "The web URL of the dashboard",
"example": "https://www.example.com"
},
"embedUrl": {
"type": "string",
"format": "uri",
"description": "The embed URL for embedding the dashboard",
"example": "https://www.example.com"
},
"dataClassification": {
"type": "string",
"description": "The data classification label",
"example": "example_value"
}
}
}