Entity fields indexed for Elastic search
Learn more about the fields related to entities that were indexed for Elastic Search.
Let's take a look at a list of fields that are indexed for entities and entity crosswalks.
The following table lists all the entity fields that are indexed for Elastic Search: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 | equals(cassandraVersion,123456)
|
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')
|
label | text | No | contains(label,'ANY_LABEL')
|
attribute_count | long | Yes | gt(attribute_count, 999)
|
categories | keyword | No | equals(categories,'categories/1234')
|
pp | text | No | equals(pp,'1')
|
roles | text_multifields | Yes | in(favoriteFor,'user2,user4')
|
analyticsAttributes | object | No | equals(analyticsAttributes.IQ.count,'0')
|
successfully_cleansed | boolean | No | exists(successfully_cleansed)
|
crosswalk_sources_count | object | Yes | gt(crosswalk_sources_count,'10')
|
crosswalks | object | Yes | equals(crosswalks.sourceTable,'CTLN.HCP_ADDR')
|
createdTime | long | Yes | gt(createdTime,'1694167276')
|
updatedTime | long | Yes | lt(createdTime,'1694167276')
|
createdBy | text | No | equals(createdBy,'user1'))
|
updatedBy | text | No | equals(updatedBy,'user2'))
|
You can also index crosswalk fields. For more information, see topic Crosswalks fields indexed.