Pages with Review Snippet Structured Data Errors
Priority: Low
Impact: Negative
What issues it may cause
Pages with Review Snippet errors won't display star ratings in search results or Knowledge Panels, removing critical social proof that influences user decisions.
How do you fix it
- Ensure all required properties are present for individual reviews and aggregate ratings
- Verify author names are legitimate (not promotional text) and stay under 100 characters
- Add recommended properties to resolve warnings: datePublished, bestRating, and worstRating
Follow Google's Review Snippet guidelines for complete requirements
What is the positive impact
Fixing errors restores star rating displays in search results and Knowledge Panels, recovering the social proof that builds trust with potential customers. Optimizing warnings adds helpful context like review recency and rating scale information, making it easier for users to evaluate quality at a glance.
How to fetch the data for this report template
You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:
- Query
- Variables
- cURL
query GetReportStatForCrawl(
$crawlId: ObjectID!
$reportTemplateCode: String!
$after: String
) {
getReportStat(
input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode}
) {
crawlStructuredDataBlocks(after: $after, reportType: Basic) {
nodes {
url
schemaType
issuesSummary
blockCount
errorCount
warningCount
validationResult
issues
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_review_snippet_schema_issues"}
curl -X POST -H "Content-Type: application/json" -H "apollographql-client-name: docs-example-client" -H "apollographql-client-version: 1.0.0" -H "x-auth-token: YOUR_API_SESSION_TOKEN" --data '{"query":"query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlStructuredDataBlocks(after: $after, reportType: Basic) { nodes { url schemaType issuesSummary blockCount errorCount warningCount validationResult issues } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_review_snippet_schema_issues"}}' https://api.lumar.io/graphql