{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SystemWideOfferEntry", "description": "SystemWideOfferEntry schema from Burger King's Partners API v2", "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-system-wide-offer-entry-schema.json", "type": "object", "allOf": [ { "$ref": "#/components/schemas/LoyaltyEntry" }, { "type": "object", "properties": { "options": { "type": "array", "items": { "$ref": "#/components/schemas/Option" }, "description": "Optional list of options" }, "type": { "description": "Unique identifier for a reward entry", "enum": [ "SYSTEM_WIDE_OFFER" ], "type": "string" } }, "required": [ "type" ] } ] }