Palo Alto Networks · JSON Structure

Prisma Sd Wan Api Lan Network Structure

LANNetwork schema from Palo Alto Networks Prisma SD-WAN API

Type: object Properties: 9 Required: 2
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

LANNetwork is a JSON Structure definition published by Palo Alto Networks, describing 9 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name description network vlan_id dhcp_enabled site_id created_at updated_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}