Tock · Schema

tockDay

tockDay schema from Tock Guest Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
type object The type of special day as specified by the guest.
day integer The numerical day within the month.
month integer The numerical month within the year.
year integer If specified, the year of the day.
View JSON Schema on GitHub

JSON Schema

guest-profile-day-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-day-schema.json",
  "title": "tockDay",
  "description": "tockDay schema from Tock Guest Model",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "guest-profile-day-type-schema.json",
      "description": "The type of special day as specified by the guest."
    },
    "day": {
      "type": "integer",
      "format": "int64",
      "description": "The numerical day within the month."
    },
    "month": {
      "type": "integer",
      "format": "int64",
      "description": "The numerical month within the year."
    },
    "year": {
      "type": "integer",
      "format": "int64",
      "description": "If specified, the year of the day."
    }
  }
}