grubhub · JSON Structure

Grubhub Menusection Structure

A grouping of menu items such as appetizers, entrees, or desserts.

Type: object Properties: 3 Required: 3

MenuSection is a JSON Structure definition published by grubhub, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

external_id name items

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
  ]
}