Kong · Schema

BackendClusterAuthenticationAnonymous

Anonymous authentication scheme for the backend cluster.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string The type of authentication scheme.
View JSON Schema on GitHub

JSON Schema

kong-backendclusterauthenticationanonymous-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackendClusterAuthenticationAnonymous",
  "title": "BackendClusterAuthenticationAnonymous",
  "description": "Anonymous authentication scheme for the backend cluster.",
  "type": "object",
  "properties": {
    "type": {
      "description": "The type of authentication scheme.",
      "type": "string",
      "const": "anonymous"
    }
  },
  "additionalProperties": false,
  "required": [
    "type"
  ]
}