{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-return-transfer-response-schema.json", "title": "ReturnTransferResponse", "description": "ReturnTransferResponse schema from Adyen API", "type": "object", "properties": { "id": { "description": "The unique identifier of the return.", "type": "string" }, "reference": { "description": "Your internal reference for the return.", "type": "string" }, "status": { "description": "The resulting status of the return.\n\nPossible values: **Authorised**, **Declined**.", "enum": [ "Authorised", "Declined" ], "type": "string" }, "transferId": { "description": "The unique identifier of the original transfer.", "type": "string" } } }