-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwlu.json
More file actions
1721 lines (1720 loc) · 72 KB
/
Copy pathwlu.json
File metadata and controls
1721 lines (1720 loc) · 72 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"metadata": {
"version": "1.0",
"last_updated": "2023-12-04",
"total_books": 99,
"categories": 9,
"framework_tags": 9,
"thematic_tags": 50
},
"categories": [
{
"id": "F1",
"name": "Financial Mindset & Behavior",
"description": "Books focusing on mindset shifts, behavioral finance, and psychology of money.",
"books": [
"B1",
"B16",
"R12",
"R34",
"R47",
"R27",
"R39",
"R40",
"R98",
"R99"
]
},
{
"id": "F2",
"name": "Income Streams & Quadrants",
"description": "Books on income generation, financial independence, and the Cashflow Quadrant.",
"books": [
"B2",
"B3",
"R42",
"R41",
"R43",
"B4",
"B5",
"R94",
"R96",
"R89"
]
},
{
"id": "F3",
"name": "Building Wealth",
"description": "Books on actionable strategies like investing, passive income, and asset building.",
"books": [
"B1",
"R7",
"R38",
"R56",
"R54",
"B6",
"R77",
"R49",
"B62",
"R50"
]
},
{
"id": "F4",
"name": "Financial Literacy & Education",
"description": "Books for foundational and advanced financial knowledge.",
"books": [
"R39",
"R40",
"R48",
"R49",
"B7",
"R61",
"R95",
"R97",
"R76",
"R93"
]
},
{
"id": "F5",
"name": "Entrepreneurship & Business",
"description": "Books on starting, managing, and scaling businesses.",
"books": [
"B11",
"R30",
"R4",
"R31",
"B12",
"R62",
"B18",
"R81",
"R32",
"R86"
]
},
{
"id": "F6",
"name": "Investment Strategies & Tools",
"description": "Books on advanced investing strategies, tools, and fintech innovations.",
"books": [
"R36",
"T1",
"T3",
"R57",
"R9",
"R55",
"R24",
"R64",
"R59",
"R58"
]
},
{
"id": "F7",
"name": "Wealth Preservation & Legacy",
"description": "Books on estate planning, generational wealth, and long-term sustainability.",
"books": [
"P2",
"P1",
"P3",
"R59",
"B10",
"B13",
"R87",
"R92",
"R93",
"R62"
]
},
{
"id": "F8",
"name": "Social & Environmental Wealth",
"description": "Books on ESG investing, social responsibility, and sustainability.",
"books": [
"S1",
"S2",
"S3",
"R58",
"R37",
"T2",
"R56",
"R91",
"R60",
"R55"
]
},
{
"id": "F9",
"name": "Broader Context & History",
"description": "Books providing historical and global perspectives on wealth creation.",
"books": [
"H1",
"H2",
"H3",
"R32",
"R53",
"R65",
"R23",
"R69",
"R78",
"R79"
]
}
],
"framework_tags": [
{
"id": "F1",
"name": "Financial Mindset & Behavior",
"description": "Focused on mindset, psychology, and behaviors that influence financial decisions."
},
{
"id": "F2",
"name": "Income Streams & Quadrants",
"description": "Includes concepts of active, passive, and portfolio income."
},
{
"id": "F3",
"name": "Building Wealth",
"description": "Covers actionable strategies for growing wealth through investments, assets, and savings."
},
{
"id": "F4",
"name": "Financial Literacy & Education",
"description": "Includes foundational and advanced knowledge for understanding and managing finances."
},
{
"id": "F5",
"name": "Entrepreneurship & Business",
"description": "Focuses on starting, growing, and managing businesses effectively."
},
{
"id": "F6",
"name": "Investment Strategies & Tools",
"description": "Covers advanced investment techniques, strategies, and tools for optimizing returns."
},
{
"id": "F7",
"name": "Wealth Preservation & Legacy",
"description": "Focuses on sustaining and passing on wealth through estate planning and generational strategies."
},
{
"id": "F8",
"name": "Social & Environmental Wealth",
"description": "Addresses ESG investing, sustainable practices, and ethical wealth creation."
},
{
"id": "F9",
"name": "Broader Context & History",
"description": "Provides historical, economic, and cultural perspectives on wealth creation and management."
}
],
"thematic_tags": [
{
"id": "mindset_shift",
"name": "Mindset Shift",
"description": "Changing perspectives to adopt wealth-building habits and beliefs.",
"related_category": "F1"
},
{
"id": "behavioral_finance",
"name": "Behavioral Finance",
"description": "Understanding the psychological factors influencing financial decisions.",
"related_category": "F1"
},
{
"id": "decision_making",
"name": "Decision-Making",
"description": "Insights and tools for making better financial decisions.",
"related_category": "F1"
},
{
"id": "psychology_of_wealth",
"name": "Psychology of Wealth",
"description": "Exploring the mental and emotional aspects of wealth creation.",
"related_category": "F1"
},
{
"id": "financial_education",
"name": "Financial Education",
"description": "Building foundational and advanced knowledge about money management.",
"related_category": "F1"
},
{
"id": "active_income",
"name": "Active Income",
"description": "Earnings from traditional jobs or self-employment.",
"related_category": "F2"
},
{
"id": "passive_income",
"name": "Passive Income",
"description": "Income from investments, real estate, or side hustles.",
"related_category": "F2"
},
{
"id": "cashflow_quadrant",
"name": "Cashflow Quadrant",
"description": "The four types of income: Employee, Self-Employed, Business Owner, and Investor.",
"related_category": "F2"
},
{
"id": "real_estate_income",
"name": "Real Estate Income",
"description": "Income generated from property investments.",
"related_category": "F2"
},
{
"id": "portfolio_income",
"name": "Portfolio Income",
"description": "Earnings from stocks, bonds, and other financial assets.",
"related_category": "F2"
},
{
"id": "wealth_building",
"name": "Wealth Building",
"description": "Strategies for accumulating and growing wealth over time.",
"related_category": "F3"
},
{
"id": "asset_acquisition",
"name": "Asset Acquisition",
"description": "Building a portfolio of income-generating assets.",
"related_category": "F3"
},
{
"id": "compound_interest",
"name": "Compound Interest",
"description": "The exponential growth of money through reinvestment.",
"related_category": "F3"
},
{
"id": "financial_independence",
"name": "Financial Independence",
"description": "Reaching a state where work becomes optional due to sufficient wealth.",
"related_category": "F3"
},
{
"id": "savings_strategies",
"name": "Savings Strategies",
"description": "Effective methods to save money and manage expenses.",
"related_category": "F3"
},
{
"id": "budgeting",
"name": "Budgeting",
"description": "Managing personal or household finances effectively.",
"related_category": "F4"
},
{
"id": "debt_management",
"name": "Debt Management",
"description": "Strategies to reduce or eliminate financial debt.",
"related_category": "F4"
},
{
"id": "investing_basics",
"name": "Investing Basics",
"description": "Foundational concepts for beginner investors.",
"related_category": "F4"
},
{
"id": "advanced_investing",
"name": "Advanced Investing",
"description": "Sophisticated strategies for experienced investors.",
"related_category": "F4"
},
{
"id": "risk_management",
"name": "Risk Management",
"description": "Minimizing and managing financial risks effectively.",
"related_category": "F4"
},
{
"id": "business_growth",
"name": "Business Growth",
"description": "Strategies to scale a business successfully.",
"related_category": "F5"
},
{
"id": "startup_success",
"name": "Startup Success",
"description": "Practical advice for starting and growing businesses.",
"related_category": "F5"
},
{
"id": "systems_thinking",
"name": "Systems Thinking",
"description": "Using systems and processes to enhance efficiency.",
"related_category": "F5"
},
{
"id": "leadership",
"name": "Leadership",
"description": "Developing skills to lead teams and organizations effectively.",
"related_category": "F5"
},
{
"id": "small_business",
"name": "Small Business",
"description": "Specific guidance for running and growing small enterprises.",
"related_category": "F5"
},
{
"id": "value_investing",
"name": "Value Investing",
"description": "Investing in undervalued assets for long-term growth.",
"related_category": "F6"
},
{
"id": "cryptocurrency",
"name": "Cryptocurrency",
"description": "Understanding and investing in digital currencies like Bitcoin.",
"related_category": "F6"
},
{
"id": "fintech",
"name": "Fintech",
"description": "Leveraging financial technology for investment and management.",
"related_category": "F6"
},
{
"id": "real_estate_investing",
"name": "Real Estate Investing",
"description": "Building wealth through property investments.",
"related_category": "F6"
},
{
"id": "stock_market",
"name": "Stock Market",
"description": "Understanding and participating in the equity markets.",
"related_category": "F6"
},
{
"id": "risk_reward",
"name": "Risk/Reward",
"description": "Balancing risk and potential returns in investments.",
"related_category": "F6"
},
{
"id": "estate_planning",
"name": "Estate Planning",
"description": "Preparing wills, trusts, and strategies to pass wealth.",
"related_category": "F7"
},
{
"id": "generational_wealth",
"name": "Generational Wealth",
"description": "Creating and sustaining wealth across generations.",
"related_category": "F7"
},
{
"id": "tax_strategies",
"name": "Tax Strategies",
"description": "Optimizing taxes to preserve wealth.",
"related_category": "F7"
},
{
"id": "retirement_planning",
"name": "Retirement Planning",
"description": "Preparing financially for retirement.",
"related_category": "F7"
},
{
"id": "long_term_wealth",
"name": "Long-Term Wealth",
"description": "Strategies to sustain wealth for the long term.",
"related_category": "F7"
},
{
"id": "esg_investing",
"name": "ESG Investing",
"description": "Investing with a focus on Environmental, Social, and Governance factors.",
"related_category": "F8"
},
{
"id": "sustainable_finance",
"name": "Sustainable Finance",
"description": "Aligning wealth creation with sustainability goals.",
"related_category": "F8"
},
{
"id": "impact_investing",
"name": "Impact Investing",
"description": "Generating social or environmental impact alongside financial returns.",
"related_category": "F8"
},
{
"id": "ethical_capitalism",
"name": "Ethical Capitalism",
"description": "Wealth creation that considers moral and ethical values.",
"related_category": "F8"
},
{
"id": "philanthropy",
"name": "Philanthropy",
"description": "Effective strategies for charitable giving.",
"related_category": "F8"
},
{
"id": "economic_history",
"name": "Economic History",
"description": "Lessons from past financial trends and events.",
"related_category": "F9"
},
{
"id": "global_markets",
"name": "Global Markets",
"description": "International perspectives on wealth creation.",
"related_category": "F9"
},
{
"id": "recession_insights",
"name": "Recession Insights",
"description": "Understanding economic downturns and recoveries.",
"related_category": "F9"
},
{
"id": "economic_theories",
"name": "Economic Theories",
"description": "Foundational ideas shaping financial systems.",
"related_category": "F9"
},
{
"id": "cultural_wealth",
"name": "Cultural Wealth",
"description": "Examining wealth across different cultures.",
"related_category": "F9"
}
],
"series": [
{
"id": "B",
"name": "Rich Dad Series",
"description": "Books authored or co-authored by Robert Kiyosaki, focused on financial education, wealth-building, and achieving financial independence. The series introduces the Rich Dad philosophy, emphasizing mindset shifts, financial literacy, and unconventional paths to wealth.",
"excerpt": "Transform your mindset and learn the strategies to build lasting wealth from Robert Kiyosaki's perspective.",
"total_books": 27,
"books": [
"B1", "B2", "B3", "B4", "B5", "B6", "B7", "B8", "B9", "B10", "B11",
"B12", "B13", "B14", "B15", "B16", "B17", "B18", "B19", "B20",
"B21", "B22", "B23", "B24", "B25", "B26", "B27"
]
},
{
"id": "R",
"name": "Recommended Classics",
"description": "A curated collection of foundational and advanced books on personal finance, investing, entrepreneurship, and economic principles. Written by leading experts and thinkers, this series provides timeless lessons on building and preserving wealth.",
"excerpt": "Explore the classics that have shaped the financial thinking of generations.",
"total_books": 50,
"books": [
"R1", "R7", "R12", "R24", "R27", "R34", "R36", "R38", "R39", "R40",
"R41", "R42", "R43", "R44", "R45", "R46", "R47", "R48", "R50", "R54",
"R56", "R57", "R58", "R59", "R60", "R61", "R62", "R63", "R64", "R65",
"R66", "R67", "R68", "R69", "R70", "R71", "R72", "R73", "R74", "R75",
"R76", "R77", "R78", "R79", "R80", "R81", "R82", "R83", "R84", "R85"
]
},
{
"id": "T",
"name": "Technology and Finance",
"description": "Books exploring the intersection of financial systems and emerging technologies such as blockchain, fintech, and digital innovation. These works examine how technology reshapes wealth-building strategies and financial systems globally.",
"excerpt": "Discover how technology is revolutionizing finance and investment opportunities.",
"total_books": 5,
"books": ["T1", "T2", "T3", "T4", "T5"]
},
{
"id": "P",
"name": "Preservation & Legacy",
"description": "Books focused on preserving wealth, planning for retirement, and creating generational financial legacies. This series addresses estate planning, tax strategies, and sustainable wealth transfer across generations.",
"excerpt": "Learn how to secure your financial future and create a lasting legacy.",
"total_books": 6,
"books": ["P1", "P2", "P3", "P4", "P5", "P6"]
},
{
"id": "S",
"name": "Sustainability & ESG",
"description": "Books on Environmental, Social, and Governance (ESG) investing, impact investing, and sustainable wealth creation. The series emphasizes aligning financial goals with ethical and sustainable values.",
"excerpt": "Build wealth while making a positive impact on society and the environment.",
"total_books": 5,
"books": ["S1", "S2", "S3", "S4", "S5"]
}
],
"keywords": [
{
"keyword": "behavior",
"description": "A brief explanation of 'behavior' in the context of wealth literacy."
},
{
"keyword": "behavioral finance",
"description": "A brief explanation of 'behavioral finance' in the context of wealth literacy."
},
{
"keyword": "brain",
"description": "A brief explanation of 'brain' in the context of wealth literacy."
},
{
"keyword": "cashflow",
"description": "A brief explanation of 'cashflow' in the context of wealth literacy."
},
{
"keyword": "common sense",
"description": "A brief explanation of 'common sense' in the context of wealth literacy."
},
{
"keyword": "cycles",
"description": "A brief explanation of 'cycles' in the context of wealth literacy."
},
{
"keyword": "decision making",
"description": "A brief explanation of 'decision making' in the context of wealth literacy."
},
{
"keyword": "education",
"description": "A brief explanation of 'education' in the context of wealth literacy."
},
{
"keyword": "finance",
"description": "A brief explanation of 'finance' in the context of wealth literacy."
},
{
"keyword": "financial IQ",
"description": "A brief explanation of 'financial IQ' in the context of wealth literacy."
},
{
"keyword": "financial freedom",
"description": "A brief explanation of 'financial freedom' in the context of wealth literacy."
},
{
"keyword": "financial planning",
"description": "A brief explanation of 'financial planning' in the context of wealth literacy."
},
{
"keyword": "freedom",
"description": "A brief explanation of 'freedom' in the context of wealth literacy."
},
{
"keyword": "frugality",
"description": "A brief explanation of 'frugality' in the context of wealth literacy."
},
{
"keyword": "growth",
"description": "A brief explanation of 'growth' in the context of wealth literacy."
},
{
"keyword": "habits",
"description": "A brief explanation of 'habits' in the context of wealth literacy."
},
{
"keyword": "income streams",
"description": "A brief explanation of 'income streams' in the context of wealth literacy."
},
{
"keyword": "independence",
"description": "A brief explanation of 'independence' in the context of wealth literacy."
},
{
"keyword": "index funds",
"description": "A brief explanation of 'index funds' in the context of wealth literacy."
},
{
"keyword": "investing",
"description": "A brief explanation of 'investing' in the context of wealth literacy."
},
{
"keyword": "knowledge",
"description": "A brief explanation of 'knowledge' in the context of wealth literacy."
},
{
"keyword": "management",
"description": "A brief explanation of 'management' in the context of wealth literacy."
},
{
"keyword": "millionaires",
"description": "A brief explanation of 'millionaires' in the context of wealth literacy."
},
{
"keyword": "mindset",
"description": "A brief explanation of 'mindset' in the context of wealth literacy."
},
{
"keyword": "money",
"description": "A brief explanation of 'money' in the context of wealth literacy."
},
{
"keyword": "neuroscience",
"description": "A brief explanation of 'neuroscience' in the context of wealth literacy."
},
{
"keyword": "passive income",
"description": "A brief explanation of 'passive income' in the context of wealth literacy."
},
{
"keyword": "profits",
"description": "A brief explanation of 'profits' in the context of wealth literacy."
},
{
"keyword": "prophecy",
"description": "A brief explanation of 'prophecy' in the context of wealth literacy."
},
{
"keyword": "psychology",
"description": "A brief explanation of 'psychology' in the context of wealth literacy."
},
{
"keyword": "real estate",
"description": "A brief explanation of 'real estate' in the context of wealth literacy."
},
{
"keyword": "retire",
"description": "A brief explanation of 'retire' in the context of wealth literacy."
},
{
"keyword": "risk",
"description": "A brief explanation of 'risk' in the context of wealth literacy."
},
{
"keyword": "risk management",
"description": "A brief explanation of 'risk management' in the context of wealth literacy."
},
{
"keyword": "savings",
"description": "A brief explanation of 'savings' in the context of wealth literacy."
},
{
"keyword": "simplicity",
"description": "A brief explanation of 'simplicity' in the context of wealth literacy."
},
{
"keyword": "stock market",
"description": "A brief explanation of 'stock market' in the context of wealth literacy."
},
{
"keyword": "stocks",
"description": "A brief explanation of 'stocks' in the context of wealth literacy."
},
{
"keyword": "strategy",
"description": "A brief explanation of 'strategy' in the context of wealth literacy."
},
{
"keyword": "thinking",
"description": "A brief explanation of 'thinking' in the context of wealth literacy."
},
{
"keyword": "time",
"description": "A brief explanation of 'time' in the context of wealth literacy."
},
{
"keyword": "value",
"description": "A brief explanation of 'value' in the context of wealth literacy."
},
{
"keyword": "value investing",
"description": "A brief explanation of 'value investing' in the context of wealth literacy."
},
{
"keyword": "values",
"description": "A brief explanation of 'values' in the context of wealth literacy."
},
{
"keyword": "wealth",
"description": "A brief explanation of 'wealth' in the context of wealth literacy."
},
{
"keyword": "young",
"description": "A brief explanation of 'young' in the context of wealth literacy."
}
],
"books": [
{
"id": "B1",
"title": "Rich Dad Poor Dad",
"description": "The classic book that compares two contrasting approaches to financial success.",
"excerpt": "A story of two dads with very different ideas about wealth and education.",
"framework_tags": ["F1", "F3", "F4"],
"thematic_tags": ["mindset_shift", "wealth_building"],
"priority": 1,
"keywords": ["mindset", "education", "investing"]
},
{
"id": "R7",
"title": "The Intelligent Investor",
"description": "A foundational book on value investing and financial management.",
"excerpt": "Benjamin Graham’s masterpiece that emphasizes disciplined investing strategies.",
"framework_tags": ["F3", "F4", "F6"],
"thematic_tags": ["value_investing", "risk_management", "stock_market"],
"priority": 2,
"keywords": ["value investing", "long-term", "portfolio management"]
},
{
"id": "B2",
"title": "Rich Dad's CASHFLOW Quadrant",
"description": "An exploration of the four ways people generate income and how to move from being an employee to becoming an investor.",
"excerpt": "A guide to understanding the Employee, Self-Employed, Business Owner, and Investor quadrants.",
"framework_tags": ["F2", "F3", "F4"],
"thematic_tags": ["cashflow_quadrant", "passive_income", "financial_independence"],
"priority": 3,
"keywords": ["cashflow", "income streams", "wealth"]
},
{
"id": "R47",
"title": "The Psychology of Money",
"description": "Explores the subtle ways psychology and emotions influence financial decisions.",
"excerpt": "A unique look at the behaviors and thinking patterns that define financial success.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["behavioral_finance", "psychology_of_wealth"],
"priority": 4,
"keywords": ["psychology", "mindset", "money"]
},
{
"id": "R34",
"title": "Thinking, Fast and Slow",
"description": "A deep dive into the two systems of thought that drive human decision-making, including financial choices.",
"excerpt": "A book that explains the fast and slow systems of thinking and their impact on our actions.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["decision_making", "behavioral_finance"],
"priority": 5,
"keywords": ["decision making", "thinking", "behavior"]
},
{
"id": "R42",
"title": "The Simple Path to Wealth",
"description": "A straightforward guide to achieving financial independence through investing and frugal living.",
"excerpt": "A practical manual for building wealth through simplicity and discipline.",
"framework_tags": ["F2", "F3", "F4"],
"thematic_tags": ["passive_income", "savings_strategies", "financial_independence"],
"priority": 6,
"keywords": ["simplicity", "investing", "frugality"]
},
{
"id": "R43",
"title": "Financial Freedom",
"description": "A modern guide to achieving financial freedom through passive income and smart investing.",
"excerpt": "A step-by-step blueprint for building wealth and reclaiming your time.",
"framework_tags": ["F2", "F3", "F4"],
"thematic_tags": ["passive_income", "financial_independence", "wealth_building"],
"priority": 7,
"keywords": ["financial freedom", "passive income", "time"]
},
{
"id": "R39",
"title": "Your Money or Your Life",
"description": "A revolutionary guide to transforming your relationship with money and achieving financial independence.",
"excerpt": "A timeless classic on managing money and aligning it with your life values.",
"framework_tags": ["F1", "F3", "F4"],
"thematic_tags": ["budgeting", "savings_strategies", "financial_independence"],
"priority": 8,
"keywords": ["money", "values", "independence"]
},
{
"id": "B3",
"title": "Rich Dad's Guide to Investing",
"description": "A deep dive into the principles and strategies that make successful investors.",
"excerpt": "Lessons on how to think like an investor and build wealth.",
"framework_tags": ["F2", "F3", "F6"],
"thematic_tags": ["portfolio_income", "real_estate_investing", "wealth_building"],
"priority": 9,
"keywords": ["investing", "real estate", "wealth"]
},
{
"id": "R12",
"title": "Secrets of the Millionaire Mind",
"description": "Unveils the mindset and habits that differentiate millionaires from others.",
"excerpt": "A guide to rewiring your brain for wealth creation.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["mindset_shift", "financial_education"],
"priority": 10,
"keywords": ["mindset", "habits", "wealth"]
},
{
"id": "R7",
"title": "The Millionaire Next Door",
"description": "An analysis of the habits and behaviors of everyday millionaires.",
"excerpt": "A book that reveals the surprising truths about wealth accumulation.",
"framework_tags": ["F3", "F4"],
"thematic_tags": ["wealth_building", "savings_strategies"],
"priority": 11,
"keywords": ["millionaires", "habits", "savings"]
},
{
"id": "B4",
"title": "Retire Young Retire Rich",
"description": "A step-by-step guide to achieving financial independence at an early age.",
"excerpt": "Learn how to break free from the rat race and live a life of freedom.",
"framework_tags": ["F2", "F3", "F7"],
"thematic_tags": ["financial_independence", "passive_income", "real_estate_income"],
"priority": 12,
"keywords": ["retire", "young", "freedom"]
},
{
"id": "R56",
"title": "The Dhandho Investor",
"description": "A low-risk, high-return value investing strategy inspired by Indian entrepreneurs.",
"excerpt": "Simplified strategies for value investing and building wealth.",
"framework_tags": ["F3", "F6"],
"thematic_tags": ["value_investing", "risk_reward"],
"priority": 13,
"keywords": ["value", "investing", "strategy"]
},
{
"id": "R48",
"title": "The Little Book of Common Sense Investing",
"description": "A guide to index investing and the benefits of long-term financial growth.",
"excerpt": "John Bogle's timeless principles of investing made simple.",
"framework_tags": ["F3", "F4", "F6"],
"thematic_tags": ["index_investing", "long_term_wealth"],
"priority": 14,
"keywords": ["common sense", "index funds", "growth"]
},
{
"id": "R57",
"title": "The Most Important Thing",
"description": "Howard Marks shares insights on risk, cycles, and investing.",
"excerpt": "A must-read for understanding the subtleties of investing.",
"framework_tags": ["F4", "F6"],
"thematic_tags": ["risk_management", "value_investing", "market_cycles"],
"priority": 15,
"keywords": ["risk", "investing", "cycles"]
},
{
"id": "B5",
"title": "Rich Dad's Prophecy",
"description": "A guide to preparing for and profiting from financial downturns.",
"excerpt": "Learn how to secure your financial future in uncertain times.",
"framework_tags": ["F3", "F6", "F7"],
"thematic_tags": ["economic_theories", "risk_management"],
"priority": 16,
"keywords": ["prophecy", "financial planning", "wealth"]
},
{
"id": "R27",
"title": "Your Money and Your Brain",
"description": "A fascinating look at how neuroscience impacts financial decision-making.",
"excerpt": "Explore the intersection of psychology, brain science, and finance.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["behavioral_finance", "decision_making"],
"priority": 17,
"keywords": ["neuroscience", "finance", "brain"]
},
{
"id": "B6",
"title": "Rich Dad's Who Took My Money?",
"description": "An analysis of how traditional investment strategies fail to build wealth.",
"excerpt": "Learn alternative methods for growing and protecting wealth.",
"framework_tags": ["F3", "F4", "F6"],
"thematic_tags": ["wealth_building", "asset_acquisition", "portfolio_income"],
"priority": 18,
"keywords": ["wealth", "money", "investing"]
},
{
"id": "R50",
"title": "Common Stocks and Uncommon Profits",
"description": "Philip Fisher's classic on growth investing and choosing high-quality stocks.",
"excerpt": "A must-read for understanding business quality in investing.",
"framework_tags": ["F4", "F6"],
"thematic_tags": ["value_investing", "stock_market"],
"priority": 19,
"keywords": ["stocks", "growth", "profits"]
},
{
"id": "B7",
"title": "Rich Dad's Increase Your Financial IQ",
"description": "A guide to improving your financial knowledge and decision-making skills.",
"excerpt": "Unlock the secrets to smarter financial management.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["financial_education", "risk_management"],
"priority": 20,
"keywords": ["financial IQ", "knowledge", "management"]
},
{
"id": "R38",
"title": "The Millionaire Next Door",
"description": "An analysis of the habits and behaviors of everyday millionaires.",
"excerpt": "A book that reveals the surprising truths about wealth accumulation.",
"framework_tags": ["F3", "F7"],
"thematic_tags": ["wealth_building", "savings_strategies", "generational_wealth"],
"priority": 21,
"keywords": ["millionaires", "habits", "wealth"]
},
{
"id": "R54",
"title": "The Little Book That Still Beats the Market",
"description": "Joel Greenblatt's guide to the magic formula for successful investing.",
"excerpt": "A simple and powerful strategy for stock market success.",
"framework_tags": ["F3", "F6"],
"thematic_tags": ["value_investing", "stock_market", "risk_reward"],
"priority": 22,
"keywords": ["investing", "stocks", "formula"]
},
{
"id": "B8",
"title": "Rich Dad's Increase Your Financial IQ",
"description": "Strategies for improving your financial knowledge and skills.",
"excerpt": "Learn to make smarter financial decisions through education.",
"framework_tags": ["F1", "F4"],
"thematic_tags": ["financial_education", "risk_management", "wealth_building"],
"priority": 23,
"keywords": ["IQ", "finance", "skills"]
},
{
"id": "T1",
"title": "Blockchain Revolution",
"description": "How blockchain technology is transforming business, money, and the world.",
"excerpt": "Discover the potential and impact of blockchain.",
"framework_tags": ["F6", "F9"],
"thematic_tags": ["cryptocurrency", "fintech", "economic_history"],
"priority": 24,
"keywords": ["blockchain", "technology", "transformation"]
},
{
"id": "R36",
"title": "The Bitcoin Standard",
"description": "A comprehensive look at Bitcoin and its role in the financial world.",
"excerpt": "An essential guide for understanding cryptocurrency and its implications.",
"framework_tags": ["F6", "F9"],
"thematic_tags": ["cryptocurrency", "economic_theories", "fintech"],
"priority": 25,
"keywords": ["Bitcoin", "crypto", "finance"]
},
{
"id": "B9",
"title": "Rich Dad's Success Stories",
"description": "Real-life success stories inspired by Rich Dad philosophies.",
"excerpt": "Learn how others achieved financial success using Rich Dad principles.",
"framework_tags": ["F1", "F5"],
"thematic_tags": ["success", "wealth_building", "financial_independence"],
"priority": 26,
"keywords": ["success", "stories", "Rich Dad"]
},
{
"id": "B10",
"title": "Rich Dad's Prophecy",
"description": "Robert Kiyosaki predicts financial challenges and how to prepare for them.",
"excerpt": "Learn how to safeguard your financial future in uncertain times.",
"framework_tags": ["F3", "F6", "F7"],
"thematic_tags": ["economic_theories", "risk_management", "financial_independence"],
"priority": 27,
"keywords": ["prophecy", "wealth", "future"]
},
{