# Review
The `review` object describes a product review, including its content, rating, author, and related metadata.
## Usage Example
```liquid
{%- comment -%} List product reviews {%- endcomment -%}
{% for review in product.reviews %}
-
{{ review.name }} rated {{ review.rating }}/{{ review.max_rating }}
{{ review.title }}
{{ review.review }}
Reviewed on {{ review.created_at | date: '%Y-%m-%d' }}
{% endfor %}
```
## Properties
### id
Returns the id.
### name
Returns the name of the reviewer.
### customer
Returns the [customer](/reference/liquid/objects/store/customer/) or null.
### title
Returns the title.
### review
Returns the review.
### rating
Returns the rating.
### max_rating
Returns the maximum rating value.
### created_at
Returns the date when this review was created.
### updated_at
Returns the date when this review was updated.