forked from casework/CASE-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile_device_and_sim_card.json
127 lines (127 loc) · 4.77 KB
/
mobile_device_and_sim_card.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
{
"@context": {
"@vocab": "http://example.org/local#",
"kb": "http://example.org/kb/",
"acme": "http://custompb.acme.org/core#",
"draft": "http://example.org/draft#",
"olo": "http://purl.org/ontology/olo/core#",
"uco-core": "https://unifiedcyberontology.org/ontology/uco/core#",
"uco-observable": "https://unifiedcyberontology.org/ontology/uco/observable#",
"uco-vocabulary": "https://unifiedcyberontology.org/ontology/uco/vocabulary#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "kb:mobile-device-uuid",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:DeviceFacet",
"uco-core:name": "iPhone",
"uco-observable:model": "MG472ZD/A",
"uco-observable:serialNumber": "F17RN4DXXXXX"
},
{
"@type": "uco-observable:OperatingSystemFacet",
"uco-core:name": "iOS",
"uco-observable:manufacturer": "Apple",
"uco-observable:version": "11.2.6"
},
{
"@type": "iPhoneDevice",
"uniqueID": "B3858A69A29375E6C706226B3633A3A11EB2A774",
"ownerName": "Johnsons iPhone"
},
{
"@type": "uco-observable:MobileDeviceFacet",
"uco-observable:keypadUnlockCode": "123456",
"uco-observable:IMEI": "35540607448XXXX",
"MSISDN": [
{
"@id": "kb:mobile-account1-uuid"
}
],
"uco-observable:clockSetting": "2018-02-24T07:36:24.35Z",
"timezoneSetting": "UTC+01:01 (Europe/Rome)",
"uco-observable:storageCapacityInBytes": {
"@type": "xsd:long",
"@value": "17179869184"
}
},
{
"@type": "uco-observable:BluetoothAddressFacet",
"uco-observable:addressValue": "DC:41:5F:44:48:24"
},
{
"@type": "uco-observable:WifiAddressFacet",
"uco-observable:addressValue": "DC:41:5F:44:48:25"
}
]
},
{
"@id": "kb:trace-relationship1-uuid",
"@type": "uco-observable:ObservableRelationship",
"uco-core:source": {
"@id": "kb:sim-card-uuid"
},
"uco-core:target": [
{
"@id": "kb:mobile-device-uuid"
}
],
"uco-core:kindOfRelationship": {
"@type": "uco-observable:ObservableObjectRelationshipEnum",
"@value": "Contained_Within"
},
"uco-core:isDirectional": true
},
{
"@id": "kb:sim-card-uuid",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:SIMCardFacet",
"uco-observable:ICCID": "456673345673436xxx",
"IMSI": [
{
"@id": "kb:mobile-account2-uuid"
}
],
"uco-observable:SIMType": "USIM",
"uco-observable:SIMForm": "micro",
"uco-observable:carrier": "Vodafone"
}
]
},
{
"@id": "kb:mobile-account1-uuid",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:AccountFacet",
"uco-observable:accountType": "Phone",
"uco-observable:isActive": true
},
{
"@type": "uco-observable:MobileAccountFacet",
"uco-observable:MSISDN": "31618300XXX"
}
]
},
{
"@id": "kb:mobile-account2-uuid",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:AccountFacet",
"uco-observable:accountType": "Phone",
"uco-observable:isActive": true
},
{
"@type": "uco-observable:MobileAccountFacet",
"uco-observable:IMSI": "12345678910112"
}
]
}
]
}