Power BI · Schema

RefreshRequest

Request body for an enhanced dataset refresh

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
type string The type of processing to perform
commitMode string Determines whether objects are committed in batches or only when complete
maxParallelism integer Maximum number of threads to run in parallel
retryCount integer Number of times to retry on failure
objects array Specific tables or partitions to refresh
View JSON Schema on GitHub

JSON Schema

power-bi-rest-refresh-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RefreshRequest",
  "type": "object",
  "description": "Request body for an enhanced dataset refresh",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of processing to perform"
    },
    "commitMode": {
      "type": "string",
      "description": "Determines whether objects are committed in batches or only when complete"
    },
    "maxParallelism": {
      "type": "integer",
      "description": "Maximum number of threads to run in parallel"
    },
    "retryCount": {
      "type": "integer",
      "description": "Number of times to retry on failure"
    },
    "objects": {
      "type": "array",
      "description": "Specific tables or partitions to refresh"
    }
  }
}