From 0d23d2ca63fef75862c39f1d93e04b41d4bbc1b6 Mon Sep 17 00:00:00 2001 From: Jesse Jia Date: Fri, 13 Oct 2023 10:05:22 -0700 Subject: [PATCH] Add relationship to backfill result (#301) Co-authored-by: Jesse Jia --- .../metadata/restli/BackfillResult.pdl | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/restli-resources/src/main/pegasus/com/linkedin/metadata/restli/BackfillResult.pdl b/restli-resources/src/main/pegasus/com/linkedin/metadata/restli/BackfillResult.pdl index 50b90fe82..3fe7cc339 100644 --- a/restli-resources/src/main/pegasus/com/linkedin/metadata/restli/BackfillResult.pdl +++ b/restli-resources/src/main/pegasus/com/linkedin/metadata/restli/BackfillResult.pdl @@ -20,4 +20,29 @@ record BackfillResult { */ aspects: array[string] }] + + /** + * List of relationships backfilled + */ + relationships: optional array[record BackfillResultRelationship { + /** + * Urn of the source entity + */ + source: Urn + + /** + * Urn of the destination entity + */ + destination: Urn + + /** + * Relationship between source and destination, e.g. downstream of. + */ + relationship: string + + /** + * Remove option used to process the relationship + */ + removalOption: string + }] } \ No newline at end of file