Skip to main content

Pages with Breadcrumb Structured Data Warnings

Priority: None

Impact: Neutral

What issues it may cause

Pages with Breadcrumb warnings may display basic navigation trails without optimized path representations that best reflect typical user navigation patterns through your site.

How do you fix it

  • Ensure breadcrumb trails represent typical user paths rather than simply mirroring URL structure
  • Add multiple breadcrumb trails if there are multiple valid paths to the same page
  • Verify each breadcrumb item contains descriptive names that clarify hierarchy

Follow Google's Breadcrumb guidelines for complete recommendations

What is the positive impact

Optimizing breadcrumb trails ensures navigation paths accurately represent user journeys through your site, improving contextual understanding and navigation clarity 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:

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