Job filtering language
How to filter jobs using the Clinch Talent Job filtering language
Equality
// match all jobs where the title is "Technical Supervisor"
title = "Technical Supervisor"
// match all jobs where the title is not "Technical Supervisor"
title != "Technical Supervisor"
Like
// match all jobs where the title contains the phrase "Technical Supervisor"
title ~ "Technical Supervisor"
// match all jobs where the title does not contain the phrase "Technical Supervisor"
title !~ "Technical Supervisor"
In
// match all jobs where the title equals any of the items in the list
title ^ ["Technical Supervisor", "Supervising Technician", "Senior Supervising Technician"]
// match all jobs where the title is not equal to any of the items in the list
title !^ ["Technical Supervisor", "Supervising Technician", "Senior Supervising Technician"]
OR
// match all jobs where the state equals "Texas" or the city equals "Los Angeles"
state = "Texas" or city = "Los Angeles"
AND
// match all jobs where the state equals "Ohio" and the city equals "Columbus"
state = "Ohio" and city = "Columbus"
Searchable Fields
- title
- city
- state
- country
- country_code
- department
- category
// examples
city = "Dublin"
state = "Ohio"
country = "United States"
country_code = "US"
department = "Engineering"
category = "Technical"