From 573873db3b19e7086b8541a0341743a9fa5800cc Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Mon, 5 Feb 2018 17:20:39 +0100 Subject: [PATCH] First version of the legal-entity object --- objects/legal-entity/definition.json | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 objects/legal-entity/definition.json diff --git a/objects/legal-entity/definition.json b/objects/legal-entity/definition.json new file mode 100644 index 0000000..ae37089 --- /dev/null +++ b/objects/legal-entity/definition.json @@ -0,0 +1,38 @@ +{ + "requiredOneOf": [ + "name" + ], + "attributes": { + "text": { + "description": "A description of the entity.", + "disable-correlation": "true", + "ui-priority": 1, + "misp-attribute": "text" + }, + "name": { + "description": "Name of an entity.", + "ui-priority": 0, + "misp-attribute": "text" + }, + "commercial-name": { + "description": "Commercial name of an entity.", + "ui-priority": 0, + "misp-attribute": "text" + }, + "legal-form": { + "description": "Legal form of an entity.", + "ui-priority": 0, + "misp-attribute": "text" + }, + "business": { + "description": "Business area of an entity", + "ui-priority": 0, + "misp-attribute": "text" + } + }, + "version": 1, + "description": "An object to describe a legal entity.", + "meta-category": "misc", + "uuid": "", + "name": "legal-entity" +}