The Ultimate Guide to Breadcrumb Schema

Breadcrumb Schema FI

Use the following JSON-LD code snippet to implement Breadcrumb Schema on your website. This structured data helps search engines display a breadcrumb navigation trail in search results, improving your visibility and user experience.

    
    
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://www.example.com/"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "Products",
      "item": "https://www.example.com/products/"
    },
    {
      "@type": "ListItem",
      "position": 3,
      "name": "Widget X",
      "item": "https://www.example.com/products/widget-x"
    }
  ]
}
    
  

Replace the placeholder URLs and names with the actual navigation path on your website. Make sure the order of position values matches your site's breadcrumb structure.

For more guidance on implementing Breadcrumb Schema, visit the Schema Markup blog post.