Power BI · Schema
Column
A column in a dataset table
AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The column name |
| dataType | string | The data type of the column |
| formatString | string | Optional format string for the column |
| sortByColumn | string | Name of the column to sort by |
| isHidden | boolean | Whether the column is hidden in reports |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Column",
"title": "Column",
"type": "object",
"required": [
"name",
"dataType"
],
"description": "A column in a dataset table",
"properties": {
"name": {
"type": "string",
"description": "The column name",
"example": "Example Title"
},
"dataType": {
"type": "string",
"description": "The data type of the column",
"enum": [
"Int64",
"Double",
"Boolean",
"Datetime",
"String",
"Decimal"
],
"example": "Int64"
},
"formatString": {
"type": "string",
"description": "Optional format string for the column",
"example": "example_value"
},
"sortByColumn": {
"type": "string",
"description": "Name of the column to sort by",
"example": "example_value"
},
"isHidden": {
"type": "boolean",
"description": "Whether the column is hidden in reports",
"example": true
}
}
}