-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollectionPage
48 lines (48 loc) · 1.42 KB
/
CollectionPage
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
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "Find Jobs - SmartRecruitments",
"url": "https://www.smartrecruitments.com/find-jobs",
"description": "Explore all available job openings at SmartRecruitments. Find the perfect job that matches your skills and career goals.",
"mainEntity": [
{
"@type": "jobPosting",
"title": "Registered Nurse",
"description": "Seeking a registered nurse to join our healthcare client's team...",
"datePosted": "2024-11-06",
"employmentType": "Full-time",
"hiringOrganization": {
"@type": "Organization",
"name": "SmartRecruitments"
},
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Lisbon",
"addressCountry": "PT"
}
}
},
{
"@type": "jobPosting",
"title": "Healthcare Assistant",
"description": "Join our client's healthcare team as a healthcare assistant...",
"datePosted": "2024-11-06",
"employmentType": "Part-time",
"hiringOrganization": {
"@type": "Organization",
"name": "SmartRecruitments"
},
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Porto",
"addressCountry": "PT"
}
}
}
// Add more job postings here as needed
]
}