-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
104 lines (104 loc) · 1.8 KB
/
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
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
101
102
103
104
{
"users": [
{
"id": "1",
"username": "user1",
"email": "abcd@gmail.com",
"password": "asdf_adsf"
},
{
"id": "2",
"username": "user2",
"email": "ab2@gmail.com",
"password": "asdf_adsf"
},
{
"id": "3",
"username": "user3",
"email": "abcd3@gmail.com",
"password": "asdf_adsf"
},
{
"id": 4,
"username": "user4",
"email": "abcd4@gmail.com",
"password": "asdf_adsf"
},
{
"id": 5,
"username": "user5",
"email": "abcd5@gmail.com",
"password": "asdf_adsf"
}
],
"accounts": [
{
"id": 1,
"userId": 2,
"balance": 34234,
"last-updated": "20-02-2020"
},
{
"id": 2,
"userId": 1,
"balance": 14234,
"last-updated": "20-02-2020"
},
{
"id": 3,
"userId": 4,
"balance": 1424,
"last-updated": "20-02-2020"
},
{
"id": 4,
"userId": 3,
"balance": 14242,
"last-updated": "20-02-2020"
},
{
"id": 5,
"userId": 2,
"balance": 14242,
"last-updated": "20-02-2020"
}
],
"transactions": [
{
"id": 1,
"senderId": 2,
"receiver": 1,
"amount": 234,
"last-updated": "20-02-2020"
},
{
"id": 2,
"senderId": 3,
"receiver": 2,
"amount": 2342,
"last-updated": "20-02-2020"
},
{
"id": 3,
"senderId": 1,
"receiver": 2,
"amount": 2343,
"last-updated": "20-02-2020"
},
{
"id": 4,
"senderId": 5,
"receiver": 1,
"amount": 2343,
"last-updated": "20-02-2020"
},
{
"id": 5,
"senderId": 1,
"receiver": 4,
"amount": 2000,
"last-updated": "20-02-2020"
}
],
"books": []
}