-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathissue-2421-examples.txt
More file actions
72 lines (54 loc) · 1.28 KB
/
issue-2421-examples.txt
File metadata and controls
72 lines (54 loc) · 1.28 KB
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
68
69
70
71
TYPES: #eg-0295 Person, InteractionCounter
PRE-MARKUP:
A media creator with a number of likes and follows.
MICRODATA:
<!-- JSON-LD example only -->
RDFA:
<!-- JSON-LD example only -->
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Jane Doe",
"interactionStatistic": [
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/LikeAction",
"userInteractionCount": 1170
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/FollowAction",
"userInteractionCount": 145098
}
]
}
</script>
TYPES: #eg-0296 Organization, InteractionCounter
PRE-MARKUP:
An organization with a number of likes and follows.
MICRODATA:
<!-- JSON-LD example only -->
RDFA:
<!-- JSON-LD example only -->
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Organization",
"name": "ACME",
"interactionStatistic": [
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/LikeAction",
"userInteractionCount": 1170
},
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/FollowAction",
"userInteractionCount": 145098
}
]
}
</script>