Upload sample_alloc.json
Browse files- sample_alloc.json +58 -0
sample_alloc.json
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"equity": [
|
3 |
+
{
|
4 |
+
"type": "mutual_fund",
|
5 |
+
"amount": 150000,
|
6 |
+
"category": "index_fund",
|
7 |
+
"label": "Nippon India Nifty 50 Index Fund",
|
8 |
+
"portfolio": []
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"type": "mutual_fund",
|
12 |
+
"amount": 75000,
|
13 |
+
"category": "large_and_mid_cap",
|
14 |
+
"label": "Mirae Asset Emerging Bluechip",
|
15 |
+
"portfolio": []
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"type": "mutual_fund",
|
19 |
+
"amount": 25000,
|
20 |
+
"category": "hybrid_fund",
|
21 |
+
"label": "HDFC PSU 50",
|
22 |
+
"portfolio": []
|
23 |
+
}
|
24 |
+
],
|
25 |
+
"debt": [
|
26 |
+
{
|
27 |
+
"type": "debt_fund",
|
28 |
+
"amount": 100000,
|
29 |
+
"category": "short_duration_fund",
|
30 |
+
"label": "ICICI Prudential Short Term Fund"
|
31 |
+
}
|
32 |
+
],
|
33 |
+
"metals": [
|
34 |
+
{
|
35 |
+
"type": "gold",
|
36 |
+
"category": "etf",
|
37 |
+
"label": "Axis Gold ETF",
|
38 |
+
"amount": 50000
|
39 |
+
}
|
40 |
+
],
|
41 |
+
"fixed_deposite": [
|
42 |
+
{
|
43 |
+
"type": "fd",
|
44 |
+
"amount": 200000,
|
45 |
+
"tenure": "1 year",
|
46 |
+
"interest_rate": "6.5%",
|
47 |
+
"bank": "HDFC Bank"
|
48 |
+
}
|
49 |
+
],
|
50 |
+
"real_estate": [
|
51 |
+
{
|
52 |
+
"type": "plot",
|
53 |
+
"amount": 300000,
|
54 |
+
"label": "Tier 1 residential - upcoming investment"
|
55 |
+
}
|
56 |
+
]
|
57 |
+
}
|
58 |
+
|