Interaction fields indexed for Elastic search
Learn more about the fields that are indexed for Elastic search.
Let's take a look at a list of fields that are indexed for interactions. The following table lists these fields:
Filter field | Type | Present by default? | Example - how to filter |
---|---|---|---|
id | keyword | Yes | equals(id,'entities/130xSPbo') |
timestamp | date | Yes | gt(timestamp,1694167276) |
type | keyword | Yes | equals(type,'configuration/entityTypes/HCP') |
tags | text_multifields | No | contains(tags,'ANY_TAG') |
attributes | object | Yes | Specific attribute:startsWith(attributes.FirstName,'YO') Search over all attributes: |
activity_start | long | Yes | equals(activity_start,'1622487600000') |
activity_end | long | No | equals(activity_end,'1622487600000') |
attributes_end_date | date | No | gt(attributes_end_date,'1622487600000') |
__location | geo_point | No | range(__location,'12.43,64.85','1') |
geoLocation | geo_shape | No | range(geoLocation,'12.43,64.85','1') |
businessProcessData | object | No | range(businessProcessData.ANY_ATTR,'15','18') |
consolidatedRating | text | No | gt(consolidatedRating,'10') |
members.types | text_multifields | Yes | contains(members.types,'Employee') |
members._all.id.value | text_multifields | Yes | equals(members.Organization.id,'7fpyW4p') |