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