-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-data.json
More file actions
58 lines (58 loc) · 1.45 KB
/
sample-data.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"account": {
"balance": 15000.00,
"income": 25000.00,
"expense": 10000.00
},
"categoryExpenses": {
"Bills": 2500.00,
"Food": 3000.00,
"Transport": 1500.00,
"Shopping": 2000.00,
"Others": 1000.00
},
"transactions": [
{
"date": "01-12-2023",
"type": "Income",
"category": "Salary",
"description": "Monthly Salary",
"amount": "25000.00"
},
{
"date": "02-12-2023",
"type": "Expense",
"category": "Bills",
"description": "Electricity Bill",
"amount": "2500.00"
},
{
"date": "03-12-2023",
"type": "Expense",
"category": "Food",
"description": "Grocery Shopping",
"amount": "3000.00"
},
{
"date": "04-12-2023",
"type": "Expense",
"category": "Transport",
"description": "Fuel",
"amount": "1500.00"
},
{
"date": "05-12-2023",
"type": "Expense",
"category": "Shopping",
"description": "New Clothes",
"amount": "2000.00"
},
{
"date": "06-12-2023",
"type": "Expense",
"category": "Others",
"description": "Miscellaneous",
"amount": "1000.00"
}
]
}