I'm using the following JSON to produce a review snippet:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Review",
"name": "Great service from the start.",
"author": {
"@type": "Person",
"name": "Chris Tonich"
},
"reviewBody": "Very thorough...would highly recommend!",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"bestRating": "5",
"ratingCount": "110",
"itemReviewed": {
"@type": "Product",
"image": "https://www.homeintegrity.com.au/wp-content/uploads/2020/12/hi-new-logo2.jpg",
"name": "Pre-Purchase Building Inspections",
"priceRange": "$$",
"telephone": "08 8375 8130",
"address" :{
"@type": "PostalAddress",
"streetAddress": "PO Box 163",
"addressLocality": "Scarborough",
"addressRegion": "WA",
"postalCode": "6019",
"addressCountry": "AU"
}
}
}
}
</script>
The Google Rich Snippet Test says:
Why am I receiving the error when the Review
contains aggregateRating
which contains itemReviewed
?
Why does it say I rated a Review
rather than an Item
?
Help appreciated.
question from:
https://stackoverflow.com/questions/65878379/google-json-review-snippet-not-validating 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…