15 lines
520 B
JSON
15 lines
520 B
JSON
{
|
|
"accounts": [
|
|
{"name": "Checking", "balance": 4250.00, "currency": "USD"},
|
|
{"name": "Savings", "balance": 12400.00, "currency": "USD"},
|
|
{"name": "Credit Card", "balance": -850.50, "currency": "USD"},
|
|
{"name": "Investments", "balance": 34800.00, "currency": "USD"}
|
|
],
|
|
"monthly": {
|
|
"labels": ["Oct", "Nov", "Dec", "Jan", "Feb", "Mar"],
|
|
"income": [4000, 4000, 5200, 4000, 4000, 4100],
|
|
"expenses": [2100, 2400, 3100, 1800, 2000, 2200],
|
|
"spend": [800, 1100, 1600, 600, 700, 900]
|
|
}
|
|
}
|