-
Notifications
You must be signed in to change notification settings - Fork 915
Expand file tree
/
Copy pathissue-2396-examples.txt
More file actions
91 lines (62 loc) · 1.64 KB
/
issue-2396-examples.txt
File metadata and controls
91 lines (62 loc) · 1.64 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
TYPES: #eg-0285 applicationContact
PRE-MARKUP:
Job title: Systems Research Engineer
Questions? Email info@example.com
MICRODATA:
to do
RDFA:
to do
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "JobPosting",
"title": "Systems Research Engineer",
"applicationContact": {
"@type": "ContactPoint",
"email": "info@example.com"
}
}
</script>
TYPES: #eg-0286 employerOverview
PRE-MARKUP:
Job Title "Systems Research Engineer" at Acme.
Acme is committed to providing an environment where the most
creative people want to work. We are committed to creating a
diverse environment and are proud to be an equal opportunity
employer.
MICRODATA:
to do
RDFA:
to do
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "JobPosting",
"title": "Systems Research Engineer",
"employerOverview": "Acme is committed to providing an environment where the most creative people want to work. We are committed to creating a diverse environment and are proud to be an equal opportunity employer."
}
</script>
TYPES: #eg-0287 industry, DefinedTerm
PRE-MARKUP:
Systems Research Engineer at a Software Publishers (NAICS code 511210)
MICRODATA:
to do
RDFA:
to do
JSON:
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "JobPosting",
"title": "Systems Research Engineer",
"industry": {
"@type": "DefinedTerm",
"termCode": "511210",
"name": "Software Publishers",
"url": "https://www.naics.com/naics-code-description/?code=511210",
"inDefinedTermSet": "NAICS (North American Industry Classification System)"
}
}
</script>