{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransferFundsNotificationContent", "title": "TransferFundsNotificationContent", "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" } }, "type": "object" }