# Pages with Event Structured Data Warnings
**Priority**: None
**Impact**: Neutral
## What issues it may cause
Pages with Event warnings may display only basic event information without useful additional information that helps users understand event context and make attendance decisions.
## How do you fix it
- Add description to provide clear event context and details
- Include endDate for events with specific end times
- Add high-resolution images in multiple aspect ratios (16x9, 4x3, 1x1)
- Include performer and organizer information to highlight event participants and hosts
Follow [Google's Event guidelines](https://developers.google.com/search/docs/appearance/structured-data/event) for
complete recommendations
## What is the positive impact
Adding recommended properties enhances event displays with descriptions, images, performer details, and organizer information, providing complete context that helps users discover and attend events.
## 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_event_schema_warnings"}
```