DayPart

DayPart schema from Burger King's Partners API v2

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

Properties

Name Type Description
id string Unique identifier for the day part
schedule object Schedule details for the day part
View JSON Schema on GitHub

JSON Schema

menu-v2-day-part-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DayPart",
  "description": "DayPart schema from Burger King's Partners API v2",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-day-part-schema.json",
  "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"
  ]
}