grubhub · JSON Structure

Grubhub Weeklyschedule Structure

A weekly schedule defining operating hours for each day of the week.

Type: object Properties: 7

WeeklySchedule is a JSON Structure definition published by grubhub, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

monday tuesday wednesday thursday friday saturday sunday

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-weeklyschedule-structure.json",
  "name": "WeeklySchedule",
  "description": "A weekly schedule defining operating hours for each day of the week.",
  "type": "object",
  "properties": {
    "monday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "tuesday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "wednesday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "thursday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "friday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "saturday": {
      "$ref": "#/components/schemas/DaySchedule"
    },
    "sunday": {
      "$ref": "#/components/schemas/DaySchedule"
    }
  }
}