Auth0 · Schema

ClientOIDCBackchannelLogoutSettings

Configuration for OIDC backchannel logout

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
backchannel_logout_urls array Comma-separated list of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
backchannel_logout_initiators object
backchannel_logout_session_metadata object
View JSON Schema on GitHub

JSON Schema

auth0-clientoidcbackchannellogoutsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientOIDCBackchannelLogoutSettings",
  "title": "ClientOIDCBackchannelLogoutSettings",
  "type": "object",
  "description": "Configuration for OIDC backchannel logout",
  "additionalProperties": true,
  "properties": {
    "backchannel_logout_urls": {
      "type": "array",
      "description": "Comma-separated list of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.",
      "items": {
        "type": "string",
        "format": "absolute-https-uri-with-placeholders-or-empty"
      }
    },
    "backchannel_logout_initiators": {
      "$ref": "#/components/schemas/ClientOIDCBackchannelLogoutInitiators"
    },
    "backchannel_logout_session_metadata": {
      "$ref": "#/components/schemas/ClientOIDCBackchannelLogoutSessionMetadata"
    }
  }
}