# Pages with Recipe Structured Data Warnings
**Priority**: None
**Impact**: Neutral
## What issues it may cause
Pages with Recipe warnings may display basic recipe information without cooking times, nutrition facts, quality images, or ratings that help users decide which recipes to make and plan meal preparation.
## How do you fix it
- Add prepTime, cookTime, and totalTime for accurate time expectations
- Include nutrition information with calories and key nutritional values
- Add high-resolution images showing the finished dish
- Include aggregateRating and review information to show recipe popularity and quality
Follow [Google's Recipe guidelines](https://developers.google.com/search/docs/appearance/structured-data/recipe) for
complete recommendations
## What is the positive impact
Adding recommended properties enhances recipe displays with cooking times, nutrition information, quality images, and ratings, helping users evaluate recipes and make informed cooking 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_recipe_schema_warnings"}
```