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.com/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.org/",
"@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.org/NewCondition",
"availability": "http://schema.org/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"
}
}
}