We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Review hubs summarizing user reviews with AggregateRating, FAQs, and breadcrumbs.
Represents the review hub page.
Highlights representative user reviews on the hub.
Summarizes overall rating stats across the category.
Answers sourcing and moderation questions.
Provides navigation context for the reviews hub.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"@id": "https://www.example.com/reviews/coffee-makers#page",
"name": "Coffee Maker Reviews",
"description": "Community reviews and ratings for popular coffee makers.",
"url": "https://www.example.com/reviews/coffee-makers",
"mainEntity": {
"@type": "AggregateRating",
"@id": "https://www.example.com/reviews/coffee-makers#rating"
}
},
{
"@context": "https://schema.org",
"@type": "AggregateRating",
"@id": "https://www.example.com/reviews/coffee-makers#rating",
"ratingValue": "4.6",
"reviewCount": "1284",
"bestRating": "5",
"worstRating": "1"
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/coffee-makers#review-1",
"reviewBody": "Easy to use and makes consistently great coffee.",
"reviewRating": { "@type": "Rating", "ratingValue": "5", "bestRating": "5" },
"author": { "@type": "Person", "name": "Taylor M." },
"itemReviewed": { "@type": "Product", "name": "BrewMaster Pro" },
"datePublished": "2025-04-20"
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/coffee-makers#review-2",
"reviewBody": "Compact and affordable, but the carafe could be larger.",
"reviewRating": { "@type": "Rating", "ratingValue": "4", "bestRating": "5" },
"author": { "@type": "Person", "name": "Jordan L." },
"itemReviewed": { "@type": "Product", "name": "CafePress Compact" },
"datePublished": "2025-04-18"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Where do the reviews come from?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Reviews are submitted by verified customers and moderated for quality."
}
},
{
"@type": "Question",
"name": "Do you remove negative reviews?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. We only remove reviews that violate our guidelines."
}
},
{
"@type": "Question",
"name": "How often are ratings updated?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Ratings update daily as new reviews are added."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Reviews", "item": "https://www.example.com/reviews" },
{ "@type": "ListItem", "position": 3, "name": "Coffee Makers", "item": "https://www.example.com/reviews/coffee-makers" }
]
}
]Include representative reviews shown on the page, and ensure AggregateRating matches the displayed stats.
Create separate review hubs per category to keep ratings accurate and consistent.