Palo Alto Networks · Schema
Address
An address object representing an IP address, subnet, range, wildcard mask, or FQDN used in security policy rules.
Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDR
Properties
| Name | Type | Description |
|---|---|---|
| @name | string | Unique name of the address object. |
| ip-netmask | string | IP address with CIDR netmask (e.g., 10.0.0.0/24). |
| ip-range | string | IP address range (e.g., 10.0.0.1-10.0.0.254). |
| ip-wildcard | string | IP wildcard mask (e.g., 10.20.1.0/0.0.248.255). |
| fqdn | string | Fully qualified domain name (e.g., www.example.com). |
| description | string | Description of the address object. |
| tag | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Address",
"description": "An address object representing an IP address, subnet, range, wildcard mask, or FQDN used in security policy rules.",
"$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/pan-os-rest-api-address-schema.json",
"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",
"items": {
"type": "string"
},
"description": "Tags assigned to this address object."
}
}
}
}
}