Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active April 15, 2019 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warnakey/d467029e47792abbe910bb84b2fb2fd5 to your computer and use it in GitHub Desktop.
Save warnakey/d467029e47792abbe910bb84b2fb2fd5 to your computer and use it in GitHub Desktop.
BreadcrumbList Schema Example in JSON-LD
<!-- This Breadcrumb schema example would be for a 2nd level page called /blog/ -->
<script type='application/ld+json'> {
"@context":"https://schema.org",
"@type":"BreadcrumbList",
"itemListElement":[ {
"@type":"ListItem",
"position":1,
"item": {
"@id": "https://www.examplelaw.com/", "name": "Home"
}
},
{
"@type":"ListItem",
"position":2,
"item": {
"@id": "https://www.examplelaw.com/blog/", "name": "Blog"
}
}
]
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment