-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSON-LD Script
41 lines (41 loc) · 1.2 KB
/
JSON-LD Script
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
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "JobPosting",
"title": {{title | json}},
"description": {{description | json}},
"datePosted": {{datePosted | json}},
"validThrough": {{validThrough | json}},
"applicantLocationRequirements": {
"@type": "Country",
"name": {{applicantLocationRequirements | json}}
},
"jobLocationType": {{jobLocationType | json}},
"employmentType": {{employmentType | json}},
"hiringOrganization": {
"@type": "Organization",
"name": "SmartRecruitments",
"sameAs": "https://www.smart-recruitments.com",
"logo": "https://framerusercontent.com/images/Z4KcBNbbNCdww7assUcUlcOHMz4.png?scale-down-to=512"
},
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": {{City | json}},
"addressRegion": {{StateProvince | json}},
"addressCountry": {{Country | json}},
"postalCode": {{postalCode | json}}
}
},
"baseSalary": {
"@type": "MonetaryAmount",
"currency": {{baseSalaryCurrency | json}},
"value": {
"@type": "QuantitativeValue",
"value": {{baseSalary | json}},
"unitText": "MONTH"
}
}
}
</script>