{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EncryptionFailureMode", "title": "EncryptionFailureMode", "description": "Describes how to handle failing encryption or decryption.\nUse `error` if the record should be rejected if encryption or decryption fails.\nUse `passthrough` to ignore encryption or decryption failure and continue proxying the record.\n", "type": "string", "enum": [ "error", "passthrough" ], "x-speakeasy-unknown-values": "allow" }