# 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
### created_at
Returns the date when this review was created.
### customer
Returns the [customer](/reference/liquid/objects/store/customer/) who wrote the review, or null.
### id
Returns the unique id for this review.
### max_rating
Returns the maximum rating value.
### name
Returns the name of the reviewer.
### rating
Returns the rating given in the review.
### review
Returns the review content.
### title
Returns the title of the review.
### updated_at
Returns the date when this review was updated.