Kong · Schema

IPEntry

An entry representing a collection of allowed IP addresses or CIDR blocks.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string Contains a unique identifier used for this resource.
allowed_ips object
View JSON Schema on GitHub

JSON Schema

kong-ipentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IPEntry",
  "title": "IPEntry",
  "description": "An entry representing a collection of allowed IP addresses or CIDR blocks.",
  "type": "object",
  "properties": {
    "id": {
      "description": "Contains a unique identifier used for this resource.",
      "type": "string",
      "format": "uuid",
      "example": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
      "readOnly": false
    },
    "allowed_ips": {
      "$ref": "#/components/schemas/PortalAllowedIPs"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "allowed_ips"
  ]
}