> JSON-LD Review Example (Validated) - Steal Our JSON-LD
JSON-LD Review markup for your website that has passed Google's structured data testing tool and is ready to go.
- published
- modified
- size
- 0.6K
- path
- /review/
Last updated October 2, 2019 by Patrick Coombe
As of January 2016, Google has added support for JSON-LD and reviews. This is a big day for JSON-LD in the fact that reviews are a really popular type in the webmaster community. The following code has been validated and has been proven to work with Google.
{
"@context": "https://schema.org/",
"@type": "Product",
"image": "http://www.example.com/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."
}
}
}
