logo

BreadcrumbList

Schema for navigation breadcrumbs

Ideal for: Adding navigation breadcrumb trails to any page.

Rich Result Features: Breadcrumb trail displayed below the URL in results, helping users understand your site structure.

Key Fields

  • Breadcrumb items (repeatable): name and URL for each level

Templates

  • Simple Breadcrumb: Home → Page
  • E-commerce Breadcrumb: Home → Category → Subcategory → Product
  • Blog Breadcrumb: Home → Blog → Category → Post

Code Examples

BreadcrumbList Schema Example

json
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Inicio",
      "item": "https://ejemplo.com"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "Blog",
      "item": "https://ejemplo.com/blog"
    },
    {
      "@type": "ListItem",
      "position": 3,
      "name": "SEO",
      "item": "https://ejemplo.com/blog/seo"
    },
    {
      "@type": "ListItem",
      "position": 4,
      "name": "Guía de Schema Markup"
    }
  ]
}