Kong · Schema

VirtualClusterAuthenticationJWKS

JSON Web Key Set configuration for verifying token signatures.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
endpoint string URL for JWKS endpoint.
timeout string Total time from establishing connection to receive a response from JWKS endpoint.
cache_expiration string Duration after which the gateway will fetch and cache JWKS.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationjwks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationJWKS",
  "title": "VirtualClusterAuthenticationJWKS",
  "description": "JSON Web Key Set configuration for verifying token signatures.",
  "type": "object",
  "properties": {
    "endpoint": {
      "description": "URL for JWKS endpoint.",
      "type": "string",
      "format": "uri",
      "minLength": 1
    },
    "timeout": {
      "description": "Total time from establishing connection to receive a response from JWKS endpoint.",
      "type": "string",
      "default": "10s"
    },
    "cache_expiration": {
      "description": "Duration after which the gateway will fetch and cache JWKS.",
      "type": "string",
      "default": "1h"
    }
  },
  "required": [
    "endpoint"
  ]
}