Auth0 · Schema

TenantSettingsSessions

Sessions related settings for tenant

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
oidc_logout_prompt_enabled boolean Whether to bypass prompting logic (false) when performing OIDC Logout
View JSON Schema on GitHub

JSON Schema

auth0-tenantsettingssessions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TenantSettingsSessions",
  "title": "TenantSettingsSessions",
  "type": [
    "object",
    "null"
  ],
  "description": "Sessions related settings for tenant",
  "additionalProperties": false,
  "properties": {
    "oidc_logout_prompt_enabled": {
      "type": "boolean",
      "description": "Whether to bypass prompting logic (false) when performing OIDC Logout",
      "default": true
    }
  }
}