forked from andela/buggy-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloans.json
More file actions
94 lines (94 loc) · 1.95 KB
/
loans.json
File metadata and controls
94 lines (94 loc) · 1.95 KB
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
{
"loans": [
{
"id": 1,
"amount": 5000,
"status": "paid",
"owner": "Jane"
},
{
"id": 2,
"amount": 500,
"status": "unpaid",
"owner": "John"
},
{
"id": 3,
"amount": 1000,
"status": "paid",
"owner": "Nad"
},
{
"id": 4,
"amount": 2000.50,
"status": "paid",
"owner": "Jeremy"
},
{
"id": 5,
"amount": 50.23,
"status": "paid",
"owner": "Christina"
},
{
"id": 6,
"amount": 5000,
"status": "unpaid",
"owner": "Chantal"
},
{
"id": 7,
"amount": 2340.12304,
"status": "paid",
"owner": "Ibrahim"
},
{
"id": 8,
"amount": 5000,
"status": "paid",
"owner": "Proton"
},
{
"id": 9,
"amount": 5000,
"status": "paid",
"owner": "Maslah"
},
{
"id": 10,
"amount": 1234,
"status": "paid",
"owner": "Kidoti"
},
{
"id": 11,
"amount": 1300,
"status": "paid",
"owner": "Loice"
},
{
"id": 12,
"amount": 5330,
"status": "paid",
"owner": "Kim"
},
{
"id": 13,
"amount": 5030,
"status": "unpaid",
"owner": "Nyambura"
},
{
"id": 14,
"amount": 1239,
"status": "paid",
"owner": "Percila"
},
{
"id": 14,
"amount": 532,
"status": "unpaid",
"owner": "Mohini"
}
]
}