Microsoft Visio · Schema

VisioPage

Represents a page in a Visio document.

Business ProcessDiagrammingFlowchartsMicrosoft 365Visualization

Properties

Name Type Description
id string Unique identifier for the page.
name string The name of the page.
index integer Zero-based index of the page.
height number Height of the page in points.
width number Width of the page in points.
View JSON Schema on GitHub

JSON Schema

visio-graph-api-visio-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/microsoft-visio/refs/heads/main/json-schema/visio-graph-api-visio-page-schema.json",
  "title": "VisioPage",
  "description": "Represents a page in a Visio document.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Unique identifier for the page." },
    "name": { "type": "string", "description": "The name of the page." },
    "index": { "type": "integer", "description": "Zero-based index of the page." },
    "height": { "type": "number", "format": "double", "description": "Height of the page in points." },
    "width": { "type": "number", "format": "double", "description": "Width of the page in points." }
  }
}