{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayParsedRecordDecryptFieldsConfig", "title": "EventGatewayParsedRecordDecryptFieldsConfig", "description": "The configuration of the decrypt parsed record fields policy.", "type": "object", "properties": { "failure_mode": { "$ref": "#/components/schemas/ConsumeFailureMode" }, "key_sources": { "description": "Describes how to find a symmetric key for decryption.", "type": "array", "items": { "$ref": "#/components/schemas/EventGatewayKeySource" }, "minItems": 1 }, "decrypt_fields": { "description": "Selects which fields to decrypt.", "type": "array", "items": { "$ref": "#/components/schemas/EventGatewayParsedRecordDecryptionSelector" }, "minItems": 1 } }, "required": [ "failure_mode", "key_sources", "decrypt_fields" ] }