forked from casework/CASE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
call_log.json
53 lines (53 loc) · 1.11 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
{
"@context": {
"@vocab": "http://case.example.org/core#",
"olo": "http://purl.org/ontology/olo/core#"
},
"@graph": [
{
"@id": "phone_account1",
"@type": "Trace",
"propertyBundle": [
{
"@type": "Account",
"accountIssuer": "AT&T",
"isActive": true
},
{
"@type": "PhoneAccount",
"phoneNumber": "1237771337"
}
]
},
{
"@id": "phone_account2",
"@type": "Trace",
"propertyBundle": [
{
"@type": "Account",
"accountIssuer": "Sprint",
"isActive": true
},
{
"@type": "PhoneAccount",
"identifier": "1234560000"
}
]
},
{
"@id": "phone_call1",
"@type": "Trace",
"propertyBundle": [
{
"@type": "PhoneCall",
"callType": "mobile",
"startTime": "2010-01-15T17:59:43.25Z",
"endTime": "2010-01-15T18:30:41.25Z",
"from": "phone_account1",
"to": "phone_account2",
"duration": "PT31M2S"
}
]
}
]
}