Auth0 · Schema

ConnectionAssertionDecryptionSettings

Settings for SAML assertion decryption.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
algorithm_profile object
algorithm_exceptions array A list of insecure algorithms to allow for SAML assertion decryption.
View JSON Schema on GitHub

JSON Schema

auth0-connectionassertiondecryptionsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionAssertionDecryptionSettings",
  "title": "ConnectionAssertionDecryptionSettings",
  "type": "object",
  "description": "Settings for SAML assertion decryption.",
  "additionalProperties": false,
  "required": [
    "algorithm_profile"
  ],
  "properties": {
    "algorithm_profile": {
      "$ref": "#/components/schemas/ConnectionAssertionDecryptionAlgorithmProfileEnum"
    },
    "algorithm_exceptions": {
      "type": "array",
      "description": "A list of insecure algorithms to allow for SAML assertion decryption.",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 100
      }
    }
  }
}