{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IPEntries", "title": "IPEntries", "description": "The list of allowed ips for the portal.", "type": "array", "items": { "$ref": "#/components/schemas/IPEntry" }, "example": [ { "id": "660e8400-e29b-41d4-a716-446655440000", "allowed_ips": [ "192.168.1.1" ] }, { "id": "550e8400-e29b-41d4-a716-446655440000", "allowed_ips": [ "192.168.1.0/22", "192.168.1.52" ] } ], "maxItems": 1000, "uniqueItems": true }