Auth0 · Schema

ClientTokenExchangeTypeEnum

Token exchange type. `on_behalf_of_token_exchange`: enables On-Behalf-Of token exchange (Generally Available). `custom_authentication`: enables custom token exchange profiles (Early Access, requires entitlement).

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-clienttokenexchangetypeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientTokenExchangeTypeEnum",
  "title": "ClientTokenExchangeTypeEnum",
  "type": "string",
  "description": "Token exchange type. `on_behalf_of_token_exchange`: enables On-Behalf-Of token exchange (Generally Available). `custom_authentication`: enables custom token exchange profiles (Early Access, requires entitlement).",
  "minLength": 1,
  "enum": [
    "custom_authentication",
    "on_behalf_of_token_exchange"
  ]
}