{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/grubhub/refs/heads/main/json-structure/grubhub-menuschedule-structure.json", "name": "MenuSchedule", "description": "A schedule defining availability windows and the sections of menu items available during those periods.", "type": "object", "properties": { "external_id": { "type": "string", "description": "A unique external identifier assigned by the partner for diff-based menu ingestion." }, "name": { "type": "string", "description": "The display name of the schedule." }, "availability": { "type": "array", "description": "Time windows when this schedule is active.", "items": { "$ref": "#/components/schemas/Availability" } }, "sections": { "type": "array", "description": "Menu sections available during this schedule, such as appetizers or entrees.", "items": { "$ref": "#/components/schemas/MenuSection" } } }, "required": [ "external_id", "name", "sections" ] }