{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-performed-transaction-schema.json", "title": "PerformedTransaction", "description": "PerformedTransaction schema from Adyen API", "type": "object", "properties": { "Response": { "$ref": "#/components/schemas/Response" }, "SaleData": { "$ref": "#/components/schemas/SaleData" }, "POIData": { "$ref": "#/components/schemas/POIData" }, "PaymentResult": { "$ref": "#/components/schemas/PaymentResult" }, "LoyaltyResult": { "type": "array", "items": { "$ref": "#/components/schemas/LoyaltyResult" } }, "ReversedAmount": { "type": "number", "maximum": 99999999.999999, "minimum": 0 } }, "required": [ "Response" ] }