Kong · Schema

PortalAllowedIPs

The list of allowed ips for the portal.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-portalallowedips-schema.json Raw ↑
{
  "$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
}