# Pages with Review Snippet Structured Data Warnings
**Priority**: None
**Impact**: Neutral
## What issues it may cause
Pages with Review Snippet warnings may display basic star ratings without helpful context like review recency or rating scale information that helps users evaluate quality and credibility.
## How do you fix it
- Add datePublished to show review recency
- Include bestRating and worstRating to provide rating scale context
- Ensure all review content is visible and accessible on the page
Follow [Google's Review Snippet
guidelines](https://developers.google.com/search/docs/appearance/structured-data/review-snippet) for complete
recommendations
## What is the positive impact
Adding recommended properties enhances star rating displays with review dates and rating scale information, helping users assess review quality and make informed decisions.
## 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:
```graphql
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:**
```json
{"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"pages_with_review_schema_warnings"}
```