Power BI · Schema
Group
A Power BI workspace (group)
AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the workspace |
| name | string | The display name of the workspace |
| isReadOnly | boolean | Whether the workspace is read-only |
| isOnDedicatedCapacity | boolean | Whether the workspace is on a dedicated capacity |
| capacityId | string | The capacity ID if on a dedicated capacity |
| type | string | The workspace type |
| state | string | The workspace state |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Group",
"title": "Group",
"type": "object",
"description": "A Power BI workspace (group)",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier of the workspace",
"example": "abc123"
},
"name": {
"type": "string",
"description": "The display name of the workspace",
"example": "Example Title"
},
"isReadOnly": {
"type": "boolean",
"description": "Whether the workspace is read-only",
"example": true
},
"isOnDedicatedCapacity": {
"type": "boolean",
"description": "Whether the workspace is on a dedicated capacity",
"example": true
},
"capacityId": {
"type": "string",
"format": "uuid",
"description": "The capacity ID if on a dedicated capacity",
"example": "500123"
},
"type": {
"type": "string",
"description": "The workspace type",
"enum": [
"Workspace",
"Group",
"PersonalGroup"
],
"example": "Workspace"
},
"state": {
"type": "string",
"description": "The workspace state",
"enum": [
"Active",
"Deleted",
"Removing"
],
"example": "Active"
}
}
}