Menu V2 Day Part Structure

DayPart schema from Burger King's Partners API v2

Type: object Properties: 2 Required: 2
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

DayPart is a JSON Structure definition published by Restaurant Brands International, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id schedule

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/restaurant-brands/refs/heads/main/json-structure/menu-v2-day-part-structure.json",
  "name": "DayPart",
  "description": "DayPart schema from Burger King's Partners API v2",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Breakfast",
      "description": "Unique identifier for the day part"
    },
    "schedule": {
      "$ref": "#/components/schemas/DayPartSchedule",
      "description": "Schedule details for the day part"
    }
  },
  "required": [
    "id",
    "schedule"
  ]
}