From 0b971906ad76455b10a07f82027b03ddbff89ce5 Mon Sep 17 00:00:00 2001 From: samitainio <5585477+samitainio@users.noreply.github.com> Date: Sun, 9 Jun 2024 22:30:04 +0300 Subject: [PATCH] Add: phone-number object --- objects/phone-number/definition.json | 72 ++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 objects/phone-number/definition.json diff --git a/objects/phone-number/definition.json b/objects/phone-number/definition.json new file mode 100644 index 0000000..c740790 --- /dev/null +++ b/objects/phone-number/definition.json @@ -0,0 +1,72 @@ +{ + "attributes": { + "country-code": { + "category": "Person", + "description": "Country code in text format (e.g., US)", + "disable_correlation": true, + "misp-attribute": "text", + "multiple": false, + "object_relation": "country-code", + "to_ids": false, + "ui-priority": 1 + }, + "country-code-numeric": { + "category": "Person", + "description": "Country code as per the E.164 numbering plan (e.g., +1)", + "disable_correlation": true, + "misp-attribute": "text", + "multiple": false, + "object_relation": "country-code-numeric", + "to_ids": false, + "ui-priority": 1 + }, + "national-destination-code": { + "category": "Person", + "description": "National destination code as per the E.164 numbering plan (e.g., 415)", + "disable_correlation": true, + "misp-attribute": "text", + "multiple": false, + "object_relation": "national-destination-code", + "to_ids": false, + "ui-priority": 0 + }, + "phone-number": { + "category": "Person", + "description": "Phone number in E.164 format (e.g., +14155552671)", + "disable_correlation": false, + "misp-attribute": "phone-number", + "multiple": false, + "object_relation": "phone-number", + "to_ids": false, + "ui-priority": 3 + }, + "subscriber-number": { + "category": "Person", + "description": "Subscriber number as per the E.164 numbering plan (e.g., 5552671)", + "disable_correlation": true, + "misp-attribute": "text", + "multiple": false, + "object_relation": "subscriber-number", + "to_ids": false, + "ui-priority": 0 + }, + "text": { + "category": "Person", + "description": "Description or additional information about the phone number.", + "disable_correlation": true, + "misp-attribute": "text", + "multiple": false, + "object_relation": "text", + "to_ids": false, + "ui-priority": 2 + } + }, + "description": "Phone number based on the E.164 international public telecommunication numbering plan", + "meta-category": "mobile", + "name": "phone-number", + "required": [ + "phone-number" + ], + "uuid": "c4b5a67c-63d2-11ec-90d6-0242ac120003", + "version": 1 +} \ No newline at end of file