-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput_schema.json
More file actions
44 lines (43 loc) · 1.24 KB
/
output_schema.json
File metadata and controls
44 lines (43 loc) · 1.24 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
{
"title": "Job Listings Output Schema",
"description": "Defines the structure of the scraped job data.",
"type": "array",
"items": {
"type": "object",
"properties": {
"jobTitle": {
"title": "Job Title",
"type": "string",
"description": "The title of the job posting."
},
"companyName": {
"title": "Company Name",
"type": "string",
"description": "The name of the company."
},
"location": {
"title": "Job Location",
"type": "string",
"description": "The location of the job posting."
},
"postedDate": {
"title": "Posted Date",
"type": "string",
"description": "Date when the job was posted.",
"format": "date-time"
},
"jobUrl": {
"title": "Job URL",
"type": "string",
"description": "Direct link to the job listing.",
"format": "uri"
},
"description": {
"title": "Job Description",
"type": "string",
"description": "The full job description."
}
},
"required": ["jobTitle", "companyName", "location", "postedDate", "jobUrl"]
}
}