SpotOn · Schema

WaitTimeResponse

The current wait time for a restaurant.

RestaurantPoint of SalePaymentsOnline OrderingReservationsReporting

Properties

Name Type Description
restaurantId integer The restaurant the wait time applies to.
partySize integer The party size the wait time applies to, if requested.
quotedWaitMinutes integer The current quoted wait time in minutes.
View JSON Schema on GitHub

JSON Schema

reserve-wait-time-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "WaitTimeResponse",
  "description": "The current wait time for a restaurant.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/spoton/refs/heads/main/json-schema/reserve-wait-time-response-schema.json",
  "type": "object",
  "properties": {
    "restaurantId": {
      "type": "integer",
      "format": "int32",
      "description": "The restaurant the wait time applies to."
    },
    "partySize": {
      "type": "integer",
      "format": "int32",
      "description": "The party size the wait time applies to, if requested."
    },
    "quotedWaitMinutes": {
      "type": "integer",
      "format": "int32",
      "description": "The current quoted wait time in minutes."
    }
  }
}