{ "$schema": "https://json-schema.org/draft/2020-12/schema", "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" }, "relativePublishTimeDescription": { "type": "string", "description": "A human-readable relative time description" }, "rating": { "type": "number", "description": "The star rating of this review (1.0-5.0)" }, "publishTime": { "type": "string", "description": "Timestamp of when the review was published" } } }