{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentReversalRequest", "title": "PaymentReversalRequest", "properties": { "applicationInfo": { "description": "Information about your application. For more details, see [Building Adyen solutions](https://docs.adyen.com/development-resources/building-adyen-solutions).", "$ref": "#/components/schemas/ApplicationInfo" }, "merchantAccount": { "description": "The merchant account that is used to process the payment.", "type": "string" }, "reference": { "description": "Your reference for the reversal request. Maximum length: 80 characters.", "type": "string" } }, "required": [ "merchantAccount" ], "type": "object" }