Kong · Schema

VirtualClusterAuthenticationValidate

Validation rules.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
audiences array List of expected audience values. One of them has to match the audience claim in the token.
issuer string Expected token issuer in the token.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationvalidate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationValidate",
  "title": "VirtualClusterAuthenticationValidate",
  "description": "Validation rules.",
  "type": "object",
  "properties": {
    "audiences": {
      "description": "List of expected audience values. One of them has to match the audience claim in the token.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualClusterAuthenticationAudience"
      },
      "minItems": 1
    },
    "issuer": {
      "description": "Expected token issuer in the token.",
      "type": "string",
      "minLength": 1
    }
  }
}