{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModifyResponse", "title": "ModifyResponse", "properties": { "additionalData": { "additionalProperties": { "type": "string" }, "description": "This field contains additional data, which may be returned in a particular response.", "type": "object" }, "pspReference": { "description": "Adyen's 16-character string reference associated with the transaction. This value is globally unique; quote it when communicating with us about this response.", "type": "string" }, "response": { "description": "The response:\n* In case of success, it is either `payout-confirm-received` or `payout-decline-received`.\n* In case of an error, an informational message is returned.", "type": "string" } }, "required": [ "pspReference", "response" ], "type": "object" }