{
"$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
}
}
}