Kong · Schema

BackendClusterAuthenticationScheme

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

JSON Schema

kong-backendclusterauthenticationscheme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackendClusterAuthenticationScheme",
  "title": "BackendClusterAuthenticationScheme",
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "anonymous": "#/components/schemas/BackendClusterAuthenticationAnonymous",
      "sasl_plain": "#/components/schemas/BackendClusterAuthenticationSaslPlain",
      "sasl_scram": "#/components/schemas/BackendClusterAuthenticationSaslScram"
    }
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/BackendClusterAuthenticationAnonymous"
    },
    {
      "$ref": "#/components/schemas/BackendClusterAuthenticationSaslPlain"
    },
    {
      "$ref": "#/components/schemas/BackendClusterAuthenticationSaslScram"
    }
  ]
}