forked from MISP/misp-objects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefinition.json
51 lines (51 loc) · 1.5 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
{
"attributes": {
"btc-address": {
"description": "A Bitcoin transactional address",
"disable_correlation": true,
"misp-attribute": "btc",
"ui-priority": 0
},
"time": {
"description": "Date and time of transaction",
"disable_correlation": true,
"misp-attribute": "datetime",
"ui-priority": 0
},
"transaction-number": {
"description": "A Bitcoin transaction number in a sequence of transactions",
"disable_correlation": true,
"misp-attribute": "text",
"multiple": true,
"ui-priority": 0
},
"value_BTC": {
"description": "Value in BTC at date/time displayed in field 'time'",
"disable_correlation": true,
"misp-attribute": "float",
"ui-priority": 0
},
"value_EUR": {
"description": "Value in EUR with conversion rate as of date/time displayed in field 'time'",
"disable_correlation": true,
"misp-attribute": "float",
"ui-priority": 0
},
"value_USD": {
"description": "Value in USD with conversion rate as of date/time displayed in field 'time'",
"disable_correlation": true,
"misp-attribute": "float",
"ui-priority": 0
}
},
"description": "An object to describe a Bitcoin transaction. Best to be used with bitcoin-wallet.",
"meta-category": "financial",
"name": "btc-transaction",
"requiredOneOf": [
"transaction-number",
"time",
"value_BTC"
],
"uuid": "B7341729-5A8A-439F-A775-6D814DA3C7B5",
"version": 4
}