Quandoo · JSON Structure

Quandoo Public Partner Api Review Dto Structure

ReviewDto schema from Quandoo Public Partner API

Type: object Properties: 5 Required: 3
RestaurantReservationsBookingAvailabilityMerchantsMarketplace

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

Properties

customer rating description locale date

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-review-dto-structure.json",
  "name": "ReviewDto",
  "description": "ReviewDto schema from Quandoo Public Partner API",
  "type": "object",
  "required": [
    "customer",
    "date",
    "rating"
  ],
  "properties": {
    "customer": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "profileImage": {
          "type": "object",
          "properties": {
            "url": {
              "type": "string",
              "format": "url",
              "example": "https://www.quandoo.com/place/sample-restaurant"
            }
          }
        }
      }
    },
    "rating": {
      "type": "int32",
      "description": "Possible values: 1 to 6."
    },
    "description": {
      "type": "string",
      "description": "The description of the review."
    },
    "locale": {
      "type": "string"
    },
    "date": {
      "type": "date",
      "description": "The date when the review was written."
    }
  }
}