# Pages with FAQ Structured Data Warnings **Priority**: None **Impact**: Neutral ## What issues it may cause Pages with FAQ warnings have properly formatted question-and-answer content but may lack optional metadata that could improve how search engines understand and interpret the content structure. ## How do you fix it Follow [Google's FAQ guidelines](https://developers.google.com/search/docs/appearance/structured-data/faqpage) for complete recommendations ## What is the positive impact Optimizing FAQ structured data ensures question-and-answer content is fully understood by search engines, improving content interpretation and structure recognition. ## 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_faq_schema_warnings"} ```