{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "IPPoolRequest", "description": "IPPoolRequest schema from SP Interconnect Manage APIs", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/sase-multitenant-interconnect-api-ip-pool-request-schema.json", "type": "object", "properties": { "ipBlocks": { "type": "array", "uniqueItems": true, "items": { "type": "object", "required": [ "cidr" ], "properties": { "edgeLocation": { "type": "string" }, "cidr": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "type": "string" } }, "type": { "type": "string", "enum": [ "PRIMARY", "SECONDARY" ] } } } }, "ipProvider": { "type": "string", "enum": [ "SP", "PANW" ] } }, "required": [ "ipProvider" ] }