-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinitial-data.json
More file actions
108 lines (108 loc) · 4.09 KB
/
initial-data.json
File metadata and controls
108 lines (108 loc) · 4.09 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"accounts": [
{
"name": "Student Loan",
"account_type": "student_loan",
"value": 62300,
"history": [
{ "timestamp": "2025-04-01", "value": 67800 },
{ "timestamp": "2025-05-01", "value": 67300 },
{ "timestamp": "2025-06-01", "value": 66800 },
{ "timestamp": "2025-07-01", "value": 66300 },
{ "timestamp": "2025-08-01", "value": 65800 },
{ "timestamp": "2025-09-01", "value": 65300 },
{ "timestamp": "2025-10-01", "value": 64800 },
{ "timestamp": "2025-10-15", "value": 64300 },
{ "timestamp": "2025-11-01", "value": 63800 },
{ "timestamp": "2025-11-10", "value": 62300 }
]
},
{
"name": "401K",
"account_type": "investments",
"value": 30000,
"history": [
{ "timestamp": "2025-04-01", "value": 24500 },
{ "timestamp": "2025-05-01", "value": 25200 },
{ "timestamp": "2025-05-15", "value": 24800 },
{ "timestamp": "2025-06-01", "value": 25500 },
{ "timestamp": "2025-07-01", "value": 26800 },
{ "timestamp": "2025-07-15", "value": 27200 },
{ "timestamp": "2025-08-01", "value": 26900 },
{ "timestamp": "2025-08-15", "value": 27400 },
{ "timestamp": "2025-09-01", "value": 28100 },
{ "timestamp": "2025-09-15", "value": 27800 },
{ "timestamp": "2025-10-01", "value": 28900 },
{ "timestamp": "2025-10-15", "value": 29500 },
{ "timestamp": "2025-11-01", "value": 29800 },
{ "timestamp": "2025-11-10", "value": 30000 }
]
},
{
"name": "Emergency Fund",
"account_type": "savings",
"value": 40000,
"history": [
{ "timestamp": "2025-04-01", "value": 42000 },
{ "timestamp": "2025-05-01", "value": 42500 },
{ "timestamp": "2025-05-20", "value": 39800 },
{ "timestamp": "2025-06-01", "value": 40300 },
{ "timestamp": "2025-07-01", "value": 40800 },
{ "timestamp": "2025-08-01", "value": 41300 },
{ "timestamp": "2025-08-15", "value": 36500 },
{ "timestamp": "2025-09-01", "value": 37000 },
{ "timestamp": "2025-10-01", "value": 38500 },
{ "timestamp": "2025-11-01", "value": 39500 },
{ "timestamp": "2025-11-10", "value": 40000 }
]
},
{
"name": "Mortgage",
"account_type": "mortgage",
"value": 320000,
"history": [
{ "timestamp": "2025-04-01", "value": 323200 },
{ "timestamp": "2025-05-01", "value": 322800 },
{ "timestamp": "2025-06-01", "value": 322400 },
{ "timestamp": "2025-07-01", "value": 322000 },
{ "timestamp": "2025-08-01", "value": 321600 },
{ "timestamp": "2025-09-01", "value": 321200 },
{ "timestamp": "2025-10-01", "value": 320800 },
{ "timestamp": "2025-11-01", "value": 320400 },
{ "timestamp": "2025-11-10", "value": 320000 }
]
},
{
"name": "Car Loan",
"account_type": "car_loan",
"value": 12390,
"history": [
{ "timestamp": "2025-04-01", "value": 14890 },
{ "timestamp": "2025-05-01", "value": 14540 },
{ "timestamp": "2025-06-01", "value": 14190 },
{ "timestamp": "2025-07-01", "value": 13840 },
{ "timestamp": "2025-08-01", "value": 13490 },
{ "timestamp": "2025-09-01", "value": 13140 },
{ "timestamp": "2025-10-01", "value": 12790 },
{ "timestamp": "2025-11-01", "value": 12440 },
{ "timestamp": "2025-11-10", "value": 12390 }
]
},
{
"name": "House",
"account_type": "property",
"value": 400000,
"history": [
{ "timestamp": "2025-04-01", "value": 395000 },
{ "timestamp": "2025-05-01", "value": 396000 },
{ "timestamp": "2025-06-01", "value": 397000 },
{ "timestamp": "2025-07-01", "value": 397500 },
{ "timestamp": "2025-08-01", "value": 398000 },
{ "timestamp": "2025-09-01", "value": 398500 },
{ "timestamp": "2025-10-01", "value": 399000 },
{ "timestamp": "2025-11-01", "value": 399500 },
{ "timestamp": "2025-11-10", "value": 400000 }
]
}
]
}