Power BI · Schema

ErrorResponse

Error response from the Power BI REST API

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
error object
View JSON Schema on GitHub

JSON Schema

power-bi-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response from the Power BI REST API",
  "properties": {
    "error": {
      "type": "object",
      "properties": {
        "code": {
          "type": "string",
          "description": "Machine-readable error code"
        },
        "message": {
          "type": "string",
          "description": "Human-readable error message"
        },
        "details": {
          "type": "array",
          "description": "Additional error details",
          "items": {
            "type": "object",
            "properties": {
              "message": {
                "type": "string"
              },
              "target": {
                "type": "string"
              }
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}