-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
53 lines (53 loc) · 990 Bytes
/
db.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
{
"members": [
{
"id": 0,
"first_name": "Henk",
"last_name": "Henkerson",
"sports": [
0
]
},
{
"id": 1,
"first_name": "Jolanda",
"last_name": "Jola",
"sports": [
1,
2
]
},
{
"id": 2,
"first_name": "Cold",
"last_name": "Kermis",
"sports": [
0,
1,
2
]
},
{
"id": 3,
"first_name": "Lydia",
"last_name": "Pink",
"sports": [
2
]
}
],
"sports": [
{
"id": 0,
"name": "Football"
},
{
"id": 1,
"name": "Squash"
},
{
"id": 2,
"name": "Tennis"
}
]
}