{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/prisma-sd-wan-api-lan-network-structure.json", "name": "LANNetwork", "description": "LANNetwork schema from Palo Alto Networks Prisma SD-WAN API", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the LAN network." }, "name": { "type": "string", "description": "Name of the LAN network." }, "description": { "type": "string" }, "network": { "type": "string", "description": "Subnet CIDR for the LAN network (e.g., 192.168.1.0/24)." }, "vlan_id": { "type": "int32", "description": "VLAN identifier for this LAN network.", "minimum": 1, "maximum": 4094 }, "dhcp_enabled": { "type": "boolean", "description": "Whether the ION device serves DHCP for this network.", "default": false }, "site_id": { "type": "string" }, "created_at": { "type": "datetime" }, "updated_at": { "type": "datetime" } }, "required": [ "name", "network" ] }