{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-structure/menu-v2-reward-entry-structure.json", "name": "RewardEntry", "description": "RewardEntry schema from Burger King's Partners API v2", "type": "object", "allOf": [ { "$ref": "#/components/schemas/LoyaltyEntry" }, { "type": "object", "properties": { "options": { "type": "array", "items": { "$ref": "#/components/schemas/Option" } }, "type": { "description": "Unique identifier for a reward entry", "enum": [ "REWARD" ], "type": "string" } }, "required": [ "type" ] } ] }