Create Breadcrumb schema for website navigation. It is completely free and very easy to use.
Loading tool...
The Breadcrumb Schema Generator creates Schema.org `BreadcrumbList` structured data in JSON-LD format, mapping website URL hierarchy to display clean breadcrumb navigation trails in Google SERPs.
Constructs a `BreadcrumbList` containing ordered `ListItem` elements with `position` (1-indexed), `name` (page title), and `item` (absolute URL). Helps search engines understand site architecture and replace raw URLs with clean breadcrumb trails.
1. Home (https://example.com) -> 2. Tools (https://example.com/tools) -> 3. JSON Formatter (https://example.com/tools/json){
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://example.com" },
{ "@type": "ListItem", "position": 2, "name": "Tools", "item": "https://example.com/tools" },
{ "@type": "ListItem", "position": 3, "name": "JSON Formatter", "item": "https://example.com/tools/json" }
]
}Defines an ordered 3-step navigation trail with absolute URLs for search snippet rendering.
Breadcrumbs help search engines comprehend site hierarchy and present clean, readable category paths instead of raw URLs in search snippets.