forked from casework/CASE-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcall_log.json
71 lines (71 loc) · 2.48 KB
/
call_log.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
{
"@context": {
"@vocab": "http://example.org/local#",
"kb": "http://example.org/kb/",
"draft": "http://example.org/draft#",
"uco-core": "https://unifiedcyberontology.org/ontology/uco/core#",
"uco-observable": "https://unifiedcyberontology.org/ontology/uco/observable#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "kb:phone_account1",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:AccountFacet",
"uco-observable:accountIssuer": {
"@id": "kb:ATT"
},
"uco-observable:isActive": true
},
{
"@type": "uco-observable:PhoneAccountFacet",
"uco-observable:phoneNumber": "1237771337"
}
]
},
{
"@id": "kb:phone_account2",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:AccountFacet",
"uco-observable:accountIssuer": {
"@id": "kb:Sprint"
},
"uco-observable:isActive": true
},
{
"@type": "uco-observable:PhoneAccountFacet",
"identifier": "1234560000"
}
]
},
{
"@id": "kb:phone_call1",
"@type": "uco-observable:ObservableObject",
"uco-core:hasFacet": [
{
"@type": "uco-observable:PhoneCallFacet",
"uco-observable:callType": "mobile",
"uco-observable:startTime": {
"@type": "xsd:dateTime",
"@value": "2010-01-15T17:59:43.25Z"
},
"uco-observable:endTime": {
"@type": "xsd:dateTime",
"@value": "2010-01-15T18:30:41.25Z"
},
"uco-observable:from": {
"@id": "kb:phone_account1"
},
"uco-observable:to": {
"@id": "kb:phone_account2"
},
"uco-observable:duration": 1862
}
]
}
]
}