Tock · Schema

tockPayout

tockPayout schema from Tock Reservation Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
id string A unique identifier assigned to the payout. Used internally by Tock.
arrivalDate string The date that this payout is expected to arrive in the business bank account pending any potential rejections by the bank.
View JSON Schema on GitHub

JSON Schema

reservation-payout-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-payout-schema.json",
  "title": "tockPayout",
  "description": "tockPayout schema from Tock Reservation Model",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "int64",
      "description": "A unique identifier assigned to the payout. Used internally by Tock."
    },
    "arrivalDate": {
      "type": "string",
      "description": "The date that this payout is expected to arrive in the business bank account pending any potential rejections by the bank."
    }
  }
}