Tock · Schema

tockSeatingOption

tockSeatingOption schema from Tock Reservation Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
id string A unique identifier for the seating option. Used internally by Tock.
name string The name given to the seating option which is displayed within the Tock Dashboard.
isOutdoors boolean This field indicates whether or not the seating option is outdoors.
View JSON Schema on GitHub

JSON Schema

reservation-seating-option-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tock/refs/heads/main/json-schema/reservation-seating-option-schema.json",
  "title": "tockSeatingOption",
  "description": "tockSeatingOption schema from Tock Reservation Model",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "int64",
      "description": "A unique identifier for the seating option. Used internally by Tock."
    },
    "name": {
      "type": "string",
      "description": "The name given to the seating option which is displayed within the Tock Dashboard."
    },
    "isOutdoors": {
      "type": "boolean",
      "description": "This field indicates whether or not the seating option is outdoors."
    }
  }
}