Quandoo · Schema

ReservationEnquiryMessageData

ReservationEnquiryMessageData schema from Quandoo Public Partner API

RestaurantReservationsBookingAvailabilityMerchantsMarketplace

Properties

Name Type Description
senderType string
message string
creationDate string The date the review created on. Format: yyyy-MM-ddTHH:mm:ssZ
View JSON Schema on GitHub

JSON Schema

quandoo-public-partner-api-reservation-enquiry-message-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ReservationEnquiryMessageData",
  "description": "ReservationEnquiryMessageData schema from Quandoo Public Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quandoo/refs/heads/main/json-schema/quandoo-public-partner-api-reservation-enquiry-message-data-schema.json",
  "type": "object",
  "properties": {
    "senderType": {
      "type": "string",
      "enum": [
        "MERCHANT",
        "CUSTOMER"
      ]
    },
    "message": {
      "type": "string"
    },
    "creationDate": {
      "type": "string",
      "format": "date-time",
      "description": "The date the review created on. Format: yyyy-MM-ddTHH:mm:ssZ"
    }
  }
}