# Pages with Article Structured Data Errors **Priority**: Low **Impact**: Negative ## What issues it may cause Pages with Article errors have content details that search engines cannot properly interpret, potentially causing incomplete displays in search results and Google News. ## How do you fix it ## What is the positive impact Fixing Article errors ensures search engines can properly interpret your content details for display in search results and Google News. Addressing warnings improves how your articles appear with complete author attribution, accurate dates, and representative images, helping users evaluate and engage with your content. ## 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_article_schema_issues"} ```