Tock · JSON Structure

Reservation Tock Payment Structure

tockTockPayment schema from Tock Reservation Model

Type: object Properties: 7
HospitalityReservationsRestaurantsWineriesTicketed EventsTakeoutDeliveryExperiencesDiningAmerican Express

tockTockPayment is a JSON Structure definition published by Tock, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id amount payout paymentType processorId processorFeeCents tockFeeCents

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tock/refs/heads/main/json-structure/reservation-tock-payment-structure.json",
  "name": "tockTockPayment",
  "description": "tockTockPayment schema from Tock Reservation Model",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "int64",
      "description": "A unique identifier assigned to the payment. Used internally by Tock."
    },
    "amount": {
      "type": "int32",
      "description": "The amount of the reservation that was paid using the paymentType."
    },
    "payout": {
      "$ref": "reservation-payout-schema.json",
      "description": "The Tock-generated payout that includes this payment as a credit to the business bank account. If the business connects to Tock for payment processing using Stripe this field will not be present."
    },
    "paymentType": {
      "$ref": "reservation-payment-type-schema.json",
      "description": "The form of payment used for this portion of total price on the reservation."
    },
    "processorId": {
      "type": "string",
      "description": "A unique identifier assigned to the payment by the payment processor indicated by the paymentType."
    },
    "processorFeeCents": {
      "type": "int64",
      "description": "The amount the payment processor kept from the payment to perform the service."
    },
    "tockFeeCents": {
      "type": "int64",
      "description": "The fee that Tock kept from the payment to perform the service."
    }
  }
}