{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentTransaction", "title": "PaymentTransaction", "type": "object", "properties": { "AmountsReq": { "$ref": "#/components/schemas/AmountsReq" }, "OriginalPOITransaction": { "$ref": "#/components/schemas/OriginalPOITransaction" }, "TransactionConditions": { "$ref": "#/components/schemas/TransactionConditions" }, "SaleItem": { "type": "array", "items": { "$ref": "#/components/schemas/SaleItem" } } }, "required": [ "AmountsReq" ] }