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:Field | Type | Entity Mapping (EntityTO) | Description | Present by default? | Example - how to filter |
---|---|---|---|---|---|
id | keyword | $.uri (short) | Entity ID | Yes | equals(id,'130xSPbo') |
timestamp | date | $.createdTime | Yes | gt(timestamp,1694167276) | |
type | keyword | $.type.uri (short) | Type of entity object | Yes | equals(type,'configuration/entityTypes/HCP') |
tags | text_multifields | $.tags | No | contains(tags,'ANY_TAG') | |
attributes | object | $.attributes.{attributeName} | Collection of the entity attributes | Yes |
Specific attribute: Search over all attributes: |
attributes_end_date | date | $.crosswalks.deleteDate | Date when entity stops being active | No | gt(attributes_end_date,'1622487600000') |
__location | geo_point | $.type.geoAttributes | No | exists(__location) | |
geoLocation | geo_shape | $.type.geoAttributes | Entity geolocation attribute | No | range(geoLocation,'12.43,64.85','1') |
businessProcessData | object | $.businessProcessData | Collection of attributes related to business processes | No | range(businessProcessData.ANY_ATTR,'15','18') |
consolidatedRating | text | $.consolidatedRating | No | gt(consolidatedRating,'10') | |
label | text | $.label | Entity label | No | contains(label,'ANY_LABEL') |
attribute_count | long | Counter of the entity attributes | Yes | gt(attribute_count, 999) | |
categories | keyword | $.categories | No | equals(categories,'categories/1234') | |
pp | text | $.defaultProfilePic | No | equals(pp,'1') | |
roles | text_multifields | $.roles (short URI) | No | contains(roles,'roles/123456') | |
favoriteFor | text | $.favorite.favoriteMarkers | Yes | in(favoriteFor,'user2,user4') | |
analyticsAttributes | object | $.analyticsAttributes | Collection of the entity analytic attributes | No | equals(analyticsAttributes.IQ.count,'0') |
successfully_cleansed | boolean | $.type.cleanse | No | exists(successfully_cleansed) | |
crosswalk_sources_count | object | counter of $.crosswalks | Counter for the crosswalks associated with an entity | Yes | gt(crosswalk_sources_count,'10') |
crosswalks | object | $.crosswalks.{crosswalkAttributeName} | Collection of the entity crosswalks | Yes | equals(crosswalks.sourceTable,'CTLN.HCP_ADDR') |
createdTime | long | $.createdTime | Entity creation timestamp | Yes | gt(createdTime,'1694167276') |
updatedTime | long | $.updatedTime or $.commitTime | Entity last update timestamp | Yes | lt(createdTime,'1694167276') |
createdBy | text | $.createdBy | Account name of the user who created the entity | No | equals(createdBy,'user1')) |
updatedBy | text | $.updatedBy | Account name of the user who last updated the entity | No | equals(updatedBy,'user2')) |
You can also index crosswalk fields. For more information, see topic Crosswalks fields indexed.