# Pages with Q&A Structured Data Errors **Priority**: Low **Impact**: Negative ## What issues it may cause Pages with QAPage errors won't display as enhanced Q&A results in search results, preventing users from seeing question text, answer counts, and accepted solutions. ## How do you fix it Follow [Google's QAPage guidelines](https://developers.google.com/search/docs/appearance/structured-data/qapage) for complete requirements ## What is the positive impact Q&A pages are eligible to display as Rich Results with question text, answer statistics, voting counts, and highlighted accepted solutions visible in search results. ## 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_qa_schema_issues"} ```