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
View JSON Schema on GitHub

JSON Schema

power-bi-rest-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Group",
  "type": "object",
  "description": "A Power BI workspace (group)",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the workspace"
    },
    "name": {
      "type": "string",
      "description": "The display name of the workspace"
    },
    "isReadOnly": {
      "type": "boolean",
      "description": "Whether the workspace is read-only"
    },
    "isOnDedicatedCapacity": {
      "type": "boolean",
      "description": "Whether the workspace is on a dedicated capacity"
    },
    "capacityId": {
      "type": "string",
      "description": "The capacity ID if on a dedicated capacity"
    },
    "type": {
      "type": "string",
      "description": "The workspace type"
    },
    "state": {
      "type": "string",
      "description": "The workspace state"
    }
  }
}