Pages with Review Snippet Structured Data
Priority: Medium
Impact: Positive
What issues it may cause
Proper review markup enables search engines to include accurate rating and feedback information when citing your content or products.
How do you fix it
- Ensure all required properties are present for individual reviews and aggregate ratings
- Verify author names are valid person or organization names (not promotional text) under 100 characters
- Avoid self-serving reviews where the entity being reviewed controls the reviews
- Add recommended properties like datePublished and rating scale bounds
Follow Google's Review Snippet guidelines for complete requirements
What is the positive impact
Star ratings and review counts are eligible to appear directly in search results and Knowledge Panels, increasing visibility and helping potential customers quickly assess quality.
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
blockCount
errorCount
warningCount
issuesSummary
validationResult
}
totalCount
pageInfo {
endCursor
hasNextPage
}
}
}
}
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_review_snippet_schema_blocks"}
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 blockCount errorCount warningCount issuesSummary validationResult } totalCount pageInfo { endCursor hasNextPage } } } }","variables":{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_review_snippet_schema_blocks"}}' https://api.lumar.io/graphql