-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.example.json
More file actions
84 lines (84 loc) · 3.35 KB
/
data.example.json
File metadata and controls
84 lines (84 loc) · 3.35 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
{
"_comment": "🐱 Demo data — obviously fictional. Replace by binding your own data.json via Settings.",
"fx": {
"USD": 1,
"CNY": 0.1381,
"HKD": 0.1282,
"JPY": 0.00642,
"SGD": 0.745,
"EUR": 1.08,
"GBP": 1.27
},
"taxRate": 0.10,
"annualRefund": 0,
"fatFireTarget": 5000000,
"fatFireTargetYear": 2040,
"fcMu": 0.07,
"fcSigma": 0.12,
"fcYears": 15,
"fcMonthly": 5000,
"lang": "en",
"regions": [
{
"name": "🐱 Catnip Kingdom",
"accounts": [
{
"name": "Whisker & Co. Brokerage",
"holdings": [
{ "label": "VOO", "shares": 100, "price": 500, "avgPrice": 420, "ccy": "USD", "cls": "Equity", "realizedPnL": 0, "closed": false },
{ "label": "AAPL", "shares": 50, "price": 250, "avgPrice": 180, "ccy": "USD", "cls": "Equity", "realizedPnL": 0, "closed": false },
{ "label": "QQQ", "shares": 30, "price": 600, "avgPrice": 500, "ccy": "USD", "cls": "Equity", "realizedPnL": 0, "closed": false },
{ "label": "TLT", "shares": 200, "price": 90, "avgPrice": 95, "ccy": "USD", "cls": "Bonds", "realizedPnL": 0, "closed": false }
]
},
{
"name": "Meowtual Savings Bank",
"holdings": [
{ "label": "Cash (Tuna Fund)", "value": 25000, "ccy": "USD", "cls": "Cash", "realizedPnL": 0, "closed": false },
{ "label": "1-Year CD (Catnip Vault)", "value": 50000, "ccy": "USD", "cls": "CD & MM", "realizedPnL": 0, "closed": false }
]
}
]
},
{
"name": "🐶 Doggo Republic",
"accounts": [
{
"name": "Pawsbury Trust",
"holdings": [
{ "label": "Cash (Treat Reserve)", "value": 80000, "ccy": "CNY", "cls": "Cash", "realizedPnL": 0, "closed": false },
{ "label": "Gold (Bone-Standard)", "value": 30000, "ccy": "CNY", "cls": "Gold", "realizedPnL": 0, "closed": false }
]
}
]
}
],
"snapshots": [],
"dividends": [
{ "month": "2026-01", "broker": "Whisker & Co. Brokerage", "gross": 250, "withheld": 25, "category": "refundable", "refunded": false },
{ "month": "2026-02", "broker": "Whisker & Co. Brokerage", "gross": 280, "withheld": 28, "category": "refundable", "refunded": false },
{ "month": "2026-03", "broker": "Whisker & Co. Brokerage", "gross": 310, "withheld": 31, "category": "refundable", "refunded": false },
{ "month": "2026-03", "broker": "Whisker & Co. Brokerage", "gross": 120, "withheld": 12, "category": "nonRefundable", "refunded": false },
{ "month": "2026-03", "broker": "Meowtual Savings Bank", "gross": 60, "withheld": 0, "category": "taxFree", "refunded": false }
],
"checklists": [
{
"id": "demo1",
"name": "🐾 Cat Mom's Tax to-do",
"expanded": true,
"items": [
{ "id": "demo1-1", "text": "File W-8BEN renewal (paw-print signature)", "done": false },
{ "id": "demo1-2", "text": "Verify Q1 dividend statements from Whisker & Co.", "done": true },
{ "id": "demo1-3", "text": "Convert Tuna Fund to CD before yields drop", "done": false }
]
},
{
"id": "demo2",
"name": "🦴 Doggo Rebalance Reminders",
"expanded": false,
"items": [
{ "id": "demo2-1", "text": "Quarterly: rebalance bones-to-treats ratio", "done": false }
]
}
]
}