From aba0de6e651d17a6e291e144cb92bdfd04693c69 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Wed, 10 Nov 2021 11:15:18 -0500 Subject: [PATCH] update ownership-by-file-overlap relationship description Signed-off-by: Alex Goodman --- syft/artifact/relationship.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/syft/artifact/relationship.go b/syft/artifact/relationship.go index 5292c7b04..fc381c712 100644 --- a/syft/artifact/relationship.go +++ b/syft/artifact/relationship.go @@ -1,7 +1,9 @@ package artifact const ( - // OwnershipByFileOverlapRelationship indicates that the parent package owns the child package made evident by the set of provided files + // OwnershipByFileOverlapRelationship indicates that the parent package claims ownership of a child package since + // the parent metadata indicates overlap with a location that a cataloger found the child package by. This is + // by definition a package-to-package relationship and is created only after all package cataloging has been completed. OwnershipByFileOverlapRelationship RelationshipType = "ownership-by-file-overlap" )