From e1a809ed2c3832e8369381072c23b1933ff667a6 Mon Sep 17 00:00:00 2001 From: Jeroen Pinoy Date: Wed, 3 Nov 2021 22:00:49 +0100 Subject: [PATCH] new: postal address object --- README.md | 1 + objects/postal-address/definition.json | 62 ++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 objects/postal-address/definition.json diff --git a/README.md b/README.md index 41cf793..9877c08 100644 --- a/README.md +++ b/README.md @@ -280,6 +280,7 @@ for a specific attribute. An optional **to_ids** boolean field to disable the ID - [objects/phishing](https://github.com/MISP/misp-objects/blob/main/objects/phishing/definition.json) - Phishing template to describe a phishing website and its analysis. - [objects/phishing-kit](https://github.com/MISP/misp-objects/blob/main/objects/phishing-kit/definition.json) - Object to describe a phishing-kit. - [objects/phone](https://github.com/MISP/misp-objects/blob/main/objects/phone/definition.json) - A phone or mobile phone object which describe a phone. +- [objects/postal-address](https://github.com/MISP/misp-objects/blob/main/objects/postal-address/definition.json) - A postal address. - [objects/process](https://github.com/MISP/misp-objects/blob/main/objects/process/definition.json) - Object describing a system process. - [objects/publication](https://github.com/MISP/misp-objects/blob/main/objects/publication/definition.json) - An object to describe a book, journal, or academic publication. - [objects/python-etvx-event-log](https://github.com/MISP/misp-objects/blob/main/objects/python-etvx-event-log/definition.json) - Event log object template to share information of the activities conducted on a system. . diff --git a/objects/postal-address/definition.json b/objects/postal-address/definition.json new file mode 100644 index 0000000..aa704ee --- /dev/null +++ b/objects/postal-address/definition.json @@ -0,0 +1,62 @@ +{ + "attributes": { + "apartment": { + "description": "Apartment / suite number", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 0 + }, + "city": { + "description": "City or town name", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "country": { + "description": "Country", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "description": { + "description": "Description of the address", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 0 + }, + "number": { + "description": "House number", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "postal-code": { + "description": "ZIP / postal code", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 1 + }, + "province": { + "description": "Province", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 0 + }, + "state": { + "description": "State", + "disable_correlation": true, + "misp-attribute": "text", + "ui-priority": 0 + }, + "street": { + "description": "Street name", + "misp-attribute": "text", + "ui-priority": 1 + } + }, + "description": "A postal address.", + "meta-category": "misc", + "name": "postal-address", + "uuid": "c22cdd17-d38e-42d3-a365-4febdaaaf25e", + "version": 3 +} \ No newline at end of file