{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-structure/strata-cloud-manager-api-address-request-structure.json", "name": "AddressRequest", "description": "Request body for creating or updating an address object.", "type": "object", "properties": { "name": { "type": "string" }, "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 notation." }, "fqdn": { "type": "string", "description": "Fully qualified domain name." }, "description": { "type": "string" }, "tag": { "type": "array", "items": { "type": "string" } } }, "required": [ "name" ] }