{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-loyalty-totals-structure.json", "description": "Totals of the loyalty transaction during the reconciliation period.", "type": "object", "properties": { "TransactionType": { "$ref": "#/components/schemas/TransactionType" }, "TransactionCount": { "type": "int32", "description": "Number of processed transaction during the period." }, "TransactionAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0, "description": "Sum of amount of processed transaction during the period." } }, "required": [ "TransactionType", "TransactionCount", "TransactionAmount" ], "name": "LoyaltyTotals" }