Auth0 · Schema

ClientTokenExchangeConfigurationOrNull

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-clienttokenexchangeconfigurationornull-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientTokenExchangeConfigurationOrNull",
  "title": "ClientTokenExchangeConfigurationOrNull",
  "type": [
    "object",
    "null"
  ],
  "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"
      }
    }
  }
}