Blame view

thread/modules/seo/docs/ld+json/breadcrumbs 1.04 KB
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  https://developers.google.com/search/docs/data-types/breadcrumbs
  
  <script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "BreadcrumbList",
    "itemListElement": [{
      "@type": "ListItem",
      "position": 1,
      "item": {
        "@id": "https://example.com/books",
        "name": "Books",
        "image": "http://example.com/images/icon-book.png"
      }
    },{
      "@type": "ListItem",
      "position": 2,
      "item": {
        "@id": "https://example.com/books/authors",
        "name": "Authors",
        "image": "http://example.com/images/icon-author.png"
      }
    },{
      "@type": "ListItem",
      "position": 3,
      "item": {
        "@id": "https://example.com/books/authors/annleckie",
        "name": "Ann Leckie",
        "image": "http://example.com/images/author-leckie-ann.png"
      }
    },{
      "@type": "ListItem",
      "position": 4,
      "item": {
        "@id": "https://example.com/books/authors/ancillaryjustice",
        "name": "Ancillary Justice",
        "image": "http://example.com/images/cover-ancillary-justice.png"
      }
    }]
  }
  </script>