Quandoo · JSON Structure

Quandoo Public Partner Api Tracking Structure

Tracking schema from Quandoo Public Partner API

Type: object Properties: 2 Required: 1
RestaurantReservationsBookingAvailabilityMerchantsMarketplace

Tracking is a JSON Structure definition published by Quandoo, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

agent cookie

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/quandoo/refs/heads/main/json-structure/quandoo-public-partner-api-tracking-structure.json",
  "name": "Tracking",
  "description": "Tracking schema from Quandoo Public Partner API",
  "type": "object",
  "required": [
    "agent"
  ],
  "properties": {
    "agent": {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "int32",
          "description": "An agent id. Required."
        }
      }
    },
    "cookie": {
      "type": "object",
      "properties": {
        "tracking": {
          "type": "string",
          "description": "A tracking string to be stored with the reservation. Optional."
        },
        "referenceId": {
          "type": "string",
          "description": "A reference id to be stored with the reservation. Optional."
        }
      }
    }
  }
}