TransferData schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transaction-webhooks-transfer-data-schema.json", "title": "TransferData", "description": "TransferData schema from Adyen API", "type": "object", "properties": { "id": { "description": "The ID of the resource.", "type": "string" }, "reference": { "x-addedInVersion": "4", "description": "The [`reference`](https://docs.adyen.com/api-explorer/#/transfers/latest/post/transfers__reqParam_reference) from the `/transfers` request. If you haven't provided any, Adyen generates a unique reference.", "type": "string" } }, "required": [ "reference" ] }