Microsoft Visio · Schema

VisioShape

Represents a shape on a Visio page.

Business ProcessDiagrammingFlowchartsMicrosoft 365Visualization

Properties

Name Type Description
id string Unique identifier for the shape.
name string The name of the shape.
text string The text content of the shape.
type string The shape type.
View JSON Schema on GitHub

JSON Schema

visio-graph-api-visio-shape-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-shape-schema.json",
  "title": "VisioShape",
  "description": "Represents a shape on a Visio page.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Unique identifier for the shape." },
    "name": { "type": "string", "description": "The name of the shape." },
    "text": { "type": "string", "description": "The text content of the shape." },
    "type": { "type": "string", "description": "The shape type." }
  }
}