Microsoft Visio · Schema

VisioHyperlink

Represents a hyperlink associated with a shape.

Business ProcessDiagrammingFlowchartsMicrosoft-365Visualization

Properties

Name Type Description
id string Unique identifier for the hyperlink.
address string The URL target of the hyperlink.
description string Description of the hyperlink.
subAddress string Sub-address target within the document.
View JSON Schema on GitHub

JSON Schema

visio-graph-api-visio-hyperlink-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-hyperlink-schema.json",
  "title": "VisioHyperlink",
  "description": "Represents a hyperlink associated with a shape.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Unique identifier for the hyperlink." },
    "address": { "type": "string", "format": "uri", "description": "The URL target of the hyperlink." },
    "description": { "type": "string", "description": "Description of the hyperlink." },
    "subAddress": { "type": "string", "description": "Sub-address target within the document." }
  }
}