# Pages with Event Structured Data Errors **Priority**: Low **Impact**: Negative ## What issues it may cause Invalid Event structured data prevents events from appearing in Google's event experience, meaning users won't see your events in enhanced search results or on Google Maps. Errors like missing location details or incorrect date formats block Google from understanding and displaying events properly. ## How do you fix it Follow [Google's Event guidelines](https://developers.google.com/search/docs/appearance/structured-data/event) for complete requirements ## What is the positive impact Fixing errors restores eligibility for Google's event experience with enhanced display featuring event details, images, and ticket information in both Search and Maps. ## 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_issues"} ```