JobType enum defines standardized employment types used to filter job searches and categorize results. JobSpy automatically normalizes various job type formats (including international variations) to these standard values.
Enum Values
FULL_TIME
Value: "fulltime"
Full-time permanent positions with standard working hours (typically 35-40 hours per week).
- Most common employment type
- Usually includes benefits packages
- Recognized in 20+ languages (see normalization below)
PART_TIME
Value: "parttime"
Part-time positions with reduced hours compared to full-time.
- Typically less than 35 hours per week
- May have prorated benefits
- Common in retail, hospitality, and flexible roles
CONTRACT
Value: "contract"
Fixed-term contract or project-based positions.
- Defined start and end dates
- Often through staffing agencies or as independent contractors
- May be W2 or 1099 (US) or equivalent in other countries
TEMPORARY
Value: "temporary"
Short-term temporary positions.
- Usually shorter duration than contracts
- Often seasonal or to cover absences
- Common in administrative and industrial roles
INTERNSHIP
Value: "internship"
Internship programs for students or recent graduates.
- Educational or training component
- Can be paid or unpaid
- Often leads to full-time opportunities
PER_DIEM
Value: "perdiem"
Per diem or day-rate positions.
- Payment calculated on a daily basis
- Common in healthcare, education, and consulting
- Flexible scheduling
NIGHTS
Value: "nights"
Night shift or overnight positions.
- Work primarily during nighttime hours
- Often includes shift differential pay
- Common in healthcare, manufacturing, and security
OTHER
Value: "other"
Employment types that don’t fit standard categories.
- Catch-all for miscellaneous arrangements
- May include unique or hybrid models
SUMMER
Value: "summer"
Summer-specific positions.
- Seasonal work during summer months
- Popular for students and seasonal industries
- Often in tourism, camps, and outdoor recreation
VOLUNTEER
Value: "volunteer"
Unpaid volunteer positions.
- No monetary compensation
- Often with non-profits or community organizations
- May offer other benefits (experience, networking)
Usage Examples
Filter by Job Type
String Alternative
Check Job Types in Results
Multiple Job Types in Results
International Normalization
JobSpy automatically normalizes job type strings from various languages and formats using thegetJobTypeFromString() helper function. This ensures consistent categorization across different job boards and regions.
Examples of Normalized Strings
All of these are normalized toJobType.FULL_TIME:
- English:
"fulltime","full time","full-time" - Spanish:
"tiempo completo","jornada completa" - German:
"vollzeit" - French:
"temps plein" - Portuguese:
"tempo integral","período integral" - Chinese:
"全职","全職" - Korean:
"정규직" - Thai:
"งานประจำ" - Turkish:
"tam zamanlı" - Arabic:
"دوام كامل" - Dutch:
"voltijds" - Italian:
"tempo pieno" - And 15+ more languages…
"parttime","part time","part-time""teilzeit"(German)"deltid"(Danish)"částečný úvazek"(Czech)
"internship","intern""prácticas"(Spanish)"praktikum"(German)"praktik"(Swedish)"ojt (on the job training)"
Using the Helper Function
Type Definition
Related
- JobPost - Interface that includes job_type field (as an array)
- ScrapeJobsParams - Parameters for filtering by job_type
- scrapeJobs() - Main function that accepts job_type filter
