{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SettingsEntry", "description": "SettingsEntry 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-settings-entry-schema.json", "type": "object", "properties": { "egressType": { "type": "string", "pattern": "SP|PA" }, "cidr": { "type": "array", "uniqueItems": true, "items": { "type": "string", "pattern": "^((25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})(\\.(25[0-5]|2[0-4][0-9]|[0-1]?[0-9]{1,2})){3})\\/(3[0-2]|[1-2][0-9]|[0-9])$" } } }, "required": [ "egressType" ] }