Tock · Schema

tockBusinessSpend

tockBusinessSpend schema from Tock Guest Model

HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

Properties

Name Type Description
totalSpendCents string Total amount in cents the guest has spent at the business.
averageSpendPerVisitCents string Average amount in cents the guest has spent per visit at the business.
spendInLastYearCents string Total amount in cents the guest has spent at the business in the last year (12 months).
View JSON Schema on GitHub

JSON Schema

guest-profile-business-spend-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-business-spend-schema.json",
  "title": "tockBusinessSpend",
  "description": "tockBusinessSpend schema from Tock Guest Model",
  "type": "object",
  "properties": {
    "totalSpendCents": {
      "type": "string",
      "format": "uint64",
      "description": "Total amount in cents the guest has spent at the business."
    },
    "averageSpendPerVisitCents": {
      "type": "string",
      "format": "uint64",
      "description": "Average amount in cents the guest has spent per visit at the business."
    },
    "spendInLastYearCents": {
      "type": "string",
      "format": "uint64",
      "description": "Total amount in cents the guest has spent at the business in the last year (12 months)."
    }
  }
}