The list of allowed ips for the portal.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalAllowedIPs", "title": "PortalAllowedIPs", "description": "The list of allowed ips for the portal.", "type": "array", "items": { "type": "string" }, "example": [ "192.168.1.1", "192.168.1.0/22" ], "maxItems": 25, "minItems": 1, "uniqueItems": true }