Skip to main content

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

  • Review warning details to identify specific missing recommended properties
  • Ensure all FAQ content remains visible and accessible to users
  • Verify that each question has only one authoritative answer

Follow Google's FAQ guidelines 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:

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
}
}
}
}

Try in explorer