-
Notifications
You must be signed in to change notification settings - Fork 2
/
userdata.json
43 lines (43 loc) · 1.26 KB
/
userdata.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
{
"user": {
"id": 1,
"name": "John Doe",
"role": "User",
"company": {
"name": "Company Name Co.",
"address": "123 Fake St."
},
"friends" : [
{
"id": 2,
"name": "Friend 1",
"role": "User",
"company": {
"name": "Company Name Co.",
"address": "123 Fake St."
},
"friends" : []
},
{
"id": 3,
"name": "Friend 2",
"role": "Admin",
"company": {
"name": "Company Name Co.",
"address": "123 Fake St."
},
"friends" : []
},
{
"id": 4,
"name": "Friend 3",
"role": "User",
"company": {
"name": "Company Name Co.",
"address": "123 Fake St."
},
"friends" : []
}
]
}
}