Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.47 KB

filters.md

File metadata and controls

58 lines (40 loc) · 1.47 KB

Filters

The following filters can be added to your configuration file to filter records from the source before they are imported into Senzing. Filters are run before transformations, but after the field map has been applied.

NonHuman

This filter will attempt to remove entities. that are non-human, such as corporations or other organizations. The filter searches for keywords within different part of the entity's name.

These keywords can be found in non_human.yml.

Configuration

This filter has no configuration options.

Example

  - filter: NonHuman 

Alternatively, since there are no configuration options, you can use the short form:

  - NonHuman

ValueIs

This filter will compare a field's value with a static value and can be used to include a record if the value does or does not match.

Configuration

The following options are available for this filter.

Option Default Required Description
field YES The field to be evaluated.
value YES Static value for comparison.
inverse false NO Set to true for a not equals comparison.

Example

- filter: ValueIs
  field: TYPE
  value: DEF
  inverse: false