Auth0 · Schema

ConnectionConnectionSettings

OAuth 2.0 PKCE (Proof Key for Code Exchange) settings. PKCE enhances security for public clients by preventing authorization code interception attacks. 'auto' (recommended) uses the strongest method supported by the IdP.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
pkce object
View JSON Schema on GitHub

JSON Schema

auth0-connectionconnectionsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionConnectionSettings",
  "title": "ConnectionConnectionSettings",
  "type": "object",
  "description": "OAuth 2.0 PKCE (Proof Key for Code Exchange) settings. PKCE enhances security for public clients by preventing authorization code interception attacks. 'auto' (recommended) uses the strongest method supported by the IdP.",
  "properties": {
    "pkce": {
      "$ref": "#/components/schemas/ConnectionConnectionSettingsPkceEnum"
    }
  }
}