Power BI · Schema

DatasetList

A list of Power BI datasets

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
value array
@odata.context string OData context URL
View JSON Schema on GitHub

JSON Schema

power-bi-datasetlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatasetList",
  "title": "DatasetList",
  "type": "object",
  "description": "A list of Power BI datasets",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Dataset"
      },
      "example": []
    },
    "@odata.context": {
      "type": "string",
      "description": "OData context URL",
      "example": "example_value"
    }
  }
}