Auth0 · Schema

ConnectionTokenEndpointAuthSigningAlgValuesSupported

JSON array containing a list of the JWS signing algorithms (alg values) supported by the Token Endpoint for the signature on the JWT [JWT] used to authenticate the Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. Servers SHOULD support RS256. The value none MUST NOT be used.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectiontokenendpointauthsigningalgvaluessupported-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionTokenEndpointAuthSigningAlgValuesSupported",
  "title": "ConnectionTokenEndpointAuthSigningAlgValuesSupported",
  "type": "array",
  "description": "JSON array containing a list of the JWS signing algorithms (alg values) supported by the Token Endpoint for the signature on the JWT [JWT] used to authenticate the Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. Servers SHOULD support RS256. The value none MUST NOT be used.",
  "minItems": 0,
  "maxItems": 24,
  "items": {
    "type": "string",
    "maxLength": 10
  }
}