{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReversalRequest", "title": "ReversalRequest", "type": "object", "description": "It conveys Information related to the reversal of a previous payment or a loyalty transaction. Content of the Reversal Request message.", "properties": { "SaleData": { "$ref": "#/components/schemas/SaleData" }, "OriginalPOITransaction": { "$ref": "#/components/schemas/OriginalPOITransaction" }, "ReversedAmount": { "type": "number", "maximum": 99999999.999999, "minimum": 0, "description": "ReversedAmount is implicitely the AuthorizedAmount if absent." }, "ReversalReason": { "$ref": "#/components/schemas/ReversalReason" }, "CustomerOrder": { "$ref": "#/components/schemas/CustomerOrder" } }, "required": [ "OriginalPOITransaction", "ReversalReason" ] }