-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.json
100 lines (100 loc) · 2.54 KB
/
email.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
{
"@context": {
"@vocab": "http://case.example.org/core#",
"olo": "http://purl.org/ontology/olo/core#"
},
"@graph": [
{
"@id": "actor1",
"@type": "Identity",
"firstName": "William",
"lastName": "Smith",
"birthday": "1968-09-25T17:59:43.25Z",
"associatedAccount": [
"facebook_identity1",
"google_identity1",
"email_account1"
]
},
{
"@id": "facebook_identity1",
"@type": "Identity",
"firstName": "Willy",
"lastName": "Smith",
"birthday": "1968-09-25T17:59:43.25Z",
"associatedAccount": [
"email_account1"
],
"propertyBundle": [
{
"@type": "Account",
"identifier": "[email protected]",
"displayName": "WILLY THE KID",
"accountIssuer": "Facebook"
},
{
"@type": "DigitalAccount",
"accountLogin": "xXWillyRocksXx",
"firstLoginTime": "2010-01-21T17:59:43.25Z",
"lastLoginTime": "2010-03-12T17:59:43.25Z"
},
{
"@type": "AccountAuthentication",
"password": "123secretpassword456",
"passwordLastChanged": "2010-01-15T17:59:43.25Z"
},
{
"@type": "ApplicationAccount",
"fromApplication": "application1"
}
]
},
{
"@id": "google_identity1",
"@type": "Identity",
"firstName": "William",
"lastName": "Smith",
"birthday": "1968-09-25T17:59:43.25Z",
"associatedAccount": [
"email_account1"
],
"propertyBundle": [
{
"@type": "Account",
"identifier": "[email protected]",
"displayName": "William Smith",
"accountIssuer": "Google",
"createdTime": "2010-01-15T17:59:43.25Z",
},
{
"@type": "DigitalAccount",
"accountLogin": [
"willyROX",
],
"firstLoginTime": "2010-01-21T17:59:43.25Z",
"lastLoginTime": "2010-03-12T17:59:43.25Z"
},
{
"@type": "AccountAuthentication",
"password": "1337_P@ZZW0RD",
"passwordLastChanged": "2010-01-15T17:59:43.25Z"
},
{
"@type": "ApplicationAccount",
"application": "application1"
}
]
},
{
"@id": "email_account1",
"@type": "Trace",
"propertyBundle": [
{
"@type": "EmailAccount",
"emailAddress": "[email protected]"
}
]
}
]
}