Auth0 · Schema

ClientOIDCBackchannelLogoutSessionMetadata

Controls whether session metadata is included in the logout token. Default value is null.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
include boolean The `include` property determines whether session metadata is included in the logout token.
View JSON Schema on GitHub

JSON Schema

auth0-clientoidcbackchannellogoutsessionmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientOIDCBackchannelLogoutSessionMetadata",
  "title": "ClientOIDCBackchannelLogoutSessionMetadata",
  "type": [
    "object",
    "null"
  ],
  "description": "Controls whether session metadata is included in the logout token. Default value is null.",
  "additionalProperties": true,
  "properties": {
    "include": {
      "type": "boolean",
      "description": "The `include` property determines whether session metadata is included in the logout token."
    }
  }
}