Auth0 · Schema

ClientTokenExchangeConfiguration

Configuration for token exchange.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
allow_any_profile_of_type array List the enabled token exchange types for this client.
View JSON Schema on GitHub

JSON Schema

auth0-clienttokenexchangeconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientTokenExchangeConfiguration",
  "title": "ClientTokenExchangeConfiguration",
  "type": "object",
  "description": "Configuration for token exchange.",
  "additionalProperties": false,
  "x-release-lifecycle": "GA",
  "properties": {
    "allow_any_profile_of_type": {
      "type": "array",
      "description": "List the enabled token exchange types for this client.",
      "minItems": 0,
      "items": {
        "$ref": "#/components/schemas/ClientTokenExchangeTypeEnum"
      }
    }
  }
}