Quandoo · Schema

UpdateReviewDto

UpdateReviewDto schema from Quandoo Public Partner API

RestaurantReservationsBookingAvailabilityMerchantsMarketplace

Properties

Name Type Description
reviewId string UUID identifying the review.
rating integer Rating associated to this review. Possible values: 1 to 6.
description string Description associated to this review.
View JSON Schema on GitHub

JSON Schema

quandoo-public-partner-api-update-review-dto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UpdateReviewDto",
  "description": "UpdateReviewDto schema from Quandoo Public Partner API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quandoo/refs/heads/main/json-schema/quandoo-public-partner-api-update-review-dto-schema.json",
  "type": "object",
  "required": [
    "reviewId"
  ],
  "properties": {
    "reviewId": {
      "type": "string",
      "format": "uuid",
      "description": "UUID identifying the review."
    },
    "rating": {
      "type": "integer",
      "format": "int32",
      "description": "Rating associated to this review. Possible values: 1 to 6."
    },
    "description": {
      "type": "string",
      "description": "Description associated to this review."
    }
  }
}