-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathissue-2192-examples.txt
More file actions
71 lines (52 loc) · 1.59 KB
/
issue-2192-examples.txt
File metadata and controls
71 lines (52 loc) · 1.59 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
TYPES: #eg-0275 Occupation, occupationalCategory
PRE-MARKUP:
<!-- occupationalCategory utilising CategoryCode -->
<!-- JSONLD only example -->
MICRODATA:
<!-- JSONLD only example -->
RDFA:
<!-- JSONLD only example -->
JSON:
<!-- occupationalCategory utilising CategoryCode -->
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Occupation",
"occupationalCategory": {
"@type": "CategoryCode",
"inCodeSet": {
"@type": "CategoryCodeSet",
"name": "O*Net-SOC",
"dateModified": "2019",
"url": "https://www.onetonline.org/"
},
"codeValue": "15-1211.00",
"name": "Computer Systems Analysts",
"url": "https://www.onetonline.org/link/summary/15-1121.00"
}
}
</script>
TYPES: #eg-0276 Person, jobTitle
PRE-MARKUP:
<!-- jobTitle utilising DefinedTerm -->
<!-- JSONLD only example -->
MICRODATA:
<!-- JSONLD only example -->
RDFA:
<!-- JSONLD only example -->
JSON:
<!-- jobTitle utilising DefinedTerm -->
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Person",
"name": "A. N. Other",
"jobTitle": {
"@type": "DefinedTerm",
"inDefinedTermSet": "https://targetjobs.co.uk/careers-advice/job-descriptions",
"termCode": "277133-aid-workerhumanitarian-worker-job-description",
"name": "Aid worker/humanitarian worker",
"url": "https://targetjobs.co.uk/careers-advice/job-descriptions/277133-aid-workerhumanitarian-worker-job-description"
}
}
</script>