I am trying to create a product snippet in JSON-LD with multiple reviews. The code below works when I include only one review. (please copy paste the code fragment in the console on the following url to test it: ). However it is unclear for me how I can add multiple reviews. After struggling for some time I can't get it to work myself and I am having a hard time to find an example.
Let's say I have a review from "John" who gives the product rating of a "3.0" and another review of "Sarah" who gives the product a rating of "5.0". How can I include the review of Sarah in the code below?
{
"@context": "/",
"@type": "Product",
"name": "Samsung Galaxy S",
"description": "A great product",
"brand": {
"@type": "Thing",
"name": "Samsung"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.0",
"reviewCount": "103"
},
"offers": {
"@type": "Offer",
"priceCurrency": "EUR",
"price": "18",
"itemCondition": "",
"availability": "",
"seller": {
"@type": "Organization",
"name": "Samsung"
}
}
,"review": {
"@type": "Review",
"author": "John",
"datePublished": " 7 December 2016",
"description": "I love this product so much",
"name": "Amazing",
"reviewRating": {
"@type": "Rating",
"bestRating": "5",
"ratingValue": "3.0",
"worstRating": "1"
}
}
}
I am trying to create a product snippet in JSON-LD with multiple reviews. The code below works when I include only one review. (please copy paste the code fragment in the console on the following url to test it: https://search.google./structured-data/testing-tool ). However it is unclear for me how I can add multiple reviews. After struggling for some time I can't get it to work myself and I am having a hard time to find an example.
Let's say I have a review from "John" who gives the product rating of a "3.0" and another review of "Sarah" who gives the product a rating of "5.0". How can I include the review of Sarah in the code below?
{
"@context": "http://schema/",
"@type": "Product",
"name": "Samsung Galaxy S",
"description": "A great product",
"brand": {
"@type": "Thing",
"name": "Samsung"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.0",
"reviewCount": "103"
},
"offers": {
"@type": "Offer",
"priceCurrency": "EUR",
"price": "18",
"itemCondition": "http://schema/NewCondition",
"availability": "http://schema/InStock",
"seller": {
"@type": "Organization",
"name": "Samsung"
}
}
,"review": {
"@type": "Review",
"author": "John",
"datePublished": " 7 December 2016",
"description": "I love this product so much",
"name": "Amazing",
"reviewRating": {
"@type": "Rating",
"bestRating": "5",
"ratingValue": "3.0",
"worstRating": "1"
}
}
}
Share
Improve this question
edited Dec 2, 2017 at 14:12
Rob
15.2k30 gold badges48 silver badges73 bronze badges
asked Dec 1, 2017 at 3:20
user3398797user3398797
4292 gold badges7 silver badges18 bronze badges
2
- 1 Can you include an example that shows what you tried? – unor Commented Dec 1, 2017 at 6:07
- 1 google [array] to see how to construct an [array] – Jay Gray Commented Dec 1, 2017 at 23:38
2 Answers
Reset to default 11You can specify review as an array,
<script type="application/ld+json">
{
"@context": "http://schema/",
"@type": "Product",
"image": "http://www.example./iphone-case.jpg",
"name": "The Catcher in the Rye",
"review": [
{
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "4"
},
"name": "iPhone 6 Case Plus",
"author": {
"@type": "Person",
"name": "Linus Torvalds"
},
"datePublished": "2016-04-04",
"reviewBody": "I loved this case, it is strurdy and lightweight. Only issue is that it smudges.",
"publisher": {
"@type": "Organization",
"name": "iPhone 6 Cases Inc."
}
},
{
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "4"
},
"name": "iPhone 6 Case Plus+",
"author": {
"@type": "Person",
"name": "Linus Torvalds"
},
"datePublished": "2019-04-04",
"reviewBody": "I loved this case, it is strurdy and lightweight. Only issue is that it smudges.",
"publisher": {
"@type": "Organization",
"name": "iPhone 6 Cases Inc."
}
}
]
}
</script>
You can attach multiple JSON-LD snippets to a single page, so there's no reason why you couldn't remove the review data from you sample, and move it to a standalone snippet. Then create another snippet for "Sarah"
Here's a some boilerplate JSON-LD for a review
<script type="application/ld+json">
{
"@context": "http://schema/",
"@type": "Product",
"image": "http://www.example./iphone-case.jpg",
"name": "The Catcher in the Rye",
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "4"
},
"name": "iPhone 6 Case Plus",
"author": {
"@type": "Person",
"name": "Linus Torvalds"
},
"datePublished": "2016-04-04",
"reviewBody": "I loved this case, it is strurdy and lightweight. Only issue is that it smudges.",
"publisher": {
"@type": "Organization",
"name": "iPhone 6 Cases Inc."
}
}
}
</script>
If you test this approach with multiple snippets on https://search.google./structured-data/testing-tool you'll see that it will validate.
As an alternative, I have the equivalent of this working on a site. I've removed the individual review and modified your aggregateRating block
<script type="application/ld+json"> {
"@context": "http://schema/",
"@type": "Product",
"name": "Samsung Galaxy S",
"description": "A great product",
"brand": {
"@type": "Thing",
"name": "Samsung"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4",
"reviewCount": "103",
"worstRating": "1",
"bestRating": "5"
},
"offers": {
"@type": "Offer",
"priceCurrency": "EUR",
"price": "18",
"itemCondition": "http://schema/NewCondition",
"availability": "http://schema/InStock",
"seller": {
"@type": "Organization",
"name": "Samsung"
}
}
}</script>
Good luck!