2

I have implemented breadcrumb schema markup with JSON-LD on my website. I have up to 5 positions (levels) of breadcrumbs and my code has validated correctly with the Structured Data Testing Tool.

However I note that Google is not showing the full breadcrumbs on the search results pages. For example for a page with 3 positions (as example code below), Google shows only 2 such as:

https://www.example.com > Jumpers > Mens

Is there anything wrong with my code?

This code would be located on https://www.example.com/jumpers/mens/designer:

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
  "itemListElement": [{
  "@type": "ListItem",
  "position": 1,
  "name": "Jumpers",
  "item": "https://www.example.com/jumpers"
  }
  ,{
  "@type": "ListItem",
  "position": 2,
  "name": "Mens",
  "item": "https://www.example.com/jumpers/mens"
  }
  ,{
  "@type": "ListItem",
  "position": 3,
  "name": "Designer",
  "item": "https://www.example.com/jumpers/mens/designer"
  }]
}
</script>
unor
  • 92,415
  • 26
  • 211
  • 360
sam8perry
  • 185
  • 1
  • 1
  • 10
  • 1
    Possible duplicate of [Display of last Schema.org breadcrumb entry in Google Search?](https://stackoverflow.com/questions/36120148/display-of-last-schema-org-breadcrumb-entry-in-google-search) – unor Jan 27 '19 at 02:03

0 Answers0