{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LoyaltyResult", "title": "LoyaltyResult", "type": "object", "description": "In the Message Response, the result of each loyalty brand transaction. Data related to the result of a processed loyalty transaction.", "properties": { "LoyaltyAccount": { "$ref": "#/components/schemas/LoyaltyAccount" }, "CurrentBalance": { "type": "number", "maximum": 99999999.999999, "minimum": 0, "description": "if known (provided by the card or an external host)." }, "LoyaltyAmount": { "$ref": "#/components/schemas/LoyaltyAmount" }, "LoyaltyAcquirerData": { "$ref": "#/components/schemas/LoyaltyAcquirerData" }, "Rebates": { "$ref": "#/components/schemas/Rebates" } }, "required": [ "LoyaltyAccount" ] }