## Review The `review` object describes a product review, including content, rating, and author. ```liquid {%- comment -%} List product reviews {%- endcomment -%} {% for review in product.reviews %} {{ review.title }}: {{ review.review }} {% endfor %} ``` ## id Returns the id. ## name Returns the name of the reviewer. ## customer Returns the [customer](/reference/liquid/objects/feed/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.