# LoyaltyDiscountLevel Represents a single level in the loyalty discount progress, defining the threshold and corresponding discount available at each tier. ## Type Definition ```graphql type LoyaltyDiscountLevel { threshold: Float! discount: Float! validUntil: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | threshold | Float! | The threshold required for this level. | | discount | Float! | The discount for this level. | | validUntil | String | The valid until date for this level (optional). | ## Relationships LoyaltyDiscountLevel is a standalone type that represents a discrete tier within a loyalty program structure. It contains scalar fields that define the financial parameters of a discount tier, including the spending threshold required to achieve it and the resulting discount percentage or amount. ## Example ```graphql { threshold discount validUntil } ``` ## Implements This type does not implement any interfaces. ## Related Types - Float