Tock · Schema

tockAddress

tockAddress schema from Tock Guest Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
address1 string
address2 string
city string
state string
country string
zipCode string
View JSON Schema on GitHub

JSON Schema

guest-profile-address-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/guest-profile-address-schema.json",
  "title": "tockAddress",
  "description": "tockAddress schema from Tock Guest Model",
  "type": "object",
  "properties": {
    "address1": {
      "type": "string"
    },
    "address2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "zipCode": {
      "type": "string"
    }
  }
}