Description & Example
Breadcrumb structured data tells search engines how your site is organized,
so they can display a more user-friendly path (instead of the raw URL).
A minimal JSON-LD example for three levels:
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://example.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Blog",
"item": "https://example.com/blog"
},
{
"@type": "ListItem",
"position": 3,
"name": "Article Title",
"item": "https://example.com/blog/article"
}
]
}
Simply copy the generated code into a
<script type="application/ld+json">
tag to let search engines
parse it and show a breadcrumb path in search results.