{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LoyaltyAccountID", "title": "LoyaltyAccountID", "type": "object", "description": "In the Payment or the Loyalty Request message, it allows to identify the loyalty account by the Sale Terminal instead of the POI Terminal (e.g. because the account identification is a bar-code read by the Cashier on a scanner device). Identification of a Loyalty account.", "properties": { "EntryMode": { "$ref": "#/components/schemas/EntryMode" }, "IdentificationType": { "$ref": "#/components/schemas/IdentificationType" }, "IdentificationSupport": { "$ref": "#/components/schemas/IdentificationSupport" }, "LoyaltyID": { "type": "string" } }, "required": [ "EntryMode", "IdentificationType", "LoyaltyID" ] }