Tufin · Schema

TopologyMap

Network topology map data

Cloud SecurityComplianceFirewall ManagementNetwork SecurityNetwork TopologyPolicy OrchestrationRisk ManagementSecurity Policy ManagementZero Trust

Properties

Name Type Description
nodes array Topology nodes (devices, subnets)
edges array Topology connections between nodes
View JSON Schema on GitHub

JSON Schema

tufin-topologymap-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TopologyMap",
  "title": "TopologyMap",
  "type": "object",
  "description": "Network topology map data",
  "properties": {
    "nodes": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Topology nodes (devices, subnets)"
    },
    "edges": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Topology connections between nodes"
    }
  }
}