# 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](https://developers.google.com/search/docs/appearance/structured-data/breadcrumb)
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:
```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_breadcrumb_schema_warnings"}
```