{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notifications-transfer-funds-notification-content-schema.json", "title": "TransferFundsNotificationContent", "description": "TransferFundsNotificationContent schema from Adyen API", "type": "object", "properties": { "amount": { "description": "The amount transferred.", "$ref": "#/components/schemas/Amount" }, "destinationAccountCode": { "description": "The code of the Account to which funds were credited.", "type": "string" }, "invalidFields": { "x-addedInVersion": "5", "description": "Invalid fields list.", "items": { "$ref": "#/components/schemas/ErrorFieldType" }, "type": "array" }, "merchantReference": { "x-addedInVersion": "2", "description": "The reference provided by the merchant.", "type": "string" }, "sourceAccountCode": { "description": "The code of the Account from which funds were debited.", "type": "string" }, "status": { "description": "The status of the fund transfer.", "$ref": "#/components/schemas/OperationStatus" }, "transferCode": { "description": "The transfer code.", "type": "string" } } }