{ "$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." } } }