forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinition.json
129 lines (129 loc) · 3.08 KB
/
definition.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"attributes": {
"date-first-registration": {
"description": "Date of first registration",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"description": {
"description": "Description of the vehicle",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 1
},
"dyno-power": {
"description": "Dyno power output",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"exterior color": {
"description": "Exterior color of the vehicule",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"gearbox": {
"description": "Gearbox",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"image": {
"description": "Image of the vehicle.",
"misp-attribute": "attachment",
"multiple": true,
"ui-priority": 0
},
"image-url": {
"description": "Image URL",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"indicative-value": {
"description": "Indicative value",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"interior color": {
"description": "Interior color of the vehicule",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"license-plate-number": {
"description": "License plate number",
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"make": {
"description": "Manufacturer of the vehicle",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"model": {
"description": "Model of the vehicle",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"state": {
"description": "State of the vehicule (stolen or recovered)",
"disable_correlation": true,
"misp-attribute": "text",
"ui-priority": 0
},
"type": {
"description": "Type of the vehicule",
"disable_correlation": true,
"misp-attribute": "text",
"sane_default": [
"car",
"bus",
"caravan",
"bicycle",
"boat",
"taxi",
"camper van",
"motorcycle",
"truck",
"scooter",
"tractor",
"trailer",
"van"
],
"ui-priority": 0
},
"vin": {
"description": "Vehicle identification number (VIN)",
"misp-attribute": "text",
"ui-priority": 0
}
},
"description": "Vehicle object template to describe a vehicle information and registration",
"meta-category": "misc",
"name": "vehicle",
"requiredOneOf": [
"description",
"make",
"model",
"license-plate-number",
"vin",
"dyno-power",
"date-first-registration",
"image-url",
"gearbox",
"exterior color",
"interior color",
"type",
"state",
"indicative-value"
],
"uuid": "683c076c-f695-4ff2-8efa-e98a418049f4",
"version": 3
}