-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathposts.json
More file actions
1508 lines (1508 loc) · 66.6 KB
/
posts.json
File metadata and controls
1508 lines (1508 loc) · 66.6 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
[
{
"_comment": "This post uses external_url to link to an interactive app instead of a markdown article. The filename is 'dummy' because no markdown file exists - it redirects directly to the app.",
"title": "Two-child limit calculator",
"description": "Explore policy reforms to the two-child benefit limit and their impacts on households, government spending, and child poverty.",
"date": "2025-10-28",
"tags": ["uk", "featured", "policy", "interactives"],
"filename": "uk-two-child-limit-comparison-dummy.md",
"external_url": "/uk/two-child-limit-comparison",
"image": "young-child-exemption-two-child-limit.jpg",
"authors": ["vahid-ahmadi"]
},
{
"title": "Marginal tax rates in California's proposed billionaire tax",
"description": "The 5% tax creates marginal tax rates between 50% and 60% on wealth between $1 billion and $1.1 billion.",
"date": "2025-10-25",
"tags": ["us"],
"filename": "california-billionaire-tax-marginal-rates.md",
"image": "california-billionaire-tax-marginal-rates.jpg",
"authors": ["max-ghenis"]
},
{
"title": "Comparing PolicyEngine and official UK poverty rates",
"description": "We compare PolicyEngine poverty estimates with official DWP statistics and explain the methodological factors behind the differences.",
"date": "2025-10-10 11:00:00",
"tags": ["uk", "policy", "featured"],
"authors": ["vahid-ahmadi"],
"filename": "uk-poverty-analysis.md",
"image": "uk-poverty-analysis.jpg"
},
{
"title": "How removing the two-child benefit limit would affect the UK",
"description": "Removing the two-child limit would cost £2.8 billion in 2026-27 and reduce child poverty by 15.7%.",
"date": "2025-10-06 11:00:00",
"tags": ["uk", "policy", "featured"],
"authors": ["vahid-ahmadi"],
"filename": "uk-two-child-limit.md",
"image": "uk-reeves.jpg"
},
{
"title": "How we used Claude Code to choose our DC office",
"description": "We used Claude Code to build an interactive comparison tool for choosing our DC office. The winner: Open Gov Hub. Join us Oct 22 to celebrate!",
"date": "2025-10-05",
"tags": ["us", "org", "ai"],
"authors": ["max-ghenis", "daphne-hansell"],
"filename": "dc-office-ai-coding.md",
"image": "dc-office-ai-coding.png"
},
{
"title": "Introducing ACA-Calc: Calculate your household's premium tax credits",
"description": "New interactive calculator shows how Affordable Care Act subsidies affect households under current enhanced schedule and original schedule.",
"date": "2025-09-30",
"tags": ["us", "policy", "featured", "healthcare", "interactives"],
"authors": ["daphne-hansell"],
"filename": "introducing-aca-calc.md",
"image": "biden-arpa.png"
},
{
"title": "How carbon tax and dividend policies affect UK households",
"description": "PolicyEngine analysis of £100/200 per tonne carbon taxes with full dividend redistribution shows approximately 71% of UK residents would gain.",
"date": "2025-09-30 11:00:00",
"tags": ["uk", "policy", "featured"],
"authors": ["vahid-ahmadi"],
"filename": "uk-carbon-tax-dividend.md",
"image": "uk-carbon-tax.png"
},
{
"title": "Enhanced Premium Tax Credits: Analyzing Household Impacts of an Extension Beyond 2025",
"description": "PolicyEngine analyzes extending the enhanced premium tax credits enacted through the American Rescue Plan Act beyond their 2025 expiration.",
"date": "2025-09-30",
"tags": ["us", "policy", "featured", "healthcare"],
"authors": ["daphne-hansell"],
"filename": "enhanced-premium-tax-credits-extension.md",
"image": "enhanced-premium-tax-credits-extension.jpg"
},
{
"title": "Event: PolicyEngine 2.0 and the Future of Public Policy Analysis",
"description": "Join us on the afternoon of November 3rd in London for an exclusive showcase of PolicyEngine's latest innovations in evidence-based policy analysis, featuring live demos and networking.",
"date": "2025-09-12",
"tags": ["uk", "org", "featured", "event"],
"filename": "sep-2025-london-event.md",
"image": "sep-2025-london-event.png",
"authors": ["max-ghenis"]
},
{
"title": "PolicyEngine and NBER sign memorandum of understanding for TAXSIM emulator development",
"description": "Partnership ensures continuity of tax microsimulation capabilities for the research community through open-source development.",
"date": "2025-09-05",
"tags": ["us", "org", "featured"],
"filename": "policyengine-nber-mou-taxsim.md",
"image": "policyengine-nber-mou-taxsim.png",
"authors": ["max-ghenis", "pavel-makarchuk"]
},
{
"title": "National Science Foundation awards PolicyEngine $300,000 grant",
"description": "NSF's Pathways to Enable Open-Source Ecosystems program will support PolicyEngine's work to expand access to policy analysis tools.",
"date": "2025-08-18",
"tags": ["us", "uk", "org", "featured"],
"filename": "nsf-pose-phase-1-grant.md",
"image": "nsf-official-logo.png",
"authors": ["max-ghenis"]
},
{
"title": "Analysis of the American Worker Rebate Act of 2025",
"description": "The bill would cost $141 billion and benefit 80% of American residents.",
"date": "2025-08-13",
"tags": ["us", "tariffs", "featured"],
"filename": "american-worker-rebate-act.md",
"image": "american-worker-rebate-act.jpg",
"authors": ["david-trimmer"]
},
{
"title": "Enhanced CPS full launch: Comprehensive microdata for policy analysis",
"description": "The Enhanced Current Population Survey now includes tip, overtime, and auto loan interest imputations, plus upcoming state and congressional district calibration.",
"date": "2025-08-11",
"tags": ["us", "data", "featured"],
"filename": "enhanced-cps-launch.md",
"image": "enhanced-cps-launch.png",
"authors": ["max-ghenis", "nikhil-woodruff", "ben-ogorek", "maria-juaristi"]
},
{
"_comment": "This post uses external_url to link to an interactive app instead of a markdown article. The filename is 'dummy' because no markdown file exists - it redirects directly to the app.",
"title": "The One Big Beautiful Bill Act, household by household",
"description": "Our latest interactive shows how the reconciliation bill affects each of 20,000 representative households across income levels, states, and provisions.",
"date": "2025-08-11",
"tags": ["us", "policy", "featured", "reconciliation", "interactives"],
"filename": "obbba-household-by-household-dummy.md",
"external_url": "/us/obbba-household-by-household",
"image": "obbba-household-by-household.png",
"authors": [
"max-ghenis",
"pavel-makarchuk",
"ben-ogorek",
"nikhil-woodruff"
]
},
{
"title": "Analysis of individual income tax provisions in the final reconciliation bill",
"description": "Our simulation projects a reduction in federal revenues of $3.8 trillion from 2026 to 2035 compared to current law.",
"date": "2025-07-04",
"tags": ["us", "policy", "featured", "reconciliation"],
"filename": "final-2025-reconciliation-tax.md",
"image": "final-2025-reconciliation-tax.png",
"authors": ["david-trimmer", "pavel-makarchuk"]
},
{
"title": "Introducing the OBBBA Household Explorer",
"description": "New interactive tool reveals household-level impacts of the One Big Beautiful Bill Act.",
"date": "2025-07-03",
"tags": ["us", "policy", "featured", "reconciliation"],
"filename": "introducing-obbba-household-explorer.md",
"image": "introducing-obbba-household-explorer.png",
"authors": ["max-ghenis", "pavel-makarchuk", "elena-cura"]
},
{
"title": "The 2025 American Family Act",
"description": "The Child Tax Credit expansion would cost the federal government $2.5 trillion over ten years and lower child poverty by 25%.",
"date": "2025-06-16",
"tags": ["us", "policy", "featured", "child-tax-credit"],
"filename": "american-family-act-2025.md",
"image": "american-family-act-2025.webp",
"authors": ["david-trimmer"]
},
{
"title": "Childcare programmes in PolicyEngine UK",
"description": "This report explains how PolicyEngine models childcare programmes in the UK.",
"date": "2025-06-06",
"tags": ["uk", "benefit", "featured"],
"filename": "uk-childcare-report.md",
"image": "uk_childcare_report.jpg",
"authors": ["vahid-ahmadi"]
},
{
"title": "Manager's Amendment to H.R.1 - The One Big Beautiful Bill Act",
"date": "2025-05-24",
"authors": ["pavel-makarchuk", "david-trimmer", "max-ghenis"],
"tags": ["us", "policy", "featured", "reconciliation"],
"description": "We project that individual provisions in the manager's amendment will cost $22 billion over the budget window.",
"filename": "managers-amendment-to-hr1.md",
"image": "managers-amendment-to-hr1.png"
},
{
"title": "Montana Reduces Top Income Tax Rate and Expands EITC",
"description": "Montana's latest individual income tax changes will lower state revenues by $245 million and raise net income for an estimated 77% of residents in 2027.",
"date": "2025-05-22",
"tags": ["us", "featured", "us-mt"],
"filename": "montana-tax-cuts-2026.md",
"image": "montana-tax-cuts-2026.jpg",
"authors": ["david-trimmer"]
},
{
"title": "The SALT Caucus's Proposed Cap",
"description": "We project that replacing the SALT cap approved by the Ways and Means Committee with the SALT Caucus proposal would cost $497 billion over the budget window.",
"date": "2025-05-15",
"tags": ["us", "featured", "reconciliation"],
"filename": "salt-caucus-62k-cap.md",
"image": "salt-caucus-62k-cap.png",
"authors": ["david-trimmer"]
},
{
"title": "Ways and Means Committee's SALT Cap",
"description": "We project that limiting state and local tax deductions to $30,000, phasing down to $10,000 at high incomes, would raise $937 billion over the budget window.",
"date": "2025-05-14",
"tags": ["us", "featured", "reconciliation"],
"filename": "ways-and-means-salt-cap.md",
"image": "ways-and-means-salt-cap.webp",
"authors": ["pavel-makarchuk", "david-trimmer", "max-ghenis"]
},
{
"title": "Tax changes in effect in April 2025",
"description": "Using PolicyEngine UK, we analyse four tax changes taking effect in April 2025 that will increase taxes by an average of £1,133 per household.",
"date": "2025-04-25",
"tags": ["uk", "tax", "policy", "featured"],
"filename": "impact-of-tax-changes-2025-2026.md",
"image": "uk_budget_box_hunt.jpg",
"authors": ["nikhil-woodruff"]
},
{
"title": "Analyzing Energy Policy with PolicyEngine",
"description": "We provide an Earth Day recap of our capabilities in the US and UK.",
"date": "2025-04-22",
"tags": ["us", "uk", "featured"],
"filename": "earth-day-2025.md",
"image": "earth-day-2025.png",
"authors": ["max-ghenis"]
},
{
"title": "What's the SALTernative?",
"description": "Introducing PolicyEngine’s free SALT‑AMT calculator — an open‑source web app to model next year’s SALT‑cap sunset, tweak AMT parameters, and see the budget, distributional, and household impacts in seconds.",
"date": "2025-04-21",
"tags": ["us", "featured", "reconciliation"],
"filename": "introducing-salternative.md",
"image": "introducing-salternative.png",
"authors": ["pavel-makarchuk", "max-ghenis"]
},
{
"title": "MyFriendBen Launches in North Carolina, Using PolicyEngine API",
"description": "Our rules engine powers the open-source multi-benefit screener and its expansion beyond Colorado.",
"date": "2025-04-05",
"tags": ["us", "us-nc", "featured", "api", "benefit-access"],
"filename": "myfriendben-nc.md",
"image": "myfriendben-nc.png",
"authors": ["max-ghenis"]
},
{
"title": "New Ways to Give to PolicyEngine",
"description": "Exploring state tax credits for charitable giving.",
"date": "2025-04-01",
"tags": ["us", "april-fools", "featured"],
"filename": "april-1st-2025.md",
"image": "april-1st-2025.png",
"authors": ["daphne-hansell"]
},
{
"title": "Analysis of the Spring 2025 OBR forecast",
"description": "PolicyEngine integrates the new OBR forecasts to provide updated predictions on household income, poverty, and inequality.",
"date": "2025-03-26",
"tags": ["uk", "impact", "featured"],
"filename": "obr-forecast-2025.ipynb",
"image": "obr-forecast-2025.jpg",
"authors": ["nikhil-woodruff"]
},
{
"title": "HM Treasury pilots PolicyEngine UK for tax-benefit microsimulation",
"description": "The UK government's finance ministry explores PolicyEngine as a potential supplement to existing models.",
"date": "2025-03-24",
"tags": ["uk", "impact", "featured"],
"filename": "hmt-policyengine-pilot.md",
"image": "analysis-of-the-spring-budget-2023.jpeg",
"authors": ["nikhil-woodruff"]
},
{
"title": "Extending the Income Tax threshold freeze to 2030",
"description": "PolicyEngine estimates extending the personal allowance and higher rate threshold freeze would raise £12.2 billion over two years.",
"date": "2025-03-25",
"tags": ["uk", "policy", "featured"],
"filename": "income-tax-freeze.md",
"image": "uk_budget_box_hunt.jpg",
"authors": ["nikhil-woodruff"]
},
{
"title": "PolicyEngine's 2022 year in review",
"description": "A year of launches, analysis, and building for the future.",
"date": "2022-12-30",
"tags": ["global", "impact"],
"filename": "policyengine-2022-year-in-review.md",
"image": "policyengine-2022-year-in-review.png",
"authors": ["max-ghenis"]
},
{
"title": "How machine learning tools make PolicyEngine more accurate",
"description": "Today, we're launching new survey weights that cut deviations from administrative statistics by 97%.",
"date": "2022-03-07",
"tags": ["uk", "technical"],
"filename": "how-machine-learning-tools-make-policyengine-more-accurate.md",
"image": "how-machine-learning-tools-make-policyengine-more-accurate.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "Enhancing the Current Population Survey for policy analysis",
"description": "We've used modern data science techniques to make PolicyEngine the UK's most accurate microsimulation model. In 2023, we'll do the same in the US.",
"date": "2022-12-28",
"tags": ["us", "technical"],
"filename": "enhancing-the-current-population-survey-for-policy-analysis.md",
"image": "enhancing-the-current-population-survey-for-policy-analysis.png",
"authors": ["max-ghenis"]
},
{
"title": "How charitable contributions affect Americans' taxes",
"description": "PolicyEngine estimates the tax impact of your donations for free.",
"date": "2022-11-29",
"tags": ["us", "policy"],
"filename": "charitable-contributions.md",
"image": "charitable-contributions.png",
"authors": ["max-ghenis"]
},
{
"title": "Maryland's standard deduction",
"description": "PolicyEngine computes the program's impact on Maryland and individual households.",
"date": "2022-11-22",
"tags": ["us", "policy"],
"filename": "maryland-standard-deduction.md",
"image": "maryland-standard-deduction.png",
"authors": ["kevin-foster"]
},
{
"title": "From OpenFisca to PolicyEngine",
"description": "OpenFisca has catapulted our progress, and now we've forked it into our own microsimulation framework.",
"date": "2022-11-10",
"tags": ["global", "technical"],
"filename": "from-openfisca-to-policyengine.md",
"image": "from-openfisca-to-policyengine.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "Oregon's Nonrefundable Exemption Credit",
"description": "PolicyEngine computes the program's impact on Oregon and individual households.",
"date": "2022-11-04",
"tags": ["us", "policy"],
"filename": "oregons-nonrefundable-exemption-credit.md",
"image": "oregons-nonrefundable-exemption-credit.jpeg",
"authors": ["kevin-foster"]
},
{
"title": "Stamp duties in PolicyEngine UK",
"date": "2022-09-22",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "technical"],
"description": "The Times reported yesterday that Prime Minister Liz Truss will announce plans to cut Stamp Duty this week. PolicyEngine now supports\u2026",
"filename": "stamp-duties-in-policyengine-uk.md",
"image": "stamp-duties-in-policyengine-uk.jpg"
},
{
"title": "Prime Minister Liz Truss\u2019s energy bill price cap",
"date": "2022-09-16",
"authors": ["max-ghenis"],
"tags": ["uk", "policy"],
"description": "See the impact in PolicyEngine.",
"filename": "prime-minister-liz-trusss-energy-bill-price-cap.md",
"image": "prime-minister-liz-trusss-energy-bill-price-cap.jpg"
},
{
"title": "Raising the marriage allowance from 10% to 100%",
"date": "2022-08-29",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "policy"],
"description": "See the reform in PolicyEngine.",
"filename": "raising-the-marriage-allowance-from-10-to-100.md",
"image": "raising-the-marriage-allowance-from-10-to-100.jpg"
},
{
"title": "PolicyEngine launches in Washington state",
"date": "2022-08-10",
"authors": ["max-ghenis"],
"tags": ["us", "technical", "us-wa"],
"description": "Washingtonians can now compute the impacts of the Working Families Tax Credit and federal reforms.",
"filename": "policyengine-launches-in-washington-state.md",
"image": "policyengine-launches-in-washington-state.jpg"
},
{
"title": "Electric vehicle tax credits under current law and the Inflation Reduction Act",
"date": "2022-08-05",
"authors": ["max-ghenis"],
"tags": ["us", "policy"],
"description": "Use PolicyEngine US to analyze provisions of the potential reconciliation bill.",
"filename": "electric-vehicle-tax-credits-under-current-law-and-the-inflation-reduction-act.md",
"image": "electric-vehicle-tax-credits-under-current-law-and-the-inflation-reduction-act.jpg"
},
{
"title": "Rishi Sunak\u2019s proposal to cut the basic rate to 16 percent",
"date": "2022-08-01",
"authors": ["max-ghenis"],
"tags": ["uk", "policy"],
"description": "See the interactive simulation on PolicyEngine",
"filename": "rishi-sunaks-proposal-to-cut-the-basic-rate-to-16-percent.md",
"image": "rishi-sunaks-proposal-to-cut-the-basic-rate-to-16-percent.jpg"
},
{
"title": "The new PolicyEngine US Population Impact page",
"date": "2022-07-01",
"authors": ["max-ghenis"],
"tags": ["us", "technical"],
"description": "You design the policy. We compute the poverty, inequality, and budgetary impacts.",
"filename": "the-new-policyengine-us-population-impact-page.md",
"image": "the-new-policyengine-us-population-impact-page.jpg"
},
{
"title": "PolicyEngine at the BIG Conference and the Beeck Center\u2019s Rules as Code Demo Day",
"date": "2022-06-09",
"authors": ["max-ghenis"],
"tags": ["us", "impact"],
"description": "Register for the BIG Conference June 23\u201325 and the Rules as Code Demo Day June 28",
"filename": "policyengine-at-the-basic-income-guarantee-conference-and-the-beeck-centers-rules-as-code-demo-day.md",
"image": "policyengine-at-the-basic-income-guarantee-conference-and-the-beeck-centers-rules-as-code-demo-day.jpg"
},
{
"title": "Impact of the Chancellor\u2019s Cost of Living Support package",
"date": "2022-05-26",
"authors": ["max-ghenis"],
"tags": ["uk", "policy"],
"description": "See the analysis in PolicyEngine UK",
"filename": "impact-of-the-chancellors-cost-of-living-support-package.md",
"image": "impact-of-the-chancellors-cost-of-living-support-package.jpg"
},
{
"title": "How developers can explore the PolicyEngine API",
"date": "2022-04-29",
"authors": ["nikhil-woodruff"],
"tags": ["global", "technical"],
"description": "The UK API explorer and US API explorer describe variables and policy parameters in our models.",
"filename": "how-developers-can-explore-the-policyengine-api.md",
"image": "how-developers-can-explore-the-policyengine-api.jpg"
},
{
"title": "Make Everyone a Policymaker",
"date": "2021-10-15",
"authors": ["nikhil-woodruff"],
"tags": ["global", "impact"],
"description": "Today we're (re)launching PolicyEngine to give the public unprecedented insight into the tax and benefit system.",
"filename": "make-everyone-a-policymaker.md",
"image": "make-everyone-a-policymaker.webp"
},
{
"title": "Analysing Autumn Budget Universal Credit reforms with PolicyEngine",
"date": "2021-10-30",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "policy"],
"description": "See how the reform affects the UK population or your household.",
"filename": "analysing-autumn-budget-universal-credit-reforms-with-policyengine.md",
"image": "analysing-autumn-budget-universal-credit-reforms-with-policyengine.webp"
},
{
"title": "Income Tax cuts Rishi Sunak is reportedly considering",
"date": "2021-12-04",
"authors": ["max-ghenis"],
"tags": ["uk", "policy"],
"description": "Explore the basic rate and additional rate cuts in PolicyEngine.",
"filename": "income-tax-cuts-rishi-sunak-is-reportedly-considering.md",
"image": "income-tax-cuts-rishi-sunak-is-reportedly-considering.webp"
},
{
"title": "PolicyEngine's 2021 year in review",
"date": "2021-12-29",
"authors": ["max-ghenis"],
"tags": ["global", "impact"],
"description": "PolicyEngine's inaugural year was a substantial one for public policy.",
"filename": "policyengines-2021-year-in-review.md",
"image": "policyengines-2021-year-in-review.webp"
},
{
"title": "The Green Party Manifesto at PolicyFest",
"date": "2022-01-26",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "policy"],
"description": "Explore the Green Party Manifesto on PolicyEngine.",
"filename": "the-green-party-manifesto-at-policyfest.md",
"image": "the-green-party-manifesto-at-policyfest.webp"
},
{
"title": "PolicyEngine arrives stateside",
"date": "2022-03-31",
"authors": ["max-ghenis"],
"tags": ["us", "impact"],
"description": "Today, we're beta-launching PolicyEngine US and several other new features.",
"filename": "policyengine-comes-stateside.md",
"image": "policyengine-comes-stateside.webp"
},
{
"title": "How PolicyEngine estimates the effects of UK carbon taxes",
"date": "2022-04-23",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "technical"],
"description": "By fusing datasets with machine learning, we empower anyone to integrate custom carbon taxes with other tax and benefit reforms.",
"filename": "how-policyengine-estimates-the-effects-of-uk-carbon-taxes.md",
"image": "how-policyengine-estimates-the-effects-of-uk-carbon-taxes.png"
},
{
"title": "Tax cuts in Prime Minister Truss's Growth Plan 2022",
"date": "2022-09-23",
"authors": ["max-ghenis"],
"tags": ["uk", "policy"],
"description": "See the impact on the population and on your household in PolicyEngine UK.",
"filename": "tax-cuts-in-prime-minister-trusss-growth-plan.md",
"image": "tax-cuts-in-prime-minister-trusss-growth-plan.png"
},
{
"title": "How to simulate basic and guaranteed income policies in PolicyEngine US",
"date": "2022-09-27",
"authors": ["max-ghenis"],
"tags": ["us", "technical"],
"description": "From universal basic income to age-dependent means-tested payments, we've got you covered.",
"filename": "how-to-simulate-basic-and-guaranteed-income-policies-in-policyengine-us.md",
"image": "how-to-simulate-basic-and-guaranteed-income-policies-in-policyengine-us.png"
},
{
"title": "PolicyEngine launches in New York state",
"date": "2022-10-21",
"authors": ["max-ghenis"],
"tags": ["us", "policy"],
"description": "New Yorkers can now estimate their state income taxes alongside federal taxes and benefits — and change the rules, too.",
"filename": "policyengine-launches-in-new-york-state.md",
"image": "policyengine-launches-in-new-york-state.webp"
},
{
"title": "Computing your Oregon Earned Income Tax Credit in PolicyEngine",
"date": "2022-10-24",
"authors": ["kevin-foster"],
"tags": ["us", "policy"],
"description": "We walk you through it step by step.",
"filename": "computing-your-oregon-earned-income-tax-credit.md",
"image": "computing-your-oregon-earned-income-tax-credit.png"
},
{
"title": "Estimating your Supplemental Security Income benefits in PolicyEngine",
"date": "2022-10-28",
"authors": ["max-ghenis"],
"tags": ["us", "policy"],
"description": "Enter your household information, and our free web app will estimate your SSI — plus other taxes and benefits.",
"filename": "estimating-your-supplemental-security-income-benefits-in-policyengine.md",
"image": "estimating-your-supplemental-security-income-benefits-in-policyengine.webp"
},
{
"title": "Updating PolicyEngine to reflect SNAP reform in the omnibus bill",
"date": "2022-12-23",
"authors": ["max-ghenis"],
"tags": ["us", "technical"],
"description": "A step-by-step guide to syncing our code with the latest legislation.",
"filename": "updating-policyengine-to-reflect-snap-reform-in-the-omnibus-bill.md",
"image": "updating-policyengine-to-reflect-snap-reform-in-the-omnibus-bill.webp"
},
{
"title": "From idea to impact: scoring a policy reform on the new PolicyEngine UK",
"date": "2023-01-12",
"authors": ["nikhil-woodruff"],
"tags": ["uk", "technical"],
"description": "A walkthrough of the new app on a UK tax-benefit reform.",
"filename": "from-idea-to-impact-scoring-a-policy-reform-on-the-new-policyengine-uk.md",
"image": "from-idea-to-impact-scoring-a-policy-reform-on-the-new-policyengine-uk.png"
},
{
"title": "From idea to impact: scoring a policy reform on the new PolicyEngine US",
"date": "2023-01-12",
"authors": ["nikhil-woodruff"],
"tags": ["us", "technical"],
"description": "A walkthrough of the new app on a US tax-benefit reform.",
"filename": "from-idea-to-impact-scoring-a-policy-reform-on-the-new-policyengine-us.md",
"image": "from-idea-to-impact-scoring-a-policy-reform-on-the-new-policyengine-us.png"
},
{
"title": "The New PolicyEngine",
"date": "2023-01-12 00:00:01",
"authors": ["max-ghenis"],
"tags": ["us", "impact"],
"description": "We're exiting beta with the most accessible tax and benefit model ever built.",
"filename": "us-the-new-policyengine.md",
"image": "us-the-new-policyengine.png"
},
{
"title": "The New PolicyEngine",
"date": "2023-01-12 00:00:01",
"authors": ["max-ghenis"],
"tags": ["uk", "impact"],
"description": "We're taking economic policy to the next level with the most accessible tax and benefit model ever built.",
"filename": "uk-the-new-policyengine.md",
"image": "uk-the-new-policyengine.png"
},
{
"title": "How would reforms affect cliffs?",
"date": "2023-02-02 21:00:00",
"authors": ["max-ghenis", "nikhil-woodruff"],
"tags": ["us", "policy"],
"description": "We've added a new feature to the US version of PolicyEngine that lets you see how your reforms affect cliffs.",
"filename": "how-would-reforms-affect-cliffs.md",
"image": "how-would-reforms-affect-cliffs.png"
},
{
"title": "Reform UK's Emergency Recovery Plan",
"description": "See the UK party's proposed deficit-funded tax cuts in PolicyEngine",
"date": "2023-02-09 11:15:00",
"tags": ["uk", "policy"],
"filename": "reform-uks-emergency-recovery-plan.md",
"image": "reform-uks-emergency-recovery-plan.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "The Child Tax Credit in 2023",
"description": "We review how the program works and compute its impact with PolicyEngine US.",
"date": "2023-02-09 00:00:00",
"tags": ["us", "policy"],
"filename": "the-child-tax-credit-in-2023.md",
"image": "the-child-tax-credit-in-2023.png",
"authors": ["max-ghenis"]
},
{
"title": "Restoration of the American Rescue Plan Act's expanded Child Tax Credit",
"description": "PolicyEngine computes how the 2021 policy would affect Americans and America in 2023.",
"date": "2023-02-10 00:00:00",
"tags": ["us", "policy"],
"filename": "restoration-of-the-american-rescue-plan-acts-expanded-child-tax-credit.md",
"image": "restoration-of-the-american-rescue-plan-acts-expanded-child-tax-credit.png",
"authors": ["max-ghenis"]
},
{
"title": "OpenFisca wins Edge of Government's Innovation Award",
"description": "The success of Rules as Code and its impact on citizens.",
"date": "2023-02-15 00:00:00",
"tags": ["global", "impact"],
"filename": "openfisca-wins-edge-of-government-innovation-award.md",
"image": "openfisca-wins-edge-of-government-innovation-award.jpeg",
"authors": ["max-ghenis"]
},
{
"title": "Massachusetts Governor Maura Healey's FY 2024 Budget Recommendation",
"description": "PolicyEngine estimates the distributional impact of two provisions and the household impact of four provisions.",
"date": "2023-03-03 00:00:00",
"tags": ["us", "us-ma", "policy"],
"filename": "massachusetts-governor-maura-healeys-fy-2024-budget-recommendation.md",
"image": "massachusetts-governor-maura-healeys-fy-2024-budget-recommendation.webp",
"authors": ["max-ghenis", "nicholas-rodelo"]
},
{
"title": "The UK's extended Energy Price Guarantee",
"description": "Analysis by PolicyEngine on the expected effects on income, poverty, and inequality.",
"date": "2023-03-05 07:30:00",
"tags": ["uk", "policy"],
"filename": "projected-impact-of-the-uks-extended-energy-price-guarantee.md",
"image": "projected-impact-of-the-uks-extended-energy-price-guarantee.png",
"authors": ["nikhil-woodruff", "max-ghenis"]
},
{
"title": "Breaking down poverty impacts by sex",
"description": "PolicyEngine estimates the impact of customizable policy reforms on poverty — overall, by age, and now by sex.",
"date": "2023-03-08 07:30:00",
"tags": ["us", "technical"],
"filename": "breaking-down-us-poverty-impacts-by-sex.md",
"image": "breaking-down-poverty-impacts-by-sex.png",
"authors": ["max-ghenis"]
},
{
"title": "Breaking down poverty impacts by sex",
"description": "PolicyEngine estimates the impact of customisable policy reforms on poverty — overall, by age, and now by sex.",
"date": "2023-03-08 07:30:00",
"tags": ["uk", "technical"],
"filename": "breaking-down-uk-poverty-impacts-by-sex.md",
"image": "breaking-down-poverty-impacts-by-sex.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "Analysis of the Spring Budget 2023",
"description": "PolicyEngine analysis estimates the impact of the EPG extension and the fuel duty freeze.",
"date": "2023-03-15 18:10:00",
"tags": ["uk", "policy"],
"filename": "analysis-of-the-spring-budget-2023.md",
"image": "analysis-of-the-spring-budget-2023.jpeg",
"authors": ["nikhil-woodruff"]
},
{
"title": "Automate policy analysis with PolicyEngine's new ChatGPT integration",
"description": "Score an economic impact in a few clicks. Write a report in one more.",
"date": "2023-03-17 11:00:00",
"tags": ["global", "technical"],
"filename": "automate-policy-analysis-with-policy-engines-new-chatgpt-integration.md",
"image": "automate-policy-analysis-with-policy-engines-new-chatgpt-integration.png",
"authors": ["nikhil-woodruff", "chat-gpt"]
},
{
"title": "Oregon's nonrefundable exemption credit: a closer look",
"description": "PolicyEngine computes the program's impact on Oregon and individual households.",
"date": "2023-03-15",
"tags": ["us", "policy"],
"filename": "oregons-nonrefundable-exemption-credit.md",
"image": "oregons-nonrefundable-exemption-credit.jpeg",
"authors": ["kevin-foster"]
},
{
"title": "How much should James Medlock donate to GiveDirectly?",
"description": "We built a mini-app with the policyengine-us Python package to crunch the implications of a Twitter bet.",
"date": "2023-03-23 01:00:00",
"tags": ["us", "technical"],
"filename": "medlock-donation-calculator.md",
"image": "medlock-donation-calculator.png",
"authors": ["max-ghenis", "nikhil-woodruff"]
},
{
"title": "FiscalSim and PolicyEngine: Emphasizing collaboration and open-source acknowledgment",
"description": "The Center for Growth and Opportunity launches FiscalSim, a US policy-computing web app drawing heavily from PolicyEngine's work.",
"date": "2023-03-24 01:00:00",
"tags": ["us", "technical"],
"filename": "fiscalsim.md",
"image": "fiscalsim.png",
"authors": ["max-ghenis", "nikhil-woodruff"]
},
{
"title": "Restoring the American Rescue Plan's Earned Income Tax Credit Expansion",
"description": "We review how the expansion works and model its impact with PolicyEngine US.",
"date": "2023-03-27 01:00:00",
"tags": ["us", "policy"],
"filename": "restoring-arpa-eitc.md",
"image": "eitc.webp",
"authors": ["arthur-wright"]
},
{
"title": "Breaking down policy impacts by wealth decile",
"description": "Income isn't everything.",
"date": "2023-03-28 09:00:00",
"tags": ["uk", "technical"],
"filename": "breaking-down-policy-impacts-by-wealth-decile.md",
"image": "breaking-down-policy-impacts-by-wealth-decile.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "The District Child Tax Credit proposal",
"description": "Analysis of DC Councilmember Zachary Parker's new legislation.",
"date": "2023-04-02 09:00:00",
"tags": ["us", "us-dc", "policy"],
"filename": "district-child-tax-credit.md",
"image": "district-child-tax-credit.png",
"authors": ["max-ghenis"]
},
{
"title": "Announcing the addition of Kansas income tax to PolicyEngine",
"description": "We've expanded our tax calculator and customizable reform simulator to the Sunflower State.",
"date": "2023-04-03 09:00:00",
"tags": ["us", "us-ks", "policy"],
"filename": "kansas-income-tax.md",
"image": "kansas-income-tax.png",
"authors": ["max-ghenis"]
},
{
"title": "Revolutionizing policy analysis with AI",
"description": "Discover PolicyEngine's new GPT-4 integration and audience modes.",
"date": "2023-04-03 16:00:00",
"tags": ["global", "technical"],
"filename": "gpt-analysis.md",
"image": "ai-analysis.png",
"authors": ["nikhil-woodruff", "chat-gpt"]
},
{
"title": "Introducing California income tax analysis on PolicyEngine",
"description": "Expanding our tax calculator and reform simulator capabilities to the most populous state.",
"date": "2023-04-07 09:00:00",
"tags": ["us", "us-ca", "policy"],
"filename": "california-income-tax.md",
"image": "california-income-tax.png",
"authors": ["max-ghenis"]
},
{
"title": "PolicyEngine adds New York Family Assistance (TANF) to US model",
"description": "Enhancing analysis of public policy impacts on needy families.",
"date": "2023-04-08 09:00:00",
"tags": ["us", "us-ny", "policy"],
"filename": "new-york-tanf.md",
"image": "new-york-tanf.png",
"authors": ["max-ghenis", "donglai-xu", "lin-tao"]
},
{
"title": "Analysis of the DC Financial Support for Families with Children Amendment Act",
"description": "Evaluating Councilmember Zachary Parker's second Child Tax Credit proposal of 2023.",
"date": "2023-04-16 09:00:00",
"tags": ["us", "us-dc", "policy"],
"filename": "dc-financial-support-for-families-with-children.md",
"image": "dc-financial-support-for-families-with-children.png",
"authors": ["max-ghenis"]
},
{
"title": "Introducing Utah State Income Tax Analysis on PolicyEngine",
"description": "Expanding our tax calculator and reform simulator capabilities to the Beehive State.",
"date": "2023-04-17 09:00:00",
"tags": ["us", "us-ut", "policy"],
"filename": "introducing-utah-state-income-tax-analysis-on-policyengine.md",
"image": "introducing-utah-state-income-tax-analysis-on-policyengine.webp",
"authors": ["nikhil-woodruff"]
},
{
"title": "Building the roots of PolicyEngine Nigeria",
"description": "We're expanding PolicyEngine's reach by empowering Nigerians to understand personal income tax policies.",
"date": "2023-04-21 09:00:00",
"tags": ["ng", "technical"],
"filename": "building-the-roots-of-policyengine-nigeria.md",
"image": "building-the-roots-of-policyengine-nigeria.webp",
"authors": ["nikhil-woodruff", "max-ghenis"]
},
{
"title": "Kansas's Flat Tax Proposal — SB169",
"description": "We review how the bill works and model its impact with PolicyEngine US.",
"date": "2023-04-23 09:00:00",
"tags": ["us", "us-ks", "policy"],
"filename": "kansas-flat-income-tax-sb-169.md",
"image": "kansas-flat-income-tax-sb-169.webp",
"authors": ["arthur-wright"]
},
{
"title": "Digital Public Goods Alliance recognizes PolicyEngine as a Digital Public Good",
"description": "The UN-endorsed initiative highlights PolicyEngine's open source approach to supporting the Sustainable Development Goals.",
"date": "2023-04-26 09:00:00",
"tags": ["global", "impact"],
"filename": "digital-public-goods-alliance-recognizes-policyengine-as-a-digital-public-good.md",
"image": "digital-public-goods-alliance-recognizes-policyengine-as-a-digital-public-good.webp",
"authors": ["nikhil-woodruff"]
},
{
"title": "How PolicyEngine shaped the outcome of the $1 million bet James Medlock won today",
"description": "Our free tax calculator helped determine Balaji Srinivasan's $500,000 payments to Medlock and GiveDirectly.",
"date": "2023-05-02 16:00:00",
"tags": ["us", "technical"],
"filename": "medlock-wins.md",
"image": "medlock-wins.png",
"authors": ["max-ghenis"]
},
{
"title": "Analysis of Guaranteed Income for the 21st Century",
"description": "The proposal from the New School and the Economic Security Project would lower poverty and inequality while expanding cliffs.",
"date": "2023-06-08 13:45:00",
"filename": "analysis-of-guaranteed-income-for-the-21st-century.md",
"tags": ["us", "featured", "policy"],
"image": "analysis-of-guaranteed-income-for-the-21st-century.jpg",
"authors": ["max-ghenis"]
},
{
"title": "Analysis of the Working Families Tax Cut Act",
"description": "How the proposal to increase the standard deduction would affect households and society.",
"date": "2023-06-08 20:00:00",
"filename": "malliotakis-steel-working-families-tax-cut-act.md",
"tags": ["us", "featured", "policy"],
"image": "malliotakis-steel-working-families-tax-credit-act.png",
"authors": ["max-ghenis", "nikhil-woodruff"]
},
{
"title": "Unveiling poverty impacts by race and ethnicity",
"description": "A new feature from PolicyEngine reveals how customizable tax and benefit reforms affect poverty rates for Black, White, Hispanic, and other Americans.",
"date": "2023-06-19 20:00:00",
"filename": "poverty-race-ethnicity.md",
"tags": ["us", "technical"],
"image": "poverty-race-ethnicity.jpg",
"authors": ["max-ghenis"]
},
{
"title": "Scott Winship's individualized Earned Income Tax Credit proposal",
"description": "An analysis and note on the value of open-source models.",
"date": "2023-07-14 08:00:00",
"filename": "winship-individualized-eitc.md",
"tags": ["us", "policy", "featured"],
"image": "winship-individualized-eitc.jpg",
"authors": ["max-ghenis"]
},
{
"title": "Dive Into New Mexico's Income Tax Analysis on PolicyEngine",
"description": "Expanding our tax calculator and reform simulator capabilities to the Land of Enchantment.",
"date": "2023-08-02 16:00:00",
"filename": "new-mexico-income-tax-launch.md",
"tags": ["us", "us-nm", "featured", "policy"],
"image": "new-mexico-income-tax-launch.png",
"authors": ["max-ghenis", "pavel-makarchuk"]
},
{
"title": "Repealing the Universal Credit two-child limit",
"description": "How removing the limit of some benefits to two children would affect the UK in 2023.",
"date": "2023-08-07 16:00:00",
"filename": "repealing_the_two_child_limit.md",
"tags": ["uk", "policy"],
"image": "two_child_limit.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "New King's College London research uses PolicyEngine",
"description": "A ‘Citizens' Economic Council' explores PolicyEngine-scored tax-benefit impacts.",
"date": "2023-11-04 09:00:00",
"filename": "citizens-economic-council.md",
"tags": ["uk", "impact"],
"image": "citizens-economic-council.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "Autumn Statement 2023 tax-benefit reforms",
"description": "Chancellor Jeremy Hunt just announced National Insurance cuts and benefit uprating. We've evaluated these reforms.",
"date": "2023-11-22 17:25",
"filename": "autumn-statement-2023.md",
"tags": ["uk", "policy"],
"image": "jeremy-hunt.jpg",
"authors": ["nikhil-woodruff"]
},
{
"title": "Autumn 2023 model calibration update",
"description": "Evaluating PolicyEngine's model performance with the latest official statistics.",
"date": "2023-12-04 09:00:00",
"filename": "uk-calibration-2023-q4.ipynb",
"tags": ["uk", "technical"],
"image": "uk-calibration-dec-2023-update.png",
"authors": ["nikhil-woodruff"]
},
{
"title": "Preliminary analysis of the Wyden-Smith Child Tax Credit expansion",
"description": "PolicyEngine estimates the impact of the reported compromise to expand the Child Tax Credit's refundable component.",
"date": "2024-01-11 12:00:00",
"filename": "wyden-smith-ctc.md",
"tags": ["us", "impact", "featured", "child-tax-credit"],
"image": "wyden.jpeg",
"authors": ["max-ghenis", "pavel-makarchuk"]
},
{
"title": "Spring Budget 2024 proposals",
"description": "PolicyEngine estimates reported likely tax-benefit reforms ahead of the UK Spring Budget.",
"date": "2024-03-04 09:00:00",
"filename": "spring-budget-2024.ipynb",
"tags": ["uk", "policy"],
"image": "jeremy-hunt-with-budget-box.jpg",
"authors": ["anthony-volk", "nikhil-woodruff"]
},
{
"title": "Spring Budget 2024",
"description": "PolicyEngine estimates the impact of the UK Spring Budget.",
"date": "2024-03-06 09:00:00",
"filename": "uk-2024-spring-budget.ipynb",
"tags": ["uk", "policy"],
"image": "uk_budget_box_hunt.jpg",
"authors": ["nikhil-woodruff", "anthony-volk"]
},
{
"title": "Beta-launch: PolicyEngine's enhanced microdata for policy analysis",
"description": "By integrating and calibrating multiple datasets, PolicyEngine makes world-class tax-benefit microsimulation modeling available to anyone.",
"date": "2024-03-25 09:00:00",
"tags": ["us", "technical", "featured"],
"authors": ["max-ghenis", "nikhil-woodruff"],
"filename": "enhanced-cps-beta.md",
"image": "enhanced-cps-beta.png"
},
{
"title": "Child Tax Credit Provisions of the Tax Relief for American Workers and Families Act",
"description": "How the Wyden-Smith bipartisan tax package would affect families through 2025.",
"date": "2024-03-25 09:00:00",
"tags": ["us", "policy", "featured"],
"authors": ["max-ghenis"],
"filename": "trafwa-ctc.md",
"image": "trafwa-ctc.webp"
},
{
"title": "Individual income tax provisions of President Biden's 2025 Budget",
"description": "PolicyEngine projects the impact of expanding tax credits and raising taxes on high-income filers.",
"date": "2024-03-27 09:00:00",
"tags": ["us", "policy", "featured"],
"authors": ["max-ghenis", "pavel-makarchuk"],
"filename": "biden-budget-2025.md",
"image": "biden-budget-2025.jpeg"
},
{
"title": "PolicyEngine launches state income tax modeling nationwide",
"description": "Free, open-source platform now covers all 50 states and D.C., just in time for tax season.",
"date": "2024-04-15 09:00:00",
"tags": ["us", "policy", "featured"],
"authors": ["pavel-makarchuk"],
"filename": "state-tax-model-beta.md",
"image": "state-tax-model-beta.png"
},
{
"title": "PolicyEngine's Spring 2024 update",
"description": "How PolicyEngine compares to the latest external forecasts.",
"date": "2024-04-16 09:00:00",
"tags": ["uk", "policy"],
"image": "uk_march_update.png",
"authors": ["nikhil-woodruff"],
"filename": "obr-forecast-update-spring-24.ipynb"
},
{
"title": "The Triple Lock Plus",
"description": "PolicyEngine estimates the impact of the UK government's proposed pension uprating policy reform.",
"date": "2024-05-28 09:00:00",
"tags": ["uk", "policy"],
"authors": ["nikhil-woodruff"],
"filename": "uk-triple-lock-plus.ipynb",
"image": "uk-triple-lock-plus.jpg"
},
{
"title": "The Liberal Democrat Manifesto",
"description": "PolicyEngine's comprehensive impact score.",
"date": "2024-06-11 16:30:00",
"tags": ["uk", "policy"],
"authors": ["nikhil-woodruff"],
"filename": "lib-dem-2024-manifesto.md",
"image": "lib-dem-manifesto-2024.jpeg"
},