Yelp · Schema
Review
Review schema from Yelp Fusion API
RestaurantLocal SearchReviewsBusiness DataLocation
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| url | string | |
| text | string | Review excerpt. |
| rating | number | |
| time_created | string | Review creation time in PST. |
| user | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-schema/yelp-review-schema.json",
"title": "Review",
"description": "Review schema from Yelp Fusion API",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "gR9DTbKCON2g1Z23bWcEpQ"
},
"url": {
"type": "string",
"format": "uri",
"example": "https://www.yelp.com/biz/rickys-tacos-san-francisco"
},
"text": {
"type": "string",
"description": "Review excerpt.",
"example": "Best tacos in the Bay Area. The al pastor is incredible and the salsa bar is unmatched."
},
"rating": {
"type": "number",
"format": "float",
"example": 4.5
},
"time_created": {
"type": "string",
"description": "Review creation time in PST.",
"example": "2026-04-18 19:32:11"
},
"user": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"profile_url": {
"type": "string",
"format": "uri"
},
"image_url": {
"type": [
"string",
"null"
],
"format": "uri"
},
"name": {
"type": "string"
}
}
}
}
}