Pages at depth 1+ lack BreadcrumbList JSON-LD schema, preventing breadcrumb display in search results.
By Seoxpert Editorial · Published
BreadcrumbList schema helps Google show breadcrumb trails in search snippets, making results more attractive and informative. This improves user navigation, click-through rates, and helps users understand your site's hierarchy at a glance.
Without BreadcrumbList schema, deep pages may not display breadcrumbs in Google search results, reducing visibility and clarity.
An automated crawler checks for the presence of BreadcrumbList JSON-LD structured data on pages with URL path depth 1 or greater.
Missing BreadcrumbList (Problem)
// No BreadcrumbList JSON-LD present on the pageCorrect BreadcrumbList JSON-LD (Fix)
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Category",
"item": "https://example.com/category/"
},
{
"@type": "ListItem",
"position": 3,
"name": "Product",
"item": "https://example.com/category/product/"
}
]
}It is most important for pages at depth 2 or greater, where breadcrumbs help clarify site structure.
Yes, but JSON-LD is Google's recommended format for structured data.
Each item should have '@type', 'position', 'name', and 'item' (URL) properties.
It does not change the visible page; it only adds structured data for search engines.
Run a scan to see if Deep Pages Missing BreadcrumbList Schema affects your pages.
Scan my website →