{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReversalResponse", "title": "ReversalResponse", "type": "object", "description": "It conveys Information related to the reversal processed by the POI System. Content of the Reversal Response message.", "properties": { "Response": { "$ref": "#/components/schemas/Response" }, "POIData": { "$ref": "#/components/schemas/POIData" }, "OriginalPOITransaction": { "$ref": "#/components/schemas/OriginalPOITransaction" }, "ReversedAmount": { "type": "number", "maximum": 99999999.999999, "minimum": 0, "description": "Copy." }, "CustomerOrder": { "type": "array", "items": { "$ref": "#/components/schemas/CustomerOrder" } }, "PaymentReceipt": { "type": "array", "items": { "$ref": "#/components/schemas/PaymentReceipt" } } }, "required": [ "Response" ] }