From 51e131dbc71ef5e1ecec1870c5b19f14eef02b8e Mon Sep 17 00:00:00 2001 From: Delta-Sierra Date: Fri, 16 Feb 2024 15:33:40 +0100 Subject: [PATCH 1/2] add relationships defs (acquisition and alliance) --- relationships/definition.json | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/relationships/definition.json b/relationships/definition.json index f128a07..0d9fadd 100644 --- a/relationships/definition.json +++ b/relationships/definition.json @@ -1725,7 +1725,30 @@ "stix-2.1" ], "name": "sample-of" + }, + { + "description": "This relationship describes an object which is allied with another object.", + "format": [ + "misp" + ], + "name": "is-allied-with " + }, + { + "description": "The source object acquires the target object.", + "format": [ + "misp" + ], + "name": "acquires", + "opposite": "is-acquired" + }, + { + "description": "The source object is acquired by the target object.", + "format": [ + "misp" + ], + "name": "is-acquired-by", + "opposite": "acquires" } ], - "version": 40 + "version": 41 } \ No newline at end of file From c978e829c572151b46fa52499b7a6b20aa4d604e Mon Sep 17 00:00:00 2001 From: Delta-Sierra Date: Fri, 16 Feb 2024 16:05:28 +0100 Subject: [PATCH 2/2] fix opposite --- relationships/definition.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relationships/definition.json b/relationships/definition.json index 0d9fadd..396a626 100644 --- a/relationships/definition.json +++ b/relationships/definition.json @@ -1739,7 +1739,7 @@ "misp" ], "name": "acquires", - "opposite": "is-acquired" + "opposite": "is-acquired-by" }, { "description": "The source object is acquired by the target object.", @@ -1751,4 +1751,4 @@ } ], "version": 41 -} \ No newline at end of file +}