ServiceMode

How a customer would like their order served. Note that not all service modes will be available at all restaurants.

Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants
View JSON Schema on GitHub

JSON Schema

menu-v2-service-mode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ServiceMode",
  "description": "How a customer would like their order served.\n\nNote that not all service modes will be available at all restaurants.\n",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-schema/menu-v2-service-mode-schema.json",
  "type": "string",
  "enum": [
    "CURBSIDE",
    "DELIVERY",
    "DRIVE_THRU",
    "EAT_IN",
    "TABLE_SERVICE",
    "TAKEOUT"
  ],
  "example": "TAKEOUT"
}