Power BI · Schema

RebindReportRequest

Request body for rebinding a report to a different dataset

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
datasetId string The ID of the target dataset
View JSON Schema on GitHub

JSON Schema

power-bi-rebindreportrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RebindReportRequest",
  "title": "RebindReportRequest",
  "type": "object",
  "required": [
    "datasetId"
  ],
  "description": "Request body for rebinding a report to a different dataset",
  "properties": {
    "datasetId": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the target dataset",
      "example": "500123"
    }
  }
}