{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/grubhub/refs/heads/main/json-structure/grubhub-menusection-structure.json", "name": "MenuSection", "description": "A grouping of menu items such as appetizers, entrees, or desserts.", "type": "object", "properties": { "external_id": { "type": "string", "description": "A unique external identifier for diff-based ingestion." }, "name": { "type": "string", "description": "The display name of the section." }, "items": { "type": "array", "description": "Menu items within this section.", "items": { "$ref": "#/components/schemas/MenuItem" } } }, "required": [ "external_id", "name", "items" ] }