Tock · Schema

tockPurchasedCustomCharge

tockPurchasedCustomCharge schema from Tock Reservation Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
name string The name given to the custom charge when created on the reservation in the Tock Dashboard.
amountCents string The amount added to the total price for this custom charge.
View JSON Schema on GitHub

JSON Schema

reservation-purchased-custom-charge-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-purchased-custom-charge-schema.json",
  "title": "tockPurchasedCustomCharge",
  "description": "tockPurchasedCustomCharge schema from Tock Reservation Model",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name given to the custom charge when created on the reservation in the Tock Dashboard."
    },
    "amountCents": {
      "type": "string",
      "format": "uint64",
      "description": "The amount added to the total price for this custom charge."
    }
  }
}