A secondary navigation element that shows a page's position in the site hierarchy, and the corresponding BreadcrumbList schema that turns that hierarchy into a search result feature.
Breadcrumbs are a navigation pattern that shows the path from the site's root to the current page, typically rendered as "Home > Category > Subcategory > Page." They help users understand where they are in a site's structure and give them a quick way to jump back up to a parent category.
For SEO, the visual breadcrumb is only half the value. The other half is the `BreadcrumbList` Schema.org markup, delivered as JSON-LD, which tells Google the explicit hierarchy of the current page. When Google recognizes valid breadcrumb structured data, it often displays the breadcrumb trail directly in the search result snippet, replacing the raw URL with a more readable navigational path.
Breadcrumbs improve crawlability by creating clear parent-child relationships between pages, which helps Google understand site structure and distribute link equity. They reduce bounce rate by giving users an easy path back to broader categories instead of hitting the back button. And they improve click-through rate in search results by turning an ugly URL into a clean navigational path.
For AI search, breadcrumbs are a strong entity hierarchy signal. They tell LLMs that a page is part of a broader set (a glossary, a product category, a documentation section), which helps the model decide when to cite the individual page versus the hub.
Every Acta AI page that lives below the root has both a visual breadcrumb component and `BreadcrumbList` JSON-LD automatically generated from its route. This glossary is a good example: each term page shows Home, Glossary, Term Title visually and emits matching structured data that Google uses to render the breadcrumb trail in SERP snippets.
The BreadcrumbList JSON-LD that powers a search result breadcrumb trail looks like this:
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://withacta.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Glossary",
"item": "https://withacta.com/glossary"
},
{
"@type": "ListItem",
"position": 3,
"name": "Query Fan-Out",
"item": "https://withacta.com/glossary/query-fan-out"
}
]
}With this markup in place, Google can render the search result snippet as:
withacta.com > glossary > query-fan-out Query Fan-Out - Acta AI Query fan-out is the practice of decomposing a...
instead of the raw URL, which is both more readable and more clickable.
Every article on our blog was written by Acta AI. No edits. No ghostwriter.
Read Our BlogStart Free Trial