{ "$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)." } } }