From d5f865ac15c49962892dc0eb80c9ae3ea185fbb8 Mon Sep 17 00:00:00 2001 From: Ray Lee Date: Fri, 4 Mar 2022 16:59:30 -0500 Subject: [PATCH] DRYD-1021: Index display name of objectProductionPeople in anthro profile. The objectProductionPeople field on collectionobjects is changed to be authority controlled, so the display name of the refname needs to be indexed. --- .../tenants/anthro/anthro-tenant-bindings.delta.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/services/common/src/main/cspace/config/services/tenants/anthro/anthro-tenant-bindings.delta.xml b/services/common/src/main/cspace/config/services/tenants/anthro/anthro-tenant-bindings.delta.xml index 58685440f..84ec00870 100644 --- a/services/common/src/main/cspace/config/services/tenants/anthro/anthro-tenant-bindings.delta.xml +++ b/services/common/src/main/cspace/config/services/tenants/anthro/anthro-tenant-bindings.delta.xml @@ -186,7 +186,13 @@ "properties": { "objectProductionPeople": { "type": "keyword", - "copy_to": "all_field" + "copy_to": "all_field", + "fields": { + "displayName": { + "type": "keyword", + "normalizer": "refname_displayname_normalizer" + } + } } } }, -- 2.47.3