Tock · Schema

tockNote

tockNote schema from Tock Reservation Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
noteType object The type of note being described by this object.
text string The full text of the note.
View JSON Schema on GitHub

JSON Schema

reservation-note-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-note-schema.json",
  "title": "tockNote",
  "description": "tockNote schema from Tock Reservation Model",
  "type": "object",
  "properties": {
    "noteType": {
      "$ref": "reservation-note-note-type-schema.json",
      "description": "The type of note being described by this object."
    },
    "text": {
      "type": "string",
      "description": "The full text of the note."
    }
  }
}