-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpolicies.json
More file actions
3974 lines (3974 loc) · 147 KB
/
policies.json
File metadata and controls
3974 lines (3974 loc) · 147 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
[
{
"id": 1,
"topic": "immigration",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Reduce immigration, focus on talent and francophones",
"FR": "Réduire l'immigration, se concentrer sur les talents et les francophones"
},
"references": [
{
"url": "https://www.theglobeandmail.com/canada/article-liberal-leadership-hopeful-mark-carney-says-he-would-put-a-temporary/",
"title": "Liberal leadership hopeful Mark Carney says he would put a temporary cap on immigration",
"publisher": "The Globe and Mail",
"date": "Feb 24, 2025"
},
{
"url": "https://www.theglobeandmail.com/politics/article-economic-uncertainty-top-of-mind-for-voters-as-parties-gear-up-for/",
"title": "Economic uncertainty top of mind for voters as parties gear up for monumental federal election",
"publisher": "The Globe and Mail",
"date": "Mar 23, 2025"
},
{
"url": "https://liberal.ca/wp-content/uploads/sites/292/2025/04/Canada-Strong.pdf",
"title": "Canada Strong",
"publisher": "Liberal Party of Canada",
"date": "Apr 19, 2025"
}
]
},
{
"id": 3,
"topic": "immigration",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Reduce annual new permanent residents by 50%, base on housing construction",
"FR": "Réduire de 50 % le nombre annuel de nouveaux résidents permanents, en se basant sur la construction de logements"
},
"references": [
{
"url": "https://www.junonews.com/p/exclusive-poilievre-vows-200k-250k",
"title": "EXCLUSIVE: Poilievre suggests capping immigration at Harper-era levels, deportations for wrongdoers",
"publisher": "Juno News",
"date": "Feb 13, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/pbo-report-housing-gap-immigration-1.7384410",
"title": "Liberal government's immigration plan will cut housing gap almost in half, report says",
"publisher": "CBC News",
"date": "Nov 15, 2024"
}
]
},
{
"id": 5,
"topic": "international-trade",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Support targeted, dollar-for-dollar counter-tariffs against the U.S.",
"FR": "Droits de douane de rétorsion à raison d'un dollar pour un dollar"
},
"references": [
{
"url": "https://www.ndp.ca/news/steel-and-aluminum-tariffs-singh-calls-urgent-worker-supports-and-fightback",
"title": "Steel and aluminum tariffs: Singh calls for urgent worker supports and fightback",
"publisher": "New Democratic Party",
"date": "Feb 10, 2025"
}
]
},
{
"id": 8,
"topic": "government",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Conflict of Interest Act reform",
"FR": "Réforme de la loi sur les conflits d'intérêts"
},
"references": [
{
"url": "https://www.cbc.ca/news/politics/mark-carney-puts-assets-in-blind-trust-1.7480909?cmp=rss",
"title": "Poilievre says Carney's taking advantage of an ethics loophole. Is he right?",
"publisher": "CBC News",
"date": "Mar 11, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/incoming-prime-minister-mark-carney-says-he-has-put-his-assets-in-a-blind-trust/article_930e6cc2-ac45-5e94-921e-b92eb095e26c.html",
"title": "Incoming prime minister Mark Carney says he has put his assets in a blind trust",
"publisher": "Toronto Star",
"date": "Mar 14, 2025"
}
]
},
{
"id": 9,
"topic": "government",
"party": "Green",
"year": 2025,
"title": {
"EN": "“Wartime” cabinet focused on responding to U.S. threats",
"FR": "Le cabinet « de guerre » s'attache à répondre aux menaces américaines"
},
"references": [
{
"url": "https://www.thestar.com/politics/federal/poilievre-wants-to-impose-50-per-cent-metal-tariffs-on-u-s-after-latest-trump/article_f32139b7-fff6-52a0-bce9-92b0ed6cea88.html",
"title": "Poilievre wants to impose 50 per cent metal tariffs on U.S. after latest Trump threat",
"publisher": "Toronto Star",
"date": "Mar 11, 2025"
}
]
},
{
"id": 11,
"topic": "indigenous-relations",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Cancel Chalk River project",
"FR": "Annuler le projet de Chalk River"
},
"references": [
{
"url": "https://www.blocquebecois.org/victoire-en-cour-de-la-premiere-nation-de-kebaowek-ottawa-doit-ecouter-et-renoncer-a-chalk-river/",
"title": "Victoire en Cour de la Première Nation de Kebaowek: Ottawa doit écouter et renoncer à Chalk River",
"publisher": "Bloc Québécois",
"date": "Feb 21, 2025"
}
]
},
{
"id": 13,
"topic": "affordability",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Grocery price cap",
"FR": "Plafonnement des prix des produits d'épicerie"
},
"references": [
{
"url": "https://www.ndp.ca/news/singh-well-cap-grocery-prices-and-make-food-more-affordable-canadians",
"title": "Singh: We’ll cap grocery prices and make food more affordable for Canadians",
"publisher": "New Democratic Party",
"date": "Mar 29, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/singh-poilievre-pitch-affordability-proposals-while-carney-meets-with-volunteers-1.7497043?cmp=rss",
"title": "Singh, Poilievre pitch affordability proposals while Carney meets with volunteers",
"publisher": "CBC News",
"date": "Mar 29, 2025"
}
]
},
{
"id": 16,
"topic": "health-and-safety",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Build CBSA training centre in Windsor",
"FR": "Construction d'un centre de formation de l'ASFC à Windsor"
},
"references": [
{
"url": "https://www.ndp.ca/news/ndp-will-build-cbsa-training-centre-windsor",
"title": "NDP will build CBSA training centre in Windsor",
"publisher": "New Democratic Party",
"date": "Feb 10, 2025"
}
]
},
{
"id": 17,
"topic": "civil-rights",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Stop federal funding for English in Quebec",
"FR": "Réorienter le financement de l'anglicisation"
},
"references": [
{
"url": "https://www.blocquebecois.org/?p=30239",
"title": "Analyse des comptes publics 2023-2024: 200 millions pour l’anglicisation au Québec",
"publisher": "Bloc Québécois",
"date": "Feb 27, 2025"
}
]
},
{
"id": 19,
"topic": "health-and-safety",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Support abortion access",
"FR": "Soutenir l'accès à l'avortement"
},
"references": [
{
"url": "https://www.ndp.ca/news/ndp-statement-international-womens-day-2025",
"title": "NDP statement on International Women’s Day 2025",
"publisher": "New Democratic Party",
"date": "Mar 8, 2025"
}
]
},
{
"id": 21,
"topic": "housing",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Double housing construction",
"FR": "Construction à double enveloppe"
},
"references": [
{
"url": "https://www.theglobeandmail.com/canada/article-liberal-leadership-hopeful-mark-carney-says-he-would-put-a-temporary/",
"title": "Liberal leadership hopeful Mark Carney says he would put a temporary cap on immigration",
"publisher": "The Globe and Mail",
"date": "Feb 24, 2025"
}
]
},
{
"id": 26,
"topic": "housing",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Remove conditions on $1.2 billion housing funds transfer to Québec municipalities",
"FR": "Suppression des conditions du transfert de 1,2 milliard de dollars de fonds pour le logement aux municipalités du Québec"
},
"references": [
{
"url": "https://www.blocquebecois.org/fonds-canadien-pour-les-infrastructures-liees-au-logement-ottawa-doit-cesser-de-faire-obstacle-au-logement/",
"title": "Fonds canadien pour les infrastructures liées au logement : Ottawa doit cesser de faire obstacle au logement",
"publisher": "Bloc Québécois",
"date": "Jan 30, 2025"
}
]
},
{
"id": 31,
"topic": "arts-and-culture",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Invest in Canadian journalism",
"FR": "Investir dans le journalisme canadien"
},
"references": [
{
"url": "https://www.ndp.ca/news/jagmeet-singh-and-ndp-will-invest-canadian-journalism-and-cbcradio-canada",
"title": "Jagmeet Singh and the NDP will invest in Canadian journalism and CBC/Radio-Canada",
"publisher": "New Democratic Party",
"date": "Feb 20, 2025"
}
]
},
{
"id": 33,
"topic": "youth_child-care",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Better wages for childcare workers",
"FR": "De meilleurs salaires pour les travailleurs de la petite enfance"
},
"references": [
{
"url": "https://www.ndp.ca/news/ndp-wants-see-better-wages-child-care-workers-creating-more-spots-kids",
"title": "NDP wants to see better wages for child care workers, creating more spots for kids",
"publisher": "New Democratic Party",
"date": "Mar 6, 2025"
}
]
},
{
"id": 34,
"topic": "infrastructure",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Support high-speed rail project from Toronto to Québec City",
"FR": "Soutenir le projet de train à grande vitesse entre Toronto et Québec"
},
"references": [
{
"url": "https://www.ndp.ca/news/high-speed-rail-must-be-built-publicly-using-canadian-steel-and-aluminum-ndp",
"title": "High speed rail must be built publicly, using Canadian steel and aluminum: NDP",
"publisher": "New Democratic Party",
"date": "Feb 19, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/head-of-canadas-high-speed-rail-project-wants-it-to-run-into-downtown-toronto/article_a1764783-582f-4365-885c-74a80e5868f2.html",
"title": "Head of Canada’s high speed rail project wants it to run into downtown Toronto",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
}
]
},
{
"id": 37,
"topic": "infrastructure",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Support high-speed rail project from Toronto to Québec City",
"FR": "Soutenir le projet de train à grande vitesse entre Toronto et Québec"
},
"references": [
{
"url": "https://www.blocquebecois.org/projet-de-train-a-grande-vitesse-un-pas-dans-la-bonne-direction/",
"title": "Projet de train à grande vitesse : Un pas dans la bonne direction",
"publisher": "Bloc Québécois",
"date": "Feb 19, 2025"
}
]
},
{
"id": 39,
"topic": "infrastructure",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Build east-west energy grid",
"FR": "Construire un réseau énergétique est-ouest"
},
"references": [
{
"url": "https://www.ndp.ca/news/ndp-workers-canada-plan-support-bc-jobs-and-workers",
"title": "NDP Workers for Canada plan to support B.C. jobs and workers",
"publisher": "New Democratic Party",
"date": "Mar 10, 2025"
}
]
},
{
"id": 40,
"topic": "foreign-policy",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Establish Canadian rapid-reaction UN peacekeeping force",
"FR": "Mise en place d'une force canadienne de réaction rapide pour le maintien de la paix des Nations unies"
},
"references": [
{
"url": "https://www.ndp.ca/news/ndp-statement-canadas-withdrawal-un-mission-democratic-republic-congo",
"title": "NDP Statement on Canada’s withdrawal from the UN Mission in the Democratic Republic of Congo",
"publisher": "New Democratic Party",
"date": "Feb 14, 2025"
}
]
},
{
"id": 42,
"topic": "foreign-policy",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Arctic military base, naval icebreakers",
"FR": "Base militaire dans l'Arctique, brise-glaces"
},
"references": [
{
"url": "https://www.theglobeandmail.com/canada/article-poilievre-pledges-arctic-military-base-naval-icebreakers-if-party/",
"title": "Poilievre pledges Arctic military base, naval icebreakers if party forms government",
"publisher": "The Globe and Mail",
"date": "Feb 10, 2025"
}
]
},
{
"id": 43,
"topic": "foreign-policy",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Exceed NATO target for military spending of 2% GDP before 2030",
"FR": "Dépasser l'objectif de l'OTAN de 2 % du PIB pour les dépenses militaires avant 2030"
},
"references": [
{
"url": "https://www.cbc.ca/news/politics/liberal-leadership-contender-mark-carney-defence-spending-1.7450718",
"title": "Mark Carney commits to 2% NATO defence spending benchmark by 2030",
"publisher": "CBC News",
"date": "Feb 5, 2025"
},
{
"url": "https://liberal.ca/wp-content/uploads/sites/292/2025/04/Canada-Strong.pdf",
"title": "Canada Strong",
"publisher": "Liberal Party of Canada",
"date": "Apr 19, 2025"
}
]
},
{
"id": 45,
"topic": "foreign-policy",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Reconsider purchase of F-35 fighter jets from USA",
"FR": "Reconsidérer l'achat d'avions de combat F-35 aux États-Unis"
},
"references": [
{
"url": "https://www.cbc.ca/news/politics/f35-blair-trump-1.7484477?cmp=rss",
"title": "Canada reconsidering F-35 purchase amid tensions with Washington, says minister",
"publisher": "CBC News",
"date": "March 14th, 2025"
},
{
"url": "https://www.theglobeandmail.com/politics/article-canada-must-weigh-risk-trump-blocks-software-upgrades-for-f-35s/",
"title": "Canada must weigh risk Trump blocks software upgrades for F-35s: former official",
"publisher": "The Globe and Mail",
"date": "Mar 19, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/mark-carney-says-canada-will-buy-6-billion-missile-detection-system-to-confront-threats-from/article_0ad77652-040f-11f0-9fcd-9f1a2cf539b2.html",
"title": "Mark Carney says Canada will buy $6-billion missile detection system to confront threats from Russia and China",
"publisher": "Toronto Star",
"date": "Mar 18, 2025"
}
]
},
{
"id": 46,
"topic": "foreign-policy",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Sanctions against Rwanda",
"FR": "Sanctions contre le Rwanda"
},
"references": [
{
"url": "https://www.blocquebecois.org/le-bloc-quebecois-condamne-les-operations-du-rwanda-en-republique-democratique-du-congo/",
"title": "Le Bloc Québécois condamne les opérations du Rwanda en République démocratique du Congo",
"publisher": "Bloc Québécois",
"date": "Feb 21st, 2025"
}
]
},
{
"id": 50,
"topic": "infrastructure",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Commit $1 billion to co-fund roads, approve “Ring of Fire” northern Ontario mining permits within 6 months",
"FR": "Engager 1 milliard de dollars pour cofinancer les routes, approuver les permis d'exploitation minière du « Cercle de feu » dans le nord de l'Ontario dans un délai de 6 mois"
},
"references": [
{
"url": "https://www.conservative.ca/poilievre-promises-to-unlock-ring-of-fire/#utm_source=rss&utm_medium=rss&utm_campaign=poilievre-promises-to-unlock-ring-of-fire",
"title": "Poilievre promises to unlock Ring of Fire",
"publisher": "Conservative Party of Canada",
"date": "Mar 19, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/poilievre-says-he-wants-to-greenlight-ring-of-fire-mining-permits-within-six-months/article_9b66819e-8fe0-56b7-a984-b5239a8cdf7f.html",
"title": "Pierre Poilievre says he wants to greenlight Ring of Fire mining permits within six months",
"publisher": "Toronto Star",
"date": "Mar 19, 2025"
},
{
"url": "https://www.cbc.ca/news/canada/sudbury/ring-of-fire-poiliever-critical-minerals-sudbury-1.7487363?cmp=rss",
"title": "Federal Conservative leader stops in Sudbury with promises of 'unlocking' Ring of Fire",
"publisher": "CBC News",
"date": "Mar 19, 2025"
},
{
"url": "https://www.theglobeandmail.com/business/article-poilievre-says-conservatives-would-co-fund-roads-with-ontario-into/",
"title": "Poilievre says Conservatives would co-fund roads with Ontario into Ring of Fire, speed up development",
"publisher": "The Globe and Mail",
"date": "Mar 19, 2025"
}
]
},
{
"id": 52,
"topic": "foreign-policy",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Cancel F-35 fighter jet contract with USA, build jets in Canada",
"FR": "Annulation du contrat relatif aux avions de combat F-35 conclu avec les États-Unis et construction d'avions au Canada"
},
"references": [
{
"url": "https://www.thestar.com/politics/federal/mark-carney-says-canada-will-buy-6-billion-missile-detection-system-to-confront-threats-from/article_0ad77652-040f-11f0-9fcd-9f1a2cf539b2.html",
"title": "Mark Carney says Canada will buy $6-billion missile detection system to confront threats from Russia and China",
"publisher": "Toronto Star",
"date": "Mar 18, 2025"
}
]
},
{
"id": 57,
"topic": "housing",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "$253 million to fund housing and infrastructure supports in the north",
"FR": "253 millions de dollars pour financer le logement et les infrastructures dans le Nord"
},
"references": [
{
"url": "https://www.theglobeandmail.com/politics/article-canada-australia-radar-system/",
"title": "Canada partners with Australia on radar system to detect threats from Russia and China",
"publisher": "The Globe and Mail",
"date": "Mar 18, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/mark-carney-says-canada-will-buy-6-billion-missile-detection-system-to-confront-threats-from/article_0ad77652-040f-11f0-9fcd-9f1a2cf539b2.html",
"title": "Mark Carney says Canada will buy $6-billion missile detection system to confront threats from Russia and China",
"publisher": "Toronto Star",
"date": "Mar 18, 2025"
}
]
},
{
"id": 61,
"topic": "international-trade",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Expand trade beyond the U.S. with higher standards for workers and the environment",
"FR": "Développer les échanges commerciaux au-delà des États-Unis en appliquant des normes plus strictes pour les travailleurs et l'environnement"
},
"references": [
{
"url": "https://www.ndp.ca/news/jagmeet-singh-calls-help-workers-steelworkers-back-ndp-ahead-election-call",
"title": "Jagmeet Singh calls for help for workers; Steelworkers back NDP ahead of election call",
"publisher": "New Democratic Party",
"date": "Mar 20, 2025"
}
]
},
{
"id": 62,
"topic": "international-trade",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Prioritize procurement, value-added processing within Canada",
"FR": "Priorité à l'approvisionnement et à la transformation à valeur ajoutée au Canada"
},
"references": [
{
"url": "https://www.ndp.ca/news/jagmeet-singh-calls-help-workers-steelworkers-back-ndp-ahead-election-call",
"title": "Jagmeet Singh calls for help for workers; Steelworkers back NDP ahead of election call",
"publisher": "New Democratic Party",
"date": "Mar 20, 2025"
},
{
"url": "https://www.ndp.ca/news/ndp-leader-jagmeet-singh-announces-plan-protect-canadian-workers-trumps-trade-war",
"title": "NDP Leader Jagmeet Singh Announces Plan to Protect Canadian Workers from Trump’s Trade War",
"publisher": "New Democratic Party",
"date": "Apr 2, 2025"
}
]
},
{
"id": 63,
"topic": "economy",
"party": "NDP",
"year": 2025,
"title": {
"EN": "Protect Canadian industries from foreign takeovers",
"FR": "Protéger les industries canadiennes des prises de contrôle étrangères"
},
"references": [
{
"url": "https://www.ndp.ca/news/jagmeet-singh-calls-help-workers-steelworkers-back-ndp-ahead-election-call",
"title": "Jagmeet Singh calls for help for workers; Steelworkers back NDP ahead of election call",
"publisher": "New Democratic Party",
"date": "Mar 20, 2025"
}
]
},
{
"id": 68,
"topic": "immigration",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Consider changes to the Safe Third Country Agreement with the United States",
"FR": "Examiner les modifications à apporter à l'accord sur les pays tiers sûrs conclu avec les États-Unis"
},
"references": [
{
"url": "https://www.theglobeandmail.com/politics/article-new-immigration-minister-says-trump-presidency-could-prompt-best-and/",
"title": "New immigration minister says Trump presidency could prompt best and brightest to choose Canada",
"publisher": "The Globe and Mail",
"date": "Mar 20, 2025"
}
]
},
{
"id": 70,
"topic": "infrastructure",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Pre-publish permits for power stations, LNG plants and pipelines",
"FR": "Pré-publication des permis pour les centrales électriques, les usines de GNL et les pipelines"
},
"references": [
{
"url": "https://www.theglobeandmail.com/politics/article-poilievre-promotes-reviving-lng-project-in-quebecs-saguenay-region/",
"title": "Poilievre promotes reviving LNG project in Quebec's Saguenay region",
"publisher": "The Globe and Mail",
"date": "Mar 20, 2025"
},
{
"url": "https://www.conservative.ca/poilievre-to-create-canada-first-national-energy-corridor/#utm_source=rss&utm_medium=rss&utm_campaign=poilievre-to-create-canada-first-national-energy-corridor",
"title": "Poilievre To Create ‘Canada First’ National Energy Corridor\n",
"publisher": "Conservative Party of Canada",
"date": "Mar 31, 2025"
},
{
"url": "https://www.theglobeandmail.com/politics/federal-election/article-poilievre-pledges-national-energy-corridor-to-expedite-pipelines/",
"title": "Carney, Singh announce housing plans; Poilievre pledges to fast track resource projects ",
"publisher": "The Globe and Mail",
"date": "Mar 31, 2025"
}
]
},
{
"id": 71,
"topic": "housing",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Cut GST for first-time homebuyers on homes up to $1.5 million",
"FR": "Réduction de la TPS pour les acheteurs d'un premier logement jusqu'à 1,5 million de dollars"
},
"references": [
{
"url": "https://www.cbc.ca/news/canada/edmonton/carney-edmonton-smith-meeting-1.7489042?cmp=rss",
"title": "Carney says he'll work with oil and gas industry, says he opposes 'preset caps'",
"publisher": "CBC News",
"date": "Mar 20, 2025"
},
{
"url": "https://liberal.ca/wp-content/uploads/sites/292/2025/04/Canada-Strong.pdf",
"title": "Canada Strong",
"publisher": "Liberal Party of Canada",
"date": "Apr 19, 2025"
}
]
},
{
"id": 75,
"topic": "government",
"party": "Bloc",
"year": 2025,
"title": {
"EN": "Oppose Translation Bureau workforce reduction",
"FR": "S'opposer à la réduction des effectifs du Bureau de la traduction"
},
"references": [
{
"url": "https://www.cbc.ca/news/canada/ottawa/translation-bureau-to-cut-a-quarter-of-its-workforce-over-next-5-years-1.7488601?cmp=rss",
"title": "Translation Bureau to cut a quarter of its workforce over next 5 years",
"publisher": "CBC News",
"date": "Mar 20, 2025"
}
]
},
{
"id": 79,
"topic": "international-trade",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Strengthen trade and security alliances with Europe",
"FR": "Renforcer les alliances commerciales et sécuritaires avec l'Europe"
},
"references": [
{
"url": "https://www.thestar.com/politics/mark-carney-looking-to-europe-to-boost-canada-s-security-in-shift-away-from-reliance/article_8a871782-f454-4e7f-b8ca-b9b6d3e7b34f.html",
"title": "Mark Carney looking to Europe to boost Canada’s security in shift away from reliance on U.S., sources say",
"publisher": "Toronto Star",
"date": "Mar 19, 2025"
}
]
},
{
"id": 83,
"topic": "education",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Reinstate $4,000 apprenticeship grants for licensed trades",
"FR": "Rétablir les bourses d'apprentissage de 4 000 dollars pour les métiers autorisés"
},
"references": [
{
"url": "https://www.conservative.ca/conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers/#utm_source=rss&utm_medium=rss&utm_campaign=conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers",
"title": "Conservatives to Bring Back ‘More Boots, Less Suits,’ To Train 350,000 Trades workers",
"publisher": "Conservative Party of Canada",
"date": "Mar 21, 2025"
}
]
},
{
"id": 84,
"topic": "education",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Fund training halls to skill up 350,000 young workers over 5 years",
"FR": "Financement de centres de formation pour former 350 000 jeunes travailleurs sur 5 ans"
},
"references": [
{
"url": "https://www.conservative.ca/conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers/#utm_source=rss&utm_medium=rss&utm_campaign=conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers",
"title": "Conservatives to Bring Back ‘More Boots, Less Suits,’ To Train 350,000 Trades workers",
"publisher": "Conservative Party of Canada",
"date": "Mar 21, 2025"
}
]
},
{
"id": 85,
"topic": "social-assistance",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Create rapid EI payouts for skilled tradespeople during training",
"FR": "Créer des versements rapides de l'assurance-emploi pour les personnes de métier qualifiées pendant leur formation"
},
"references": [
{
"url": "https://www.conservative.ca/conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers/#utm_source=rss&utm_medium=rss&utm_campaign=conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers",
"title": "Conservatives to Bring Back ‘More Boots, Less Suits,’ To Train 350,000 Trades workers",
"publisher": "Conservative Party of Canada",
"date": "Mar 21, 2025"
}
]
},
{
"id": 86,
"topic": "health-and-safety",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Unify health and safety regulations for tradespeople across Canada",
"FR": "Unifier les réglementations en matière de santé et de sécurité pour les gens de métier dans l'ensemble du Canada"
},
"references": [
{
"url": "https://www.conservative.ca/conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers/#utm_source=rss&utm_medium=rss&utm_campaign=conservatives-to-bring-back-more-boots-less-suits-to-train-350000-trades-workers",
"title": "Conservatives to Bring Back ‘More Boots, Less Suits,’ To Train 350,000 Trades workers",
"publisher": "Conservative Party of Canada",
"date": "Mar 21, 2025"
}
]
},
{
"id": 89,
"topic": "environment",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Repeal Impact Assessment Act, Oil Tanker Moratorium Act, Clean Fuel Regulations",
"FR": "Abrogation de la loi sur l'évaluation des incidences, de la loi sur le moratoire sur les pétroliers et des règlements sur les carburants propres"
},
"references": [
{
"url": "https://www.conservative.ca/mark-carneys-fourth-liberal-term-will-be-just-like-justins/#utm_source=rss&utm_medium=rss&utm_campaign=mark-carneys-fourth-liberal-term-will-be-just-like-justins",
"title": "Mark Carney’s Fourth Liberal Term Will Be Just Like Justin’s",
"publisher": "Conservative Party of Canada",
"date": "Mar 14, 2025"
},
{
"url": "https://www.conservative.ca/mark-carney-will-sell-out-canadians/#utm_source=rss&utm_medium=rss&utm_campaign=mark-carney-will-sell-out-canadians",
"title": "Mark Carney Will Sell Out Canadians",
"publisher": "Conservative Party of Canada",
"date": "Mar 10, 2025"
},
{
"url": "https://www.conservative.ca/just-the-facts-mark-carney-opposes-energy-export-projects/#utm_source=rss&utm_medium=rss&utm_campaign=just-the-facts-mark-carney-opposes-energy-export-projects",
"title": "Just the Facts: Mark Carney Opposes Energy Export Projects",
"publisher": "Conservative Party of Canada",
"date": "Mar 21, 2025"
},
{
"url": "https://www.cbc.ca/news/canada/british-columbia/oil-tanker-ban-north-coast-election-ellis-ross-taylor-bachrach-1.7505383?cmp=rss",
"title": "Poilievre promises to let tankers carry oil through B.C. oceans. Some voters warn it will reopen an old fight",
"publisher": "CBC News",
"date": "Apr 10, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/liberals-conservatives-carney-poilievre-climate-change-analysis-1.7505872?cmp=rss",
"title": "In 2021, there was nearly a consensus on climate change. In 2025, Carney and Poilievre are far apart",
"publisher": "CBC News",
"date": "Apr 9, 2025"
}
]
},
{
"id": 94,
"topic": "economy",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Raise capital gains lifetime exemption to $1.25 million",
"FR": "Annulation de l'augmentation de l'impôt sur les plus-values et relèvement de l'exonération cumulative"
},
"references": [
{
"url": "https://www.theglobeandmail.com/politics/federal-election/article-carney-confirms-liberals-will-drop-planned-capital-gains-tax-change/",
"title": "Carney confirms Liberals will drop planned capital gains tax change",
"publisher": "The Globe and Mail",
"date": "Mar 21, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/carney-cancels-capital-gains-hike-1.7490020?cmp=rss",
"title": "Carney cancels planned hike to capital gains tax",
"publisher": "CBC News",
"date": "Mar 21, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/top-political-parties-gear-up-for-sunday-election-call/article_5c2735f9-4e20-5a24-a4cb-139d4baf8868.html",
"title": "Top political parties gear up for Sunday election call",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
}
]
},
{
"id": 96,
"topic": "government",
"party": "Green",
"year": 2025,
"title": {
"EN": "Seek electoral co-operation agreement with Liberals, NDP, Bloc",
"FR": "Recherche d'un accord de coopération électorale avec les libéraux, les néo-démocrates et les bloquistes"
},
"references": [
{
"url": "https://www.cbc.ca/news/politics/jonathan-pedneault-co-leader-green-party-election-campaign-1.7489822?cmp=rss",
"title": "Green co-leader Jonathan Pedneault to be face of party's national campaign",
"publisher": "CBC News",
"date": "Mar 21, 2025"
}
]
},
{
"id": 97,
"topic": "environment",
"party": "Conservative",
"year": 2025,
"title": {
"EN": "Remove industrial carbon pricing",
"FR": "Supprimer la tarification industrielle du carbone"
},
"references": [
{
"url": "https://www.theglobeandmail.com/politics/article-trade-war-federal-election-energy-ceos-letter/",
"title": "Energy CEOs write to federal political leaders on how to boost production, Canadian sovereignty",
"publisher": "The Globe and Mail",
"date": "Mar 19, 2025"
},
{
"url": "https://www.thestar.com/politics/federal/energy-sector-ceos-call-on-ottawa-to-use-emergency-powers-to-speed-up-key-projects/article_42ec1db1-75df-5fc7-832b-8a2a4229759e.html",
"title": "Energy sector CEOs call on Ottawa to use emergency powers to speed up key projects ",
"publisher": "Toronto Star",
"date": "Mar 19, 2025"
},
{
"url": "https://www.cbc.ca/news/canada/calgary/alberta-carbon-pricing-poilievre-kill-backstop-promise-reaction-1.7486111?cmp=rss",
"title": "Alberta pioneered industrial carbon pricing. Now, Poilievre says he'd kill the federal mandate for it",
"publisher": "CBC News",
"date": "Mar 18, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/poilievre-trades-training-union-apprenticeships-1.7489825?cmp=rss",
"title": "Poilievre continues to court workers with pledge to train 350,000 tradespeople",
"publisher": "CBC News",
"date": "Mar 21, 2025"
},
{
"url": "https://www.cbc.ca/news/politics/liberals-conservatives-carney-poilievre-climate-change-analysis-1.7505872?cmp=rss",
"title": "In 2021, there was nearly a consensus on climate change. In 2025, Carney and Poilievre are far apart",
"publisher": "CBC News",
"date": "Apr 9, 2025"
}
]
},
{
"id": 98,
"topic": "infrastructure",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Remove redundant environmental assessments",
"FR": "Supprimer les exigences redondantes en matière d'évaluation environnementale"
},
"references": [
{
"url": "https://www.thestar.com/politics/mark-carney-says-he-ll-slash-red-tape-to-expedite-major-projects-like-high-speed/article_6f389d37-f119-4c79-a495-1ce7a156befa.html",
"title": "Mark Carney says he’ll slash red tape to expedite major projects like high speed rail",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
}
]
},
{
"id": 100,
"topic": "social-assistance",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Waive one-week wait for EI benefits for workers affected by U.S. tariffs",
"FR": "Suppression du délai d'attente d'une semaine pour le versement des prestations d'assurance-emploi aux travailleurs touchés par les droits de douane imposés par les États-Unis"
},
"references": [
{
"url": "https://www.thestar.com/politics/mark-carney-says-he-ll-slash-red-tape-to-expedite-major-projects-like-high-speed/article_6f389d37-f119-4c79-a495-1ce7a156befa.html",
"title": "Mark Carney says he’ll slash red tape to expedite major projects like high speed rail",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
}
]
},
{
"id": 102,
"topic": "infrastructure",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Expand high-speed rail project from Windsor to Québec City",
"FR": "Extension du projet de train à grande vitesse entre Windsor et Québec"
},
"references": [
{
"url": "https://www.thestar.com/politics/federal/head-of-canadas-high-speed-rail-project-wants-it-to-run-into-downtown-toronto/article_a1764783-582f-4365-885c-74a80e5868f2.html",
"title": "Head of Canada’s high speed rail project wants it to run into downtown Toronto",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
},
{
"url": "https://liberal.ca/wp-content/uploads/sites/292/2025/04/Canada-Strong.pdf",
"title": "Canada Strong",
"publisher": "Liberal Party of Canada",
"date": "Apr 19, 2025"
}
]
},
{
"id": 106,
"topic": "indigenous-relations",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Double Indigenous Loan Guarantee to $10 billion",
"FR": "Doublement de la garantie des prêts aux autochtones, qui passe à 10 milliards de dollars"
},
"references": [
{
"url": "https://www.thestar.com/politics/federal/carney-premiers-seek-plan-for-national-energy-trade-corridor/article_28664058-cf31-5a52-a43f-0a3d536ff8a1.html",
"title": "Carney, premiers seek plan for national energy, trade corridor",
"publisher": "Toronto Star",
"date": "Mar 21, 2025"
}
]
},
{
"id": 111,
"topic": "economy",
"party": "Liberal",
"year": 2025,
"title": {
"EN": "Cut income taxes for lowest tax bracket from 15% to 14%",
"FR": "Réduction de l'impôt sur le revenu pour la tranche d'imposition la plus basse de 15 % à 14 %"
},
"references": [
{
"url": "https://liberal.ca/liberals-launch-2025-campaign-with-middle-class-tax-cut/",
"title": "Liberals launch 2025 campaign with middle-class tax cut",
"publisher": "Liberal Party of Canada",
"date": "Mar 23, 2025"
},
{
"url": "https://www.theglobeandmail.com/politics/opinion/article-poilievre-and-carney-agree-on-one-thing-this-federal-election-is-about/",
"title": "Poilievre and Carney agree on one thing: This federal election is about change",
"publisher": "The Globe and Mail",
"date": "Mar 24, 2025"