-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput_schema.json
More file actions
62 lines (62 loc) · 1.77 KB
/
input_schema.json
File metadata and controls
62 lines (62 loc) · 1.77 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
{
"title": "Job Scraper Input Schema",
"description": "Define input parameters for the job scraping actor",
"type": "object",
"schemaVersion": 1,
"properties": {
"countryName": {
"title": "Country",
"type": "string",
"description": "Select the country for job search.",
"default": "",
"editor": "textfield"
},
"companyName": {
"title": "Company Name",
"type": "string",
"description": "Enter the company name to filter job listings.",
"default": "",
"editor": "textfield"
},
"locationName": {
"title": "Location Name",
"type": "string",
"description": "Enter the city or region.",
"default": "",
"editor": "textfield"
},
"includeKeyword": {
"title": "Keywords to Include",
"type": "string",
"description": "Comma-separated keywords (e.g., React, Next.js).",
"default": "",
"editor": "textarea"
},
"pagesToFetch": {
"title": "Pages to Fetch",
"type": "integer",
"description": "Number of pages to scrape.",
"default": 1,
"minimum": 1,
"editor": "number"
},
"jobType": {
"title": "Job Type",
"type": "string",
"description": "Select job type.",
"enum": ["FULLTIME", "PARTTIME", "CONTRACTOR", "INTERN"],
"enumTitles": ["Full-time", "Part-time", "Contract", "Internship"],
"editor": "select"
},
"datePosted": {
"title": "Posted in the last",
"type": "string",
"description": "Choose time range.",
"enum": ["all", "today", "3days", "week", "month"],
"enumTitles": ["All", "Today", "3 days", "Week", "Month"],
"default": "all",
"editor": "select"
}
},
"required": ["countryName", "locationName", "pagesToFetch"]
}