Power BI · Schema

Page

A page within a Power BI report

AnalyticsBusiness IntelligenceDashboardsData AnalysisReportingVisualization

Properties

Name Type Description
name string The internal name of the page
displayName string The display name shown in the report
order integer The order of the page within the report
View JSON Schema on GitHub

JSON Schema

power-bi-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Page",
  "title": "Page",
  "type": "object",
  "description": "A page within a Power BI report",
  "properties": {
    "name": {
      "type": "string",
      "description": "The internal name of the page",
      "example": "Example Title"
    },
    "displayName": {
      "type": "string",
      "description": "The display name shown in the report",
      "example": "example_value"
    },
    "order": {
      "type": "integer",
      "description": "The order of the page within the report",
      "example": 10
    }
  }
}