Palo Alto Networks · JSON Structure

Pan Os Rest Api Address Structure

An address object representing an IP address, subnet, range, wildcard mask, or FQDN used in security policy rules.

Type: object Properties: 7
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR

Address is a JSON Structure definition published by Palo Alto Networks, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

@name ip-netmask ip-range ip-wildcard fqdn description tag

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/pan-os-rest-api-address-structure.json",
  "name": "Address",
  "description": "An address object representing an IP address, subnet, range, wildcard mask, or FQDN used in security policy rules.",
  "type": "object",
  "properties": {
    "@name": {
      "type": "string",
      "description": "Unique name of the address object."
    },
    "ip-netmask": {
      "type": "string",
      "description": "IP address with CIDR netmask (e.g., 10.0.0.0/24)."
    },
    "ip-range": {
      "type": "string",
      "description": "IP address range (e.g., 10.0.0.1-10.0.0.254)."
    },
    "ip-wildcard": {
      "type": "string",
      "description": "IP wildcard mask (e.g., 10.20.1.0/0.0.248.255)."
    },
    "fqdn": {
      "type": "string",
      "description": "Fully qualified domain name (e.g., www.example.com)."
    },
    "description": {
      "type": "string",
      "description": "Description of the address object."
    },
    "tag": {
      "type": "object",
      "properties": {
        "member": {
          "type": "array",
          "description": "Tags assigned to this address object.",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}