{ "$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" } } }