{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Review", "title": "Review", "type": "object", "description": "A review of a place submitted by a user", "properties": { "name": { "type": "string", "description": "The resource name of the review", "example": "Example Title" }, "relativePublishTimeDescription": { "type": "string", "description": "A human-readable relative time description", "example": "a month ago" }, "rating": { "type": "number", "format": "double", "description": "The star rating of this review (1.0-5.0)", "minimum": 1.0, "maximum": 5.0, "example": 42.5 }, "text": { "$ref": "#/components/schemas/LocalizedText" }, "originalText": { "$ref": "#/components/schemas/LocalizedText" }, "authorAttribution": { "$ref": "#/components/schemas/AuthorAttribution" }, "publishTime": { "type": "string", "format": "date-time", "description": "Timestamp of when the review was published", "example": "2026-01-15T10:30:00Z" } } }