{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-loyalty-amount-structure.json", "description": "An awarded amount or an amount to redeem to the loyalty account might be sent in the Payment request message. Amount of a loyalty account.", "type": "object", "properties": { "LoyaltyUnit": { "$ref": "#/components/schemas/LoyaltyUnit" }, "Currency": { "type": "string", "pattern": "^[A-Z]{3,3}$" }, "AmountValue": { "type": "double", "maximum": 99999999.999999, "minimum": 0 } }, "required": [ "AmountValue" ], "name": "LoyaltyAmount" }