Power BI · Schema
Parameter
A parameter in a dataset
AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The parameter name |
| type | string | The data type of the parameter |
| currentValue | string | The current value of the parameter |
| isRequired | boolean | Whether the parameter is required |
| suggestedValues | array | Suggested values for the parameter |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Parameter",
"title": "Parameter",
"type": "object",
"description": "A parameter in a dataset",
"properties": {
"name": {
"type": "string",
"description": "The parameter name",
"example": "Example Title"
},
"type": {
"type": "string",
"description": "The data type of the parameter",
"example": "example_value"
},
"currentValue": {
"type": "string",
"description": "The current value of the parameter",
"example": "example_value"
},
"isRequired": {
"type": "boolean",
"description": "Whether the parameter is required",
"example": true
},
"suggestedValues": {
"type": "array",
"description": "Suggested values for the parameter",
"items": {
"type": "string"
},
"example": []
}
}
}