-
Notifications
You must be signed in to change notification settings - Fork 73
/
ItemList-5.json
67 lines (55 loc) · 1.32 KB
/
ItemList-5.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!-- THE LIST ITSELF -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "ItemList",
"url":"https://google.com/mylist",
"itemListElement":
[
{"@type": "ListItem","position": 1,"item":{"@id": "#Item1"}},
{"@type": "ListItem","position": 2,"item":{"@id": "#Item2"}},
{"@type": "ListItem","position": 3,"item":{"@id": "#Item3"}},
{"@type": "ListItem","position": 4,"item":{"@id": "#Item4"}}
]
}
</script>
<!-- ITEM 1's SCHEMA BLOCK -->
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"ListItem",
"@id": "#Item1",
"url":"https://google.com/mylist#Item1",
"name": "First Item"
}
</script>
<!-- ITEM 2's SCHEMA BLOCK -->
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"ListItem",
"@id": "#Item2",
"url":"https://google.com/mylist#Item2",
"name": "Second Item"
}
</script>
<!-- ITEM 3's SCHEMA BLOCK -->
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"ListItem",
"@id": "#Item3",
"url":"https://google.com/mylist#Item3",
"name": "Third Item"
}
</script>
<!-- ITEM 4's SCHEMA BLOCK -->
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"ListItem",
"@id": "#Item4",
"url":"https://google.com/mylist#Item4",
"name": "Third Item"
}
</script>