Palo Alto Networks · Schema

VirtualSystem

A virtual system (vsys) on the PAN-OS firewall.

Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Properties

Name Type Description
@name string Virtual system name (e.g., vsys1, vsys2).
display-name string Human-readable display name for the vsys.
import object Imported network resources for this vsys.
View JSON Schema on GitHub

JSON Schema

pan-os-rest-api-virtual-system-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "VirtualSystem",
  "description": "A virtual system (vsys) on the PAN-OS firewall.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/pan-os-rest-api-virtual-system-schema.json",
  "type": "object",
  "properties": {
    "@name": {
      "type": "string",
      "description": "Virtual system name (e.g., vsys1, vsys2)."
    },
    "display-name": {
      "type": "string",
      "description": "Human-readable display name for the vsys."
    },
    "import": {
      "type": "object",
      "description": "Imported network resources for this vsys.",
      "properties": {
        "network": {
          "type": "object",
          "properties": {
            "interface": {
              "type": "object",
              "properties": {
                "member": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  },
                  "description": "Network interfaces assigned to this vsys."
                }
              }
            }
          }
        }
      }
    }
  }
}