From a597d004174aafb5d7d5e87e1753b98e8fd6762f Mon Sep 17 00:00:00 2001 From: SignalEdge <97615419+signaledge@users.noreply.github.com> Date: Fri, 6 Dec 2024 10:57:41 +0100 Subject: [PATCH] bring in all the object improvements --- objects/opentide/definition.json | 97 +++++++++++++++++++------------- 1 file changed, 57 insertions(+), 40 deletions(-) diff --git a/objects/opentide/definition.json b/objects/opentide/definition.json index a136963..81c89bf 100644 --- a/objects/opentide/definition.json +++ b/objects/opentide/definition.json @@ -1,41 +1,58 @@ { - "attributes": { - "name": { - "description": "Name of the OpenTIDE Object", - "misp-attribute": "text", - "ui-priority": 0 - }, - "opentide-object": { - "description": "YAML Content of the Opentide Object", - "misp-attribute": "text", - "ui-priority": 3 - }, - "opentide-type": { - "description": "Type of the OpenTIDE Object", - "disable_correlation": true, - "misp-attribute": "text", - "multiple": false, - "ui-priority": 2, - "values_list": [ - "tvm", - "cdm", - "mdr" - ] - }, - "uuid": { - "description": "UUID of the OpenTIDE Object", - "misp-attribute": "text", - "ui-priority": 1 - } - }, - "description": "Object that is a container for threat or detection data, in accordance with the OpenTIDE Framework (https://code.europa.eu/ec-digit-s2/opentide)", - "meta-category": "misc", - "name": "opentide", - "required": [ - "uuid", - "opentide-object", - "opentide-type" - ], - "uuid": "892fd46a-f69e-455c-8c4f-843a4b8f4295", - "version": 1 -} \ No newline at end of file + "attributes":{ + "name":{ + "description":"Name of the OpenTIDE Object", + "misp-attribute":"text", + "ui-priority":5 + }, + "opentide-object":{ + "description":"YAML Content of the Opentide Object", + "misp-attribute":"text", + "ui-priority":0 + }, + "opentide-type":{ + "description":"Type of the OpenTIDE Object", + "disable_correlation":true, + "misp-attribute":"text", + "multiple":false, + "ui-priority":1, + "values_list":[ + "tvm", + "cdm", + "mdr" + ] + }, + "opentide-relation":{ + "description":"UUID of other OpenTIDE Objects with a relation to this Object", + "misp-attribute":"text", + "multiple":true, + "ui-priority":1 + }, + "uuid":{ + "description":"UUID of the OpenTIDE Object", + "misp-attribute":"text", + "ui-priority":4 + }, + "version":{ + "description":"Version of the OpenTIDE Object", + "disable_correlation":true, + "misp-attribute":"text", + "sane_default":[ + "1" + ], + "ui-priority":3 + } + }, + "description":"Object that is a container for threat or detection data, in accordance with the OpenTIDE Framework (https://code.europa.eu/ec-digit-s2/opentide)", + "meta-category":"misc", + "name":"opentide", + "required":[ + "name", + "uuid", + "version", + "opentide-object", + "opentide-type" + ], + "uuid":"892fd46a-f69e-455c-8c4f-843a4b8f4295", + "version":3 +}