-
Hello,
I’m trying to create some custom aggregateRating schema using RankMath. Only issue is that when I include multiple review properties, which is normal with aggregateRating, only one is validated.
Below you will see the schema in question:
{
“@context”: “https://schema.org”,
“@graph”: [
{
“@type”: “Place”,
“@id”: “https://stagingebt.wpengine.com/#place”,
“address”: {
“@type”: “PostalAddress”,
“streetAddress”: “784 Clearwater Loop Ste. B”,
“addressLocality”: “Post Falls”,
“addressRegion”: “Idaho”,
“postalCode”: “83854”,
“addressCountry”: “United States of America”
}
},
{
“@type”: “Organization”,
“@id”: “https://stagingebt.wpengine.com/#organization”,
“name”: “Epic Expeditions”,
“url”: “https://stagingebt.wpengine.com”,
“email”: “c******@s**********************”,
“address”: {
“@type”: “PostalAddress”,
“streetAddress”: “784 Clearwater Loop Ste. B”,
“addressLocality”: “Post Falls”,
“addressRegion”: “Idaho”,
“postalCode”: “83854”,
“addressCountry”: “United States of America”
},
“logo”: {
“@type”: “ImageObject”,
“@id”: “https://stagingebt.wpengine.com/#logo”,
“url”: “https://stagingebt.wpengine.com/wp-content/uploads/2021/02/Plan-de-travail-1.png”,
“contentUrl”: “https://stagingebt.wpengine.com/wp-content/uploads/2021/02/Plan-de-travail-1.png”,
“caption”: “Epic Expeditions”,
“inLanguage”: “en-US”,
“width”: 603,
“height”: 343
},
“location”: {
“@id”: “https://stagingebt.wpengine.com/#place”
}
},
{
“@type”: “WebSite”,
“@id”: “https://stagingebt.wpengine.com/#website”,
“url”: “https://stagingebt.wpengine.com”,
“name”: “Epic Expeditions”,
“alternateName”: “Epic”,
“publisher”: {
“@id”: “https://stagingebt.wpengine.com/#organization”
},
“inLanguage”: “en-US”
},
{
“@type”: “Product”,
“@id”: “https://stagingebt.wpengine.com/blog/#webpage”,
“url”: “https://stagingebt.wpengine.com/blog/”,
“name”: “Explore the Epic Journal – Epic Expeditions”,
“isPartOf”: {
“@id”: “https://stagingebt.wpengine.com/#website”
},
“inLanguage”: “en-US”,
“breadcrumb”: {
“@id”: “https://stagingebt.wpengine.com/blog/#breadcrumb”
},
“mpn”: “k2_base_camp”,
“sku”: “abc123”,
“image”: “https://stagingebt.wpengine.com/wp-content/uploads/2021/12/DJI_0160-2-1-300×136.jpg”,
“brand”: {
“@type”: “Brand”,
“name”: “Epic Expeditions”
},
“aggregateRating”: {
“@type”: “AggregateRating”,
“ratingValue”: “5”,
“ratingCount”: “3”
},
“review”: {
“@type”: “Review”,
“datePublished”: “07/20/2024”,
“description”: “Had a great trip with Epic on the K2 base camp and Gondogoro La expedition. They are an experienced group and partner with great local guides that ensure the whole group is successful in completing the trek and having a good experience.”,
“author”: {
“@type”: “Person”,
“name”: “Trevor Hirst”
},
“reviewRating”: {
“@type”: “Rating”,
“bestRating”: “5”,
“worstRating”: “1”,
“ratingValue”: “5”
}
}
}
]
}As you can see there is only one review at the bottom, when there should be three. These three are present in the custom schema editor.
Is this to be expected? The validated schema is not correct and I need it include all of the review that were added to the editor.
Thanks for your help!
The ticket ‘AggregateRating Schema’ is closed to new replies.