Kong · Schema

VirtualClusterAuthenticationClaimsMapping

Maps JWT claims in the case when sub and scope are presented as different claims in your JWT token.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
sub string Maps the subject claim.
scope string Maps the scope claim.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationclaimsmapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationClaimsMapping",
  "title": "VirtualClusterAuthenticationClaimsMapping",
  "description": "Maps JWT claims in the case when sub and scope are presented as different claims in your JWT token.",
  "type": "object",
  "properties": {
    "sub": {
      "description": "Maps the subject claim.",
      "type": "string",
      "minLength": 1
    },
    "scope": {
      "description": "Maps the scope claim.",
      "type": "string",
      "minLength": 1
    }
  }
}