Kong · Schema

CatalogIntegrationConfigSchema

Defines the configuration schema for the integration.

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

JSON Schema

kong-catalogintegrationconfigschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogIntegrationConfigSchema",
  "title": "CatalogIntegrationConfigSchema",
  "description": "Defines the configuration schema for the integration.",
  "example": {
    "base_url": {
      "type": "string",
      "display_name": "Base URL",
      "description": "The customer-specific API URL",
      "required": true
    }
  },
  "additionalProperties": {
    "oneOf": [
      {
        "type": "object",
        "nullable": true
      },
      {
        "$ref": "#/components/schemas/StringConfigFieldSchema"
      },
      {
        "$ref": "#/components/schemas/EnumConfigFieldSchema"
      },
      {
        "$ref": "#/components/schemas/BooleanConfigFieldSchema"
      }
    ]
  }
}