I noticed Google have published this doc on building breadcrumb list data: https://developers.google.com/search/docs/appearance/structured-data/breadcrumb
Notably, this example may be out of date (or also compatible?)
|
{ |
|
"@type": "ListItem", |
|
"position": 1, |
|
"item": { |
|
"@id": "https://jay.holtslander.ca/home", |
|
"name": "Home" |
|
} |
|
}, |
Following the Google example, the above example would become
4,7c4,5
< "item": {
< "@id": "https://jay.holtslander.ca/home",
< "name": "Home"
< }
---
> "item": @id": "https://jay.holtslander.ca/home",
> "name": "Home"
Thought to raise here for more input.
I noticed Google have published this doc on building breadcrumb list data: https://developers.google.com/search/docs/appearance/structured-data/breadcrumb
Notably, this example may be out of date (or also compatible?)
Structured-Data-JSON-LD/BreadcrumbList.json
Lines 7 to 14 in 5c0f7d0
Following the Google example, the above example would become
Thought to raise here for more input.