-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
51 lines (51 loc) · 996 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
{
"accounts": [
{
"id": 1,
"type": "other",
"accountNumber": "1234-x",
"balance": 100
},
{
"id": 2,
"type": "checking_account",
"accountNumber": "4545-9",
"balance": 50
},
{
"id": 3,
"type": "checking_account",
"accountNumber": "9595-1",
"balance": 632
},
{
"id": 4,
"type": "checking_account",
"accountNumber": "2222-3",
"balance": 789
},
{
"id": 5,
"accountNumber": "3333",
"type": "savings_account",
"balance": 2
},
{
"id": 6,
"type": "savings_account",
"accountNumber": "7777",
"balance": 99
},
{
"id": 7,
"type": "savings_account",
"accountNumber": "7788-0",
"balance": 10000
},
{
"id": 20,
"accountNumber": "9696",
"balance": "50"
}
]
}