/vacancies/{vid}/matching_employees
, then the source entity is the Vacancy
with external_id vid
, while the target entities consist of all Employees
together.
custom_property
filter is one of the base building blocks for filtering in
Skill Engine API. It filters the target entities using a value you provide
inside the filter itself, and supports equality as well as a range of greater
than / less than varieties. To know if you’ve applied the filter in the right
direction, it’s good to phrase it as: “I want to receive all entities that have
a property_name
that is operator
to/than property_value
”. For example, the
filter below results in all entities that have a wage
Custom Property above
3000
.
company__
before
the actual property name to apply the filter on the Custom Properties of the
external company linked to the Vacancy, rather than on the Custom Properties of
the Vacancies itself. For example if you only want the Vacancies linked to
external Companies that allow telework, the filter would like this:
vacancy__
can be used
before the actual value of property_name
to apply the filtering to the Custom
Properties associated to the Vacancies linked to the external Companies instead
the external Companies itself.
custom_property_contains_element
can be applied to list[text]
type
Custom Properties, and selects those entities for which the Custom Property
value contains the supplied property_value
. For example, the filter below
could be used in a situation where Employees indicate the industries they want
to work in — in that case, the filter selects only the Employees that want to
work in electronics
.
electronics
, chemicals
or both.
company__
before
the actual property name to apply the filter on the Custom Properties of the
external company linked to the Vacancy, rather than on the Custom Properties of
the Vacancies itself. For the example above this would become
company__industries
.
When looking for matching external companies, the prefix vacancy__
can be used
before the actual value of property_name
to apply the filtering to the Custom
Properties associated to the Vacancies linked to the external Companies instead
the external Companies itself.
custom_property_is_in_list
filter selects entities for which (non-list) Custom
Property property_name
is contained in the passed list of possible_values
.
For example, if you’re looking for an Employee that wants to work either full
time or part time, you might submit a filter similar to the one below:
company__
before
the actual property name to apply the filter on the Custom Properties of the
external company linked to the Vacancy, rather than on the Custom Properties of
the Vacancies itself. For the example above this would become
company__possible_work_regimes
.
When looking for matching external companies, the prefix vacancy__
can be used
before the actual value of property_name
to apply the filtering to the Custom
Properties associated to the Vacancies linked to the external Companies instead
the external Companies itself.
location
set, this filter will not have any effect. If the source
entity does have a location, then target entities without a location will not be
considered. If no geo distance filter is provided, Employee/Vacancy matching
defaults to a range of 50km.
language
filter allows you to determine how language requirements are
handled when matching between Employees and Vacancies. As each language
indicated on either of these entity types also has a level, you can tune the
strictness of this filter by modifying max_underqualification
and
max_overqualification
. These respective values indicate how many levels below
or above the languages in the source entity those in the target entities are
allowed to be. Checking is only done for languages present in the source entity,
so in case of an empty languages
attribute on the source side, this filter
will not have any effect. If max_underqualification
is equal or greater than
the level of one or more languages for the source entity, target entities that
do not mention this language will also be considered valid combinations with it.
custom_property_equal
filter simply checks for equality between properties
on the source and target entities. By providing the name of the property to be
used on the source side as from_entity_property
and the one on the target side
as to_entity_property
, you can flexibly choose which Custom Properties to use.
from_entity
or as
to_entity
, you can use the prefix company__
before the actual value of
from_entity_property
or to_entity_property
to apply the filtering on the
Custom Properties of the external company linked to the Vacancy rather than the
Vacancy itself.
When the filtering is applied to external Companies as to_entity
, the prefix
vacancy__
can be used before the actual value of to_entity_property
to apply
the filtering to the Custom Properties associated to the Vacancies linked to the
external Companies instead the external Companies itself.
custom_property_contains
filter is very similar to the
custom_property_equal
filter, but instead works with a list[text]
and text
property, checking whether one contains the other. Specifically, this filter
selects the target entities for which the value of to_entity_property
is a
part of the from_entity_property
(which must be a list type) of the source
entity. The example below reflects the scenario where an Employee might indicate
in which countries they want to work, so that only Vacancies in one of these
countries can be returned. If the Custom Property is not set for the source
entity, the filter has no effect. If the target entities lack the
to_entity_property
, they are ignored.
from_entity
or as
to_entity
, you can use the prefix company__
before the actual value of
from_entity_property
or to_entity_property
to apply the filtering on the
Custom Properties of the external company linked to the Vacancy rather than the
Vacancy itself.
When the filtering is applied to external Companies as to_entity
, the prefix
vacancy__
can be used before the actual value of to_entity_property
to apply
the filtering to the Custom Properties associated to the Vacancies linked to the
external Companies instead the external Companies itself.
custom_property_is_in
filter is the mirror image of the
custom_property_contains
filter. If you apply one type in fetching Vacancies
for a given Employee, then you can transform it into the other to have the
equivalent constraint while fetching Employees for a given Vacancy. The example
below reflects the transformed version of the example given for the contains
filter above.
from_entity
or as
to_entity
, you can use the prefix company__
before the actual value of
from_entity_property
or to_entity_property
to apply the filtering on the
Custom Properties of the external company linked to the Vacancy rather than the
Vacancy itself.
When the filtering is applied to external Companies as to_entity
, the prefix
vacancy__
can be used before the actual value of to_entity_property
to apply
the filtering to the Custom Properties associated to the Vacancies linked to the
external Companies instead of the external Companies themselves.
custom_property_list_overlap
filter checks for overlap between two
list[text]
Custom Properties. Specifically, this filter selects the target
entities for which at least one of the values in to_entity_property
(which
must be a list type) is contained in from_entity_property
of the source
entity. The example below shows a scenario in which an Employee might indicate
in which industries they want to be involved, such that only Vacancies that are
linked to one of these industries will be returned. If the Custom Property is
not set for the source entity, the filter has no effect. Target entities that
lack the to_entity_property
property are excluded.
from_entity
or as
to_entity
, you can use the prefix company__
before the actual value of
from_entity_property
or to_entity_property
to apply the filtering on the
Custom Properties of the External Company linked to the Vacancy rather than the
Vacancy itself.
When the filtering is applied to External Companies as to_entity
, the prefix
vacancy__
can be used before the actual value of to_entity_property
to apply
the filtering to the Custom Properties associated to the Vacancies linked to the
External Companies instead the External Companies themselves.
last_updated
filter allows you to filter the target entities based on
last_updated
property. The filter supports a range of greater than / less than
varieties.
last_updated_with_taxonomy_change
filter checks if a Taxonomy change took
place within the constraints of the filter. If that it the case, all target
entities are returned, as all can be affected by a Taxonomy change. If no
Taxonomy change took place, the filter operates like a last_updated
filter.