Unify and manage your data

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:
FieldTypeEntity Mapping (EntityTO)DescriptionPresent by default?Example - how to filter
idkeyword$.uri (short)Entity IDYesequals(id,'130xSPbo')
timestampdate$.createdTimeYesgt(timestamp,1694167276)
typekeyword$.type.uri (short)Type of entity objectYesequals(type,'configuration/entityTypes/HCP')
tagstext_multifields$.tagsNocontains(tags,'ANY_TAG')
attributesobject$.attributes.{attributeName}Collection of the entity attributesYes

Specific attribute: startsWith(attributes.FirstName,'YO')

Search over all attributes: equals(attributes,'CLOSED')

attributes_end_datedate$.crosswalks.deleteDateDate when entity stops being activeNogt(attributes_end_date,'1622487600000')
__locationgeo_point$.type.geoAttributesNoexists(__location)
geoLocationgeo_shape$.type.geoAttributesEntity geolocation attributeNorange(geoLocation,'12.43,64.85','1')
businessProcessDataobject$.businessProcessDataCollection of attributes related to business processesNorange(businessProcessData.ANY_ATTR,'15','18')
consolidatedRatingtext$.consolidatedRatingNogt(consolidatedRating,'10')
labeltext$.labelEntity labelNocontains(label,'ANY_LABEL')
attribute_countlongCounter of the entity attributesYesgt(attribute_count, 999)
categorieskeyword$.categoriesNoequals(categories,'categories/1234')
pptext$.defaultProfilePicNoequals(pp,'1')
rolestext_multifields$.roles (short URI)Nocontains(roles,'roles/123456')
favoriteFortext$.favorite.favoriteMarkersYesin(favoriteFor,'user2,user4')
analyticsAttributesobject$.analyticsAttributesCollection of the entity analytic attributesNoequals(analyticsAttributes.IQ.count,'0')
successfully_cleansedboolean$.type.cleanseNoexists(successfully_cleansed)
crosswalk_sources_countobjectcounter of $.crosswalksCounter for the crosswalks associated with an entityYesgt(crosswalk_sources_count,'10')
crosswalksobject$.crosswalks.{crosswalkAttributeName}Collection of the entity crosswalksYesequals(crosswalks.sourceTable,'CTLN.HCP_ADDR')
createdTimelong$.createdTimeEntity creation timestampYesgt(createdTime,'1694167276')
updatedTimelong$.updatedTime or $.commitTimeEntity last update timestampYeslt(createdTime,'1694167276')
createdBytext$.createdByAccount name of the user who created the entityNoequals(createdBy,'user1'))
updatedBytext$.updatedByAccount name of the user who last updated the entityNoequals(updatedBy,'user2'))

You can also index crosswalk fields. For more information, see topic Crosswalks fields indexed.