From 9b50d2398866d8a674888d40f2cffae1a6d298f4 Mon Sep 17 00:00:00 2001
From: ZMai <zmai@slb.com>
Date: Tue, 26 Sep 2023 10:56:15 -0500
Subject: [PATCH] Update the example in the REMADME file

---
 docs/tutorial/IndexAugmenter.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/tutorial/IndexAugmenter.md b/docs/tutorial/IndexAugmenter.md
index 1fb4eda33..10146f65a 100644
--- a/docs/tutorial/IndexAugmenter.md
+++ b/docs/tutorial/IndexAugmenter.md
@@ -245,7 +245,7 @@ RelationshipDirection `ParentToChildren`, i.e., related objects referring the in
 
 -Use Case 5: Entity Names on the Document
 
-_When a document is ingested, it can associate with one or more than parent entities. As a user I want to discover
+_When a document is ingested, it can associate with one or more parent entities. As a user I want to discover
 all the related instances, including the documents, by the entity's name value._
 
 This configuration demonstrates how to extend properties from parent entities into document record when the kind(s) of
@@ -265,10 +265,10 @@ the parent entities are not well-defined in the document schema.
           {
             "RelatedObjectsSpec": {
               "RelationshipDirection": "ChildToParent",
-              "RelatedObjectID": "data.ExtensionProperties.Relationships[].TargetID",
+              "RelatedObjectID": "data.LineageAssertions[].ID",
               "RelatedObjectKind": "osdu:wks:master-data--Wellbore:1.",
               "RelatedConditionMatches": [ "^[\\w\\-\\.]+:master-data\\-\\-Wellbore:[\\w\\-\\.\\:\\%]+$" ],
-              "RelatedConditionProperty": "data.ExtensionProperties.Relationships[].TargetID"
+              "RelatedConditionProperty": "data.LineageAssertions[].ID"
             },
             "ValueExtraction": {
               "ValuePath": "data.FacilityName"
@@ -277,10 +277,10 @@ the parent entities are not well-defined in the document schema.
           {
             "RelatedObjectsSpec": {
               "RelationshipDirection": "ChildToParent",
-              "RelatedObjectID": "data.ExtensionProperties.Relationships[].TargetID",
+              "RelatedObjectID": "data.LineageAssertions[].ID",
               "RelatedObjectKind": "osdu:wks:master-data--SeismicAcquisitionSurvey:1.",
               "RelatedConditionMatches": [ "^[\\w\\-\\.]+:master-data\\-\\-SeismicAcquisitionSurvey:[\\w\\-\\.\\:\\%]+$" ],
-              "RelatedConditionProperty": "data.ExtensionProperties.Relationships[].TargetID"
+              "RelatedConditionProperty": "data.LineageAssertions[].ID"
             },
             "ValueExtraction": {
               "ValuePath": "data.ProjectName"
-- 
GitLab