Auth0 · Schema

ConnectionTypeEnumOIDC

OIDC communication channel type. 'back_channel' (confidential client) exchanges tokens server-side for stronger security; 'front_channel' handles responses in the browser.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
View JSON Schema on GitHub

JSON Schema

auth0-connectiontypeenumoidc-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionTypeEnumOIDC",
  "title": "ConnectionTypeEnumOIDC",
  "type": "string",
  "description": "OIDC communication channel type. 'back_channel' (confidential client) exchanges tokens server-side for stronger security; 'front_channel' handles responses in the browser.",
  "enum": [
    "back_channel",
    "front_channel"
  ],
  "default": "front_channel"
}