{ "$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" ] }