-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathissue-1698-examples.txt
More file actions
158 lines (122 loc) · 2.93 KB
/
issue-1698-examples.txt
File metadata and controls
158 lines (122 loc) · 2.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
TYPES: #eg-0249 Person, Occupation
PRE-MARKUP:
See JSON example.
MICRODATA:
TODO
RDFA:
TODO
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Peter Venkman",
"hasOccupation": {
"@type": "Occupation",
"name": "Parapsychologist",
"educationRequirements": "PhD in parapsychology"
}
}
</script>
TYPES: #eg-0250 Person, Occupation, Role, occupationalCategory
PRE-MARKUP:
See JSON example.
MICRODATA:
TODO
RDFA:
TODO
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "Albert Einstein",
"hasOccupation": [
{
"@type": "Role",
"hasOccupation": {
"@type": "Occupation",
"name": "Patent examiner",
"occupationalCategory": "23-2099.00"
},
"startDate": "1901",
"endDate": "1906"
},
{
"@type": "Occupation",
"name": "Professor of Physics",
"educationRequirements": "PhD in Physics"
}
]
}
</script>
TYPES: #eg-0251 JobPosting, Occupation, occupationalCategory
PRE-MARKUP:
See JSON example.
MICRODATA:
TODO
RDFA:
TODO
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "JobPosting",
"name": "Mobile App Developer",
"hiringOrganization": {
"@type": "Organization",
"name": "ACME Software"
},
"relevantOccupation": {
"@type": "Occupation",
"name": "Software Developers, Applications",
"occupationalCategory": {
"@type": "CategoryCode",
"inCodeSet": {
"@type": "CategoryCodeSet",
"name": "O*Net-SOC",
"dateModified": "2019",
"url": "https://www.onetonline.org/"
},
"codeValue": "15-1132.00",
"name": "Software Developers, Applications",
"url": "https://www.onetonline.org/link/summary/15-1132.00"
}
}
}
</script>
TYPES: #eg-0252 Occupation, MonetaryAmountDistribution
PRE-MARKUP:
See JSON example.
MICRODATA:
TODO
RDFA:
TODO
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Occupation",
"name": "Nurse Practioner",
"educationRequirements": "Graduate degree in nursing",
"occupationalCategory": "29-1171.00",
"occupationLocation": {
"@type": "Country",
"name": "USA",
"sameAs": "https://www.wikidata.org/wiki/Q30"
},
"qualifications": "Registered nurse licensure in state where practicing",
"responsibilities": "Diagnose and treat acute, episodic, or chronic illness, independently or as part of a healthcare team.",
"skills": ["Active listening", "Critical thinking", "Social awareness"],
"estimatedSalary": {
"@type": "MonetaryAmountDistribution",
"duration": "1Y",
"currency": "USD",
"percentile10": 72000,
"percentile25": 86000,
"median": 109000,
"percentile75": 120000,
"percentile90": 140000
}
}
</script>