Power BI · Schema

UpdateParametersRequest

Request body for updating dataset parameters

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
updateDetails array
View JSON Schema on GitHub

JSON Schema

power-bi-updateparametersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateParametersRequest",
  "title": "UpdateParametersRequest",
  "type": "object",
  "required": [
    "updateDetails"
  ],
  "description": "Request body for updating dataset parameters",
  "properties": {
    "updateDetails": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "name",
          "newValue"
        ],
        "properties": {
          "name": {
            "type": "string",
            "description": "The parameter name"
          },
          "newValue": {
            "type": "string",
            "description": "The new value for the parameter"
          }
        }
      },
      "example": []
    }
  }
}