Power BI · Schema
Tile
A tile on a Power BI dashboard
AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the tile |
| title | string | The display title of the tile |
| subTitle | string | The subtitle of the tile |
| embedUrl | string | The embed URL for the tile |
| embedData | string | Additional embed data for the tile |
| reportId | string | The ID of the report the tile is pinned from |
| datasetId | string | The ID of the dataset used by this tile |
| rowSpan | integer | The number of rows the tile spans |
| colSpan | integer | The number of columns the tile spans |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Tile",
"title": "Tile",
"type": "object",
"description": "A tile on a Power BI dashboard",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier of the tile",
"example": "abc123"
},
"title": {
"type": "string",
"description": "The display title of the tile",
"example": "Example Title"
},
"subTitle": {
"type": "string",
"description": "The subtitle of the tile",
"example": "example_value"
},
"embedUrl": {
"type": "string",
"format": "uri",
"description": "The embed URL for the tile",
"example": "https://www.example.com"
},
"embedData": {
"type": "string",
"description": "Additional embed data for the tile",
"example": "example_value"
},
"reportId": {
"type": "string",
"format": "uuid",
"description": "The ID of the report the tile is pinned from",
"example": "500123"
},
"datasetId": {
"type": "string",
"format": "uuid",
"description": "The ID of the dataset used by this tile",
"example": "500123"
},
"rowSpan": {
"type": "integer",
"description": "The number of rows the tile spans",
"example": 10
},
"colSpan": {
"type": "integer",
"description": "The number of columns the tile spans",
"example": 10
}
}
}