Unify and manage your data

Activity items indexed for Elastic search

Learn more about the fields indexed for Elastic search.

Let's take a look at a list of fields that are indexed for activity items, which are listed in the following table:

FieldTypeEntity Mapping (ActivityItemTO)DescriptionAvailable by default?Example - how to filter
urlkeyword$.urlURL of the REST API request associated with the activityNoequals(items.url,'/entities/{id}/_update')
itemObjectUrikeyword$.objectUri.uriObject URINoequals(items.itemObjectUri, 'entities/123')
startObjectUrikeyword$.startObjectUri.uriStart object URI (for relations)Noequals(items.startObjectUri, 'entities/123')
endObjectUrikeyword$.endObjectUri.uriEnd object URI (for relations)Noequals(items.endObjectUri, 'entities/123')
eventTypekeyword$.data["type"]Event typeNoequals(items.data.type,'ENTITY_CHANGED')
methodkeyword$.methodREST API request methodNoequals(items.method,'GET')
objectTypekeyword$.objectTypeObject typeNoequals(objectType, 'configuration/relationTypes/HasAddress')
timestampdate$.timestampTime when the activity occurredYesequals(items.timestamp,'1694170152327')
delta.attributeTypetext_multifields (list)$.deltaCollection[x].typeAttribute typeNostartsWith(items.delta.attributeType, 'configuration/entityTypes/HCP')
delta.oldValuetext_multifields (list)$.deltaCollection[x].oldValueOld attribute valueNoequalsCaseSensitive(items.delta.oldValue, 'valueOld')
delta.newValuetext_multifields (list)$.deltaCollection[x].newValueNew attribute valueNoequalsCaseSensitive(items.delta.newValue, 'valueNew')
delta.sourcestext_multifields (list)$.deltaCollection[x].newValue.sources + $.deltaCollection[x].oldValue.sourcesNocontains(items.delta.sources, 'Reltio')