# Breadcrumb

Understand BreadcrumbList schema in Thulite SEO and how breadcrumb JSON-LD is generated for navigable pages to reflect site hierarchy.

A set of links that can help a user understand and navigate a website hierarchy.

## Settings

No settings.

## Generated meta tag

Thulite SEO generates the following meta tag (if applicable, not homepage) — for example:

```html
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "item": "https://getdoks.org/",
      "name": "Welcome to Doks",
      "position": 1
    },
    {
      "@type": "ListItem",
      "item": "https://getdoks.org/docs/",
      "name": "Docs",
      "position": 2
    },
    {
      "@type": "ListItem",
      "item": "https://getdoks.org/docs/guides/",
      "name": "Guides",
      "position": 3
    },
    {
      "@type": "ListItem",
      "name": "Example Guide",
      "position": 4
    }
  ]
 }
 </script>
```

## Resources

- [Breadcrumb (`BreadcrumbList`) structured data](https://developers.google.com/search/docs/appearance/structured-data/breadcrumb)
- [breadcrumb](https://schema.org/breadcrumb)
- [BreadcrumbList](https://schema.org/BreadcrumbList)
