Kong · Schema

BootstrapServers

A list of cluster bootstrap servers in the format address:port.

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

JSON Schema

kong-bootstrapservers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BootstrapServers",
  "title": "BootstrapServers",
  "description": "A list of cluster bootstrap servers in the format address:port.",
  "type": "array",
  "items": {
    "type": "string",
    "description": "Endpoint in address:port format.",
    "pattern": "^(([a-zA-Z0-9\\.\\-]+)|\\[([a-fA-F0-9:]+)\\]):\\d+$",
    "minLength": 1
  },
  "minItems": 1
}