From 27a568d1ce5d7b952ea0f067c094c59d7d058f48 Mon Sep 17 00:00:00 2001 From: Christian Studer Date: Thu, 14 Sep 2023 15:40:18 +0200 Subject: [PATCH] add: [relationships] Added a few relationship types & opposites --- relationships/definition.json | 40 +++++++++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/relationships/definition.json b/relationships/definition.json index bc228c1..10a6378 100644 --- a/relationships/definition.json +++ b/relationships/definition.json @@ -17,7 +17,8 @@ "format": [ "misp" ], - "name": "executes" + "name": "executes", + "opposite": "executed-by" }, { "description": "The referenced source and target objects are semantically duplicates of each other.", @@ -219,7 +220,17 @@ "misp", "stix-2.0" ], - "name": "indicates" + "name": "indicates", + "opposite": "indicated-by" + }, + { + "description": "This relationship describes that the source object is indicated by the target object.", + "format": [ + "misp", + "stix-2.1" + ], + "name": "indicated-by", + "opposite": "indicates" }, { "description": "This relationship describes that the source object mentions the target object.", @@ -332,15 +343,25 @@ "format": [ "misp" ], - "name": "executed-by" + "name": "executed-by", + "opposite": "executes" }, { - "description": "This relationship describes an object affected by another object.", + "description": "This relationship describes an object that affects another object.", "format": [ "misp", "alfred" ], - "name": "affects" + "name": "affects", + "opposite": "affected-by" + }, + { + "description": "This relationship describes an object affected by another object.", + "format": [ + "misp" + ], + "name": "affected-by", + "opposite": "affects" }, { "description": "This relationship describes an object beaconing to another object.", @@ -1697,7 +1718,14 @@ ], "name": "created-by", "opposite": "creates" + }, + { + "description": "The source object is the sample of the target object.", + "format": [ + "stix-2.1" + ], + "name": "sample-of" } ], "version": 40 -} \ No newline at end of file +}