misp-objects/objects/geolocation/definition.json

106 lines
3.1 KiB
JSON

{
"requiredOneOf": [
"latitude",
"longitude",
"city",
"region",
"country",
"epsg"
],
"attributes": {
"first-seen": {
"description": "When the location was seen for the first time.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"last-seen": {
"description": "When the location was seen for the last time.",
"disable_correlation": true,
"ui-priority": 0,
"misp-attribute": "datetime"
},
"text": {
"description": "A generic description of the location.",
"disable_correlation": true,
"ui-priority": 1,
"misp-attribute": "text"
},
"latitude": {
"description": "The latitude is the decimal value of the latitude in the World Geodetic System 84 (WGS84) reference.",
"disable_correlation": true,
"ui-priority": 90,
"misp-attribute": "float"
},
"longitude": {
"description": "The longitude is the decimal value of the longitude in the World Geodetic System 84 (WGS84) reference",
"disable_correlation": true,
"ui-priority": 89,
"misp-attribute": "float"
},
"altitude": {
"description": "The altitude is the decimal value of the altitude in the World Geodetic System 84 (WGS84) reference.",
"ui-priority": 0,
"misp-attribute": "float",
"disable_correlation": true
},
"address": {
"description": "Address.",
"misp-attribute": "text",
"ui-priority": 1
},
"neighborhood": {
"description": "Neighborhood.",
"misp-attribute": "text",
"ui-priority": 1
},
"zipcode": {
"description": "Zip Code.",
"misp-attribute": "text",
"ui-priority": 1
},
"city": {
"description": "City.",
"misp-attribute": "text",
"ui-priority": 1
},
"region": {
"description": "Region.",
"misp-attribute": "text",
"ui-priority": 1
},
"accuracy-radius": {
"description": "The approximate accuracy radius, in kilometers, around the latitude and longitude for the geographical entity (country, subdivision, city or postal code) associated with the related object. (based on geoip2 accuracy of maxmind)",
"misp-attribute": "float",
"ui-priority": 1,
"disable_correlation": true
},
"country": {
"description": "Country.",
"misp-attribute": "text",
"ui-priority": 1
},
"epsg": {
"description": "EPSG Geodetic Parameter value. This is an integer value of the EPSG.",
"misp-attribute": "text",
"ui-priority": 70,
"disable_correlation": true
},
"spacial-reference": {
"description": "Default spacial or projection refence for this object.",
"misp-attribute": "text",
"ui-priority": 1,
"disable_correlation": true,
"values_list": [
"WGS84 EPSG:4326",
"Mercator EPSG:3857"
]
}
},
"version": 5,
"description": "An object to describe a geographic location.",
"meta-category": "misc",
"uuid": "fdd30d5f-6752-45ed-bef2-25e8ce4d8a3",
"name": "geolocation"
}