-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindicators-inventory.json
More file actions
977 lines (977 loc) · 33.5 KB
/
indicators-inventory.json
File metadata and controls
977 lines (977 loc) · 33.5 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
{
"version": "1.0",
"description": "Complete machine-readable inventory of IMF indicators consumed by Riksdagsmonitor. Mirrors the shape of analysis/worldbank/indicators-inventory.json v3.0 so agents and TypeScript modules can discover IMF indicators with the same pattern they already use for World Bank. This file is the SINGLE SOURCE OF TRUTH for IMF indicator discovery and MUST be kept in sync with scripts/imf-client.ts (IMF_WEO_INDICATORS, IMF_FM_INDICATORS) and scripts/imf-context.ts (IMF_INDICATORS).",
"lastUpdated": "2026-04-24",
"effectiveDate": "2026-04-24",
"source": "IMF Datamapper (www.imf.org/external/datamapper/api/v1) + IMF SDMX 3.0 (api.imf.org/external/sdmx/3.0)",
"targetCountry": "SWE (Sweden, ISO-3)",
"peerSet": [
"SWE",
"DNK",
"NOR",
"FIN",
"DEU"
],
"aggregates": {
"europeanUnion": "EU",
"euroArea": "EURO",
"g7": "G7",
"g20": "G20",
"advancedEconomies": "AE",
"world": "WORLD"
},
"clients": {
"cli": "tsx scripts/imf-fetch.ts (commands: weo, compare, sdmx, list-indicators)",
"library": "scripts/imf-client.ts (ImfClient class)",
"codes": "scripts/imf-codes.ts (ISO3 country codes for the Riksdagsmonitor peer set, plus a legacy ISO3\u2194IMF-AREA mapping kept only for backward compatibility \u2014 SDMX 3.0 dataflows after the 2026-05 refactor accept ISO3 directly as COUNTRY and reject the legacy 3-digit numeric AREA codes)",
"context": "scripts/imf-context.ts (policy-area \u2194 committee mapping, IMF_NORDIC_PEERS)"
},
"notes": {
"firewallAllowlist": "data.imf.org, api.imf.org, www.imf.org",
"noMcp": "IMF is NOT an MCP server. Agentic workflows invoke the TypeScript CLI via the bash tool. This keeps IMF under the same npm/SBOM governance as world-bank-client.ts and scb-client.ts with zero Python/uvx runtime.",
"rateLimit": "IMF advertises ~10 req / 5s. Prefer the 'compare' subcommand (single batched call) over parallel 'weo' calls. Client retries 3\u00d7 on 429/5xx with 1s\u21922s\u21924s back-off.",
"vintage": "Every projection value carries a projectionVintage tag (e.g. 'WEO-2026-04', 'FM-2026-04'). Update DEFAULT_WEO_VINTAGE in scripts/imf-client.ts when the IMF publishes a new flagship release (April / October).",
"persistence": "Use the --persist flag to cache raw responses under analysis/data/imf/{indicator}/{country}.json. Reuse across article types within the same daily run to minimise API calls."
},
"totalIndicators": 30,
"databases": {
"WEO": {
"label": "World Economic Outlook",
"endpoint": "datamapper",
"frequency": "Annual",
"cadence": "April / October (flagship releases)",
"projectionHorizon": "T+5",
"coverage": "Macro, fiscal, external sector, demographics. 190+ countries including all Nordic peers.",
"codeList": "See IMF_WEO_INDICATORS in scripts/imf-client.ts",
"urlPattern": "https://www.imf.org/external/datamapper/api/v1/{indicatorCode}/{iso3}"
},
"FM": {
"label": "Fiscal Monitor",
"endpoint": "datamapper",
"frequency": "Annual",
"cadence": "April / October (flagship releases, aligned with WEO)",
"projectionHorizon": "T+5",
"coverage": "Deeper fiscal detail than WEO \u2014 primary balance, cyclically-adjusted balance, interest payments, debt-sustainability analysis.",
"urlPattern": "https://www.imf.org/external/datamapper/api/v1/{indicatorCode}/{iso3}"
},
"CPI": {
"label": "Consumer Price Index (replaces the legacy IFS monthly CPI block)",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "5.0.0",
"frequency": "Monthly / Quarterly / Annual",
"cadence": "Monthly",
"coverage": "Headline CPI levels, year-on-year inflation, and COICOP sub-indices for 200+ economies. The 2026-05 SDMX 3.0 refactor retired PCPI_IX and decomposed it into INDEX_TYPE \u00d7 COICOP_1999 \u00d7 TYPE_OF_TRANSFORMATION (e.g. Sweden all-items index = SWE.CPI._T.IX.M).",
"dimensionOrder": "COUNTRY.INDEX_TYPE.COICOP_1999.TYPE_OF_TRANSFORMATION.FREQUENCY",
"swedenSampleKey": "SWE.CPI._T.IX.M",
"note": "IFS (International Financial Statistics) is no longer published as a single SDMX 3.0 dataflow \u2014 its CPI block lives here, its policy-rate block in MFS_IR, and its exchange-rate block in ER."
},
"BOP": {
"label": "Balance of Payments",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "21.0.0",
"frequency": "Quarterly / Annual",
"cadence": "Quarterly",
"coverage": "Current account, capital account, financial account, reserve assets. Methodology: BPM6.",
"dimensionOrder": "COUNTRY.BOP_ACCOUNTING_ENTRY.INDICATOR.UNIT.FREQUENCY",
"swedenSampleKey": "SWE.NETCD_T.CAB.USD.A",
"note": "BOP_AGG is the aggregate summary; raw BOP has deeper detail."
},
"GFS_COFOG": {
"label": "Government Finance Statistics \u2014 Classification of Functions of Government",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "11.0.0",
"frequency": "Annual",
"cadence": "T+1 (data for year Y released in year Y+1)",
"coverage": "Government expenditure broken down by function (COFOG 01\u201310): 02 Defence \u2192 F\u00f6U, 07 Health \u2192 SoU, 09 Education \u2192 UbU, 10 Social Protection \u2192 SfU.",
"dimensionOrder": "COUNTRY.SECTOR.GFS_GRP.INDICATOR.TYPE_OF_TRANSFORMATION.FREQUENCY",
"swedenSampleKey": "SWE.S13.G2MF.GF02_T.POGDP_PT.A",
"note": "Best source for committee-aligned spending decomposition. Indicator codes were renamed from G02/G07/G09/G10 to GF02_T/GF07_T/GF09_T/GF10_T in the 2026-05 refactor; SECTOR=S13 (general government), GFS_GRP=G2MF, TYPE_OF_TRANSFORMATION \u2208 {POGDP_PT (% of GDP), POTO_PT (% of total expenditure), XDC (national currency)}."
},
"MFS_IR": {
"label": "Monetary & Financial Statistics \u2014 Interest Rates",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "8.0.1",
"frequency": "Monthly",
"cadence": "Monthly",
"coverage": "Money-market rates, deposit/lending rates, government-bond yields. Sweden indicators include MMRT_RT_PT_A_PT (money market) and S13BOND_RT_PT_A_PT (sovereign bond yield).",
"dimensionOrder": "COUNTRY.INDICATOR.FREQUENCY",
"swedenSampleKey": "SWE.MMRT_RT_PT_A_PT.M",
"note": "FPOLM_PA (central-bank policy rate) is no longer in the SWE codelist \u2014 use Riksbank statistics for the styrr\u00e4nta directly, or proxy via MMRT money-market rate."
},
"IMTS": {
"label": "International Merchandise Trade Statistics (replaces the legacy DOTS dataflow)",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "1.0.0",
"frequency": "Monthly / Quarterly / Annual",
"cadence": "Monthly",
"coverage": "Bilateral merchandise trade \u2014 exports and imports by partner country. Useful for NU/UU trade-policy coverage. INDICATOR codes: XG_FOB_USD (exports FOB), MG_FOB_USD / MG_CIF_USD (imports FOB / CIF), TBG_USD (trade balance).",
"dimensionOrder": "COUNTRY.INDICATOR.COUNTERPART_COUNTRY.FREQUENCY",
"swedenSampleKey": "SWE.XG_FOB_USD.USA.A",
"note": "DOTS / DOT no longer exists as a SDMX 3.0 dataflow \u2014 bilateral trade lives in IMTS. The legacy TXG_FOB_USD / TMG_CIF_USD codes were renamed to XG_FOB_USD / MG_CIF_USD."
},
"PCPS": {
"label": "Primary Commodity Prices",
"endpoint": "sdmx",
"agency": "IMF.RES",
"version": "9.0.0",
"frequency": "Monthly / Quarterly / Annual",
"cadence": "Monthly",
"coverage": "Commodity price indices \u2014 energy, metals, food. Feeds inflation-drivers commentary. COUNTRY=G001 (global aggregate); INDICATORs include POILBRE (Brent), POILAPSP (avg of Brent/Dubai/WTI), PALLFNF (all-commodities index).",
"dimensionOrder": "COUNTRY.INDICATOR.DATA_TRANSFORMATION.FREQUENCY",
"globalSampleKey": "G001.POILBRE.USD.M",
"note": "Moved from IMF.STA to IMF.RES in the 2026-05 refactor."
},
"ER": {
"label": "Exchange Rates",
"endpoint": "sdmx",
"agency": "IMF.STA",
"version": "4.0.1",
"frequency": "Monthly / Quarterly / Annual",
"cadence": "Monthly (period average) and end-of-period",
"coverage": "Bilateral nominal exchange rates. INDICATORs: USD_XDC (USD per national currency), EUR_XDC, XDC_USD, XDC_EUR, XDR_XDC, etc. TYPE_OF_TRANSFORMATION \u2208 {EOP_RT (end of period), PA_RT (period average)}.",
"dimensionOrder": "COUNTRY.INDICATOR.TYPE_OF_TRANSFORMATION.FREQUENCY",
"swedenSampleKey": "SWE.USD_XDC.PA_RT.M"
}
},
"domains": {
"macro": {
"label": "Headline macro",
"primary": true,
"committees": [
"FiU",
"SkU",
"NU"
],
"supersedesWorldBank": [
"NY.GDP.MKTP.CD",
"NY.GDP.MKTP.KD.ZG",
"NY.GDP.PCAP.CD",
"FP.CPI.TOTL.ZG"
],
"indicators": [
{
"id": "NGDP_RPCH",
"key": "imfRealGdpGrowth",
"database": "WEO",
"name": "Real GDP growth",
"unit": "Annual % change",
"description": "Year-over-year change in real GDP. Headline macro indicator. Projected to T+5.",
"policyAreas": [
"fiscal policy",
"macro economy",
"growth"
],
"committees": [
"FiU",
"SkU",
"NU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:NGDP_RPCH",
"admiralty": "A1"
},
{
"id": "NGDP",
"key": "imfNominalGdpLcu",
"database": "WEO",
"name": "Nominal GDP (local currency)",
"unit": "National currency, billions",
"description": "Nominal GDP in domestic currency. Denominator for % of GDP ratios.",
"policyAreas": [
"macro economy"
],
"committees": [
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:NGDP",
"admiralty": "A1"
},
{
"id": "NGDPD",
"key": "imfNominalGdpUsd",
"database": "WEO",
"name": "Nominal GDP (USD)",
"unit": "Current USD, billions",
"description": "Nominal GDP converted to USD. Useful for cross-country size comparisons.",
"policyAreas": [
"macro economy"
],
"committees": [
"FiU",
"UU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:NGDPD",
"admiralty": "A1"
},
{
"id": "NGDPDPC",
"key": "imfGdpPerCapita",
"database": "WEO",
"name": "GDP per capita (USD)",
"unit": "Current USD",
"description": "Nominal GDP per capita. Living-standards comparator.",
"policyAreas": [
"macro economy",
"living standards"
],
"committees": [
"FiU",
"AU",
"SoU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:NGDPDPC",
"admiralty": "A1"
},
{
"id": "PPPPC",
"key": "imfGdpPerCapitaPpp",
"database": "WEO",
"name": "GDP per capita (PPP, international $)",
"unit": "International dollars (PPP)",
"description": "Purchasing-power-parity-adjusted GDP per capita. Preferred for welfare / living-standards comparisons.",
"policyAreas": [
"macro economy",
"living standards"
],
"committees": [
"FiU",
"AU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:PPPPC",
"admiralty": "A1"
}
]
},
"inflation": {
"label": "Inflation & prices",
"primary": true,
"committees": [
"FiU"
],
"supersedesWorldBank": [
"FP.CPI.TOTL.ZG"
],
"indicators": [
{
"id": "PCPIPCH",
"key": "imfInflationCpi",
"database": "WEO",
"name": "Inflation, CPI average",
"unit": "Annual % change",
"description": "Average consumer-price inflation, annual. Primary monetary-policy reference. Projected to T+5.",
"policyAreas": [
"monetary policy",
"inflation"
],
"committees": [
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:PCPIPCH",
"admiralty": "A1"
},
{
"id": "PCPIEPCH",
"key": "imfInflationCpiEndPeriod",
"database": "WEO",
"name": "Inflation, CPI end-of-period",
"unit": "Annual % change",
"description": "Year-end CPI change. Complements average-period PCPIPCH for target-adjacent analysis.",
"policyAreas": [
"monetary policy",
"inflation"
],
"committees": [
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:PCPIEPCH",
"admiralty": "A1"
}
]
},
"labor": {
"label": "Labour market",
"primary": true,
"committees": [
"AU",
"SoU",
"SfU"
],
"supersedesWorldBank": [
"SL.UEM.TOTL.ZS"
],
"indicators": [
{
"id": "LUR",
"key": "imfUnemploymentRate",
"database": "WEO",
"name": "Unemployment rate",
"unit": "% of labour force",
"description": "WEO-definition unemployment. Projected to T+5. Methodology may differ slightly from SCB AKU; cite explicitly.",
"policyAreas": [
"labor market",
"employment"
],
"committees": [
"AU",
"SoU",
"SfU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:LUR",
"admiralty": "A2",
"caveats": [
"WEO LUR may diverge from SCB AKU by 0.1\u20130.3 pp due to definitional differences. Prefer SCB for Swedish-specific ground truth; use IMF for cross-country comparison."
]
},
{
"id": "LE",
"key": "imfEmployment",
"database": "WEO",
"name": "Employment",
"unit": "Persons, millions",
"description": "Total employed persons (WEO definition).",
"policyAreas": [
"labor market"
],
"committees": [
"AU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:LE",
"admiralty": "A2"
}
]
},
"fiscal": {
"label": "Fiscal policy \u2014 general government",
"primary": true,
"committees": [
"FiU",
"SkU"
],
"supersedesWorldBank": [
"GC.DOD.TOTL.GD.ZS",
"GC.XPN.TOTL.GD.ZS",
"GC.REV.XGRT.GD.ZS"
],
"indicators": [
{
"id": "GGXWDG_NGDP",
"key": "imfGeneralGovGrossDebt",
"database": "WEO",
"name": "General government gross debt (% of GDP)",
"unit": "% of GDP",
"description": "Debt/GDP on general-government (EDP) basis. Superior to WB GC.DOD.TOTL.GD.ZS for EU/Nordic discussion because it follows GFSM 2014. Projected to T+5.",
"policyAreas": [
"fiscal policy",
"debt",
"EU stability and growth pact"
],
"committees": [
"FiU",
"SkU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:GGXWDG_NGDP",
"admiralty": "A1"
},
{
"id": "GGR_NGDP",
"key": "imfGeneralGovRevenue",
"database": "WEO",
"name": "General government revenue (% of GDP)",
"unit": "% of GDP",
"description": "Tax and non-tax revenue as share of GDP. Projected to T+5.",
"policyAreas": [
"fiscal policy",
"taxation"
],
"committees": [
"SkU",
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:GGR_NGDP",
"admiralty": "A1"
},
{
"id": "GGX_NGDP",
"key": "imfGeneralGovExpenditure",
"database": "WEO",
"name": "General government expenditure (% of GDP)",
"unit": "% of GDP",
"description": "Total government spending. Projected to T+5.",
"policyAreas": [
"fiscal policy",
"public spending"
],
"committees": [
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:GGX_NGDP",
"admiralty": "A1"
},
{
"id": "GGXCNL_NGDP",
"key": "imfGeneralGovBalance",
"database": "WEO",
"name": "General government net lending / borrowing (% of GDP)",
"unit": "% of GDP",
"description": "Headline fiscal balance (surplus +, deficit \u2212). Projected to T+5.",
"policyAreas": [
"fiscal policy",
"budget"
],
"committees": [
"FiU",
"SkU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:GGXCNL_NGDP",
"admiralty": "A1"
},
{
"id": "GGXONLB_NGDP",
"key": "imfPrimaryBalance",
"database": "FM",
"name": "General government primary balance (% of GDP)",
"unit": "% of GDP",
"description": "Fiscal balance excluding net interest. Key debt-sustainability indicator. FM vintage may differ slightly from WEO.",
"policyAreas": [
"fiscal policy",
"debt sustainability"
],
"committees": [
"FiU",
"SkU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "FM:GGXONLB_NGDP",
"admiralty": "A1"
},
{
"id": "GGSB_NPGDP",
"key": "imfCyclicallyAdjustedBalance",
"database": "FM",
"name": "Cyclically-adjusted primary balance (% of potential GDP)",
"unit": "% of potential GDP",
"description": "Structural fiscal stance \u2014 removes business-cycle effects from the primary balance. Preferred metric for assessing discretionary policy.",
"policyAreas": [
"fiscal policy",
"structural balance"
],
"committees": [
"FiU",
"SkU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "FM:GGSB_NPGDP",
"admiralty": "A1"
}
]
},
"external": {
"label": "External sector & trade",
"primary": true,
"committees": [
"NU",
"UU",
"FiU"
],
"supersedesWorldBank": [
"BN.CAB.XOKA.GD.ZS",
"NE.EXP.GNFS.ZS"
],
"indicators": [
{
"id": "BCA_NGDPD",
"key": "imfCurrentAccountBalance",
"database": "WEO",
"name": "Current account balance (% of GDP)",
"unit": "% of GDP",
"description": "Net external position (trade + primary + secondary income). Projected to T+5.",
"policyAreas": [
"external sector",
"trade"
],
"committees": [
"NU",
"UU",
"FiU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:BCA_NGDPD",
"admiralty": "A1"
},
{
"id": "TX_RPCH",
"key": "imfExportsVolumeGrowth",
"database": "WEO",
"name": "Exports of goods and services, volume",
"unit": "Annual % change",
"description": "Real exports growth rate. Projected to T+5.",
"policyAreas": [
"trade",
"export performance"
],
"committees": [
"NU",
"UU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:TX_RPCH",
"admiralty": "A1"
},
{
"id": "TM_RPCH",
"key": "imfImportsVolumeGrowth",
"database": "WEO",
"name": "Imports of goods and services, volume",
"unit": "Annual % change",
"description": "Real imports growth rate. Projected to T+5.",
"policyAreas": [
"trade"
],
"committees": [
"NU",
"UU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:TM_RPCH",
"admiralty": "A1"
}
]
},
"monetary": {
"label": "Monetary & financial (high-frequency)",
"primary": true,
"committees": [
"FiU"
],
"indicators": [
{
"id": "PCPI_IX",
"key": "imfCpiMonthly",
"database": "CPI",
"name": "Consumer Price Index (monthly all-items)",
"unit": "Index, base year per release",
"description": "Monthly CPI level. Complements annual WEO PCPIPCH with higher frequency. The 2026-05 SDMX 3.0 refactor retired the standalone PCPI_IX series \u2014 request the same value as `SWE.CPI._T.IX.M` against the IMF.STA/CPI v5.0.0 dataflow.",
"policyAreas": [
"monetary policy",
"inflation"
],
"committees": [
"FiU"
],
"publishesProjections": false,
"citation": "CPI:_T.IX",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,CPI,5.0.0/{ISO3}.CPI._T.IX.M"
},
{
"id": "FPOLM_PA",
"key": "imfPolicyRate",
"database": "MFS_IR",
"name": "Central bank policy rate (proxy via money-market rate for SWE)",
"unit": "% per annum",
"description": "Riksbankens styrr\u00e4nta proxy / central-bank target rate, monthly. The IMF SDMX 3.0 SWE codelist no longer carries the FPOLM_PA central-bank rate directly \u2014 use `SWE.MMRT_RT_PT_A_PT.M` (money-market rate) as the IMF proxy, and prefer Riksbank statistics for the official styrr\u00e4nta.",
"policyAreas": [
"monetary policy"
],
"committees": [
"FiU"
],
"publishesProjections": false,
"citation": "MFS_IR:MMRT_RT_PT_A_PT",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,MFS_IR,8.0.1/{ISO3}.MMRT_RT_PT_A_PT.M"
},
{
"id": "ENDA_XDC_USD_RATE",
"key": "imfSekUsdRate",
"database": "ER",
"name": "SEK / USD exchange rate (period average)",
"unit": "SEK per USD",
"description": "Bilateral nominal exchange rate. Useful for monetary-policy coverage and trade commentary. SDMX 3.0 key: `SWE.USD_XDC.PA_RT.M` (period-average). Use TYPE_OF_TRANSFORMATION=EOP_RT for end-of-period.",
"policyAreas": [
"monetary policy",
"external sector"
],
"committees": [
"FiU",
"NU"
],
"publishesProjections": false,
"citation": "ER:USD_XDC.PA_RT",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,ER,4.0.1/{ISO3}.USD_XDC.PA_RT.M"
}
]
},
"cofog": {
"label": "Government spending by function (COFOG)",
"primary": true,
"committees": [
"F\u00f6U",
"SoU",
"UbU",
"SfU",
"FiU"
],
"indicators": [
{
"id": "GF02_T",
"key": "imfCofogDefence",
"database": "GFS_COFOG",
"name": "Defence spending (COFOG 02, % of GDP)",
"unit": "% of GDP",
"description": "General-government defence expenditure on COFOG function 02. Complements WB MS.MIL.XPND.GD.ZS with EDP-consistent methodology.",
"policyAreas": [
"defence",
"fiscal policy"
],
"committees": [
"F\u00f6U",
"FiU"
],
"publishesProjections": false,
"citation": "GFS_COFOG:GF02_T",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,GFS_COFOG,11.0.0/{ISO3}.S13.G2MF.GF02_T.POGDP_PT.A"
},
{
"id": "GF07_T",
"key": "imfCofogHealth",
"database": "GFS_COFOG",
"name": "Health spending (COFOG 07, % of GDP)",
"unit": "% of GDP",
"description": "General-government health expenditure on COFOG function 07. Complements WB SH.XPD.CHEX.GD.ZS.",
"policyAreas": [
"health",
"fiscal policy"
],
"committees": [
"SoU",
"FiU"
],
"publishesProjections": false,
"citation": "GFS_COFOG:GF07_T",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,GFS_COFOG,11.0.0/{ISO3}.S13.G2MF.GF07_T.POGDP_PT.A"
},
{
"id": "GF09_T",
"key": "imfCofogEducation",
"database": "GFS_COFOG",
"name": "Education spending (COFOG 09, % of GDP)",
"unit": "% of GDP",
"description": "General-government education expenditure on COFOG function 09. Complements WB SE.XPD.TOTL.GD.ZS.",
"policyAreas": [
"education",
"fiscal policy"
],
"committees": [
"UbU",
"FiU"
],
"publishesProjections": false,
"citation": "GFS_COFOG:GF09_T",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,GFS_COFOG,11.0.0/{ISO3}.S13.G2MF.GF09_T.POGDP_PT.A"
},
{
"id": "GF10_T",
"key": "imfCofogSocialProtection",
"database": "GFS_COFOG",
"name": "Social protection spending (COFOG 10, % of GDP)",
"unit": "% of GDP",
"description": "General-government social-protection expenditure on COFOG function 10 (pensions, unemployment, family benefits).",
"policyAreas": [
"social protection",
"fiscal policy"
],
"committees": [
"SfU",
"SoU",
"FiU"
],
"publishesProjections": false,
"citation": "GFS_COFOG:GF10_T",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,GFS_COFOG,11.0.0/{ISO3}.S13.G2MF.GF10_T.POGDP_PT.A"
}
]
},
"trade": {
"label": "Bilateral trade (IMTS \u2014 replaces legacy DOTS)",
"primary": true,
"committees": [
"NU",
"UU"
],
"indicators": [
{
"id": "XG_FOB_USD",
"key": "imfExportsBilateral",
"database": "IMTS",
"name": "Exports of goods, FOB (USD) \u2014 bilateral",
"unit": "USD",
"description": "Annual or monthly bilateral merchandise exports to a named partner country. The 2026-05 SDMX 3.0 refactor renamed TXG_FOB_USD \u2192 XG_FOB_USD and moved it from DOTS to IMTS.",
"policyAreas": [
"trade",
"foreign policy"
],
"committees": [
"NU",
"UU"
],
"publishesProjections": false,
"citation": "IMTS:XG_FOB_USD",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,IMTS,1.0.0/{ISO3}.XG_FOB_USD.{COUNTERPART_ISO3}.A"
},
{
"id": "MG_CIF_USD",
"key": "imfImportsBilateral",
"database": "IMTS",
"name": "Imports of goods, CIF (USD) \u2014 bilateral",
"unit": "USD",
"description": "Annual or monthly bilateral merchandise imports from a named partner country. The 2026-05 SDMX 3.0 refactor renamed TMG_CIF_USD \u2192 MG_CIF_USD and moved it from DOTS to IMTS.",
"policyAreas": [
"trade"
],
"committees": [
"NU",
"UU"
],
"publishesProjections": false,
"citation": "IMTS:MG_CIF_USD",
"admiralty": "A1",
"sdmxPath": "/data/IMF.STA,IMTS,1.0.0/{ISO3}.MG_CIF_USD.{COUNTERPART_ISO3}.A"
}
]
},
"commodities": {
"label": "Primary commodities (PCPS)",
"primary": false,
"committees": [
"NU",
"FiU",
"MJU"
],
"indicators": [
{
"id": "PALLFNF",
"key": "imfCommodityAllIndex",
"database": "PCPS",
"name": "All Commodities price index",
"unit": "Index, 2016=100",
"description": "IMF all-commodities price index. Inflation-drivers commentary.",
"policyAreas": [
"inflation",
"commodities"
],
"committees": [
"FiU"
],
"publishesProjections": false,
"citation": "PCPS:PALLFNF",
"admiralty": "A1",
"sdmxPath": "/data/IMF.RES,PCPS,9.0.0/G001.PALLFNF.USD.M"
},
{
"id": "POILAPSP",
"key": "imfOilPriceBrent",
"database": "PCPS",
"name": "Crude oil price (average of Brent, Dubai, WTI)",
"unit": "USD per barrel",
"description": "Benchmark oil price. Inflation-drivers + MJU energy-policy commentary.",
"policyAreas": [
"inflation",
"energy"
],
"committees": [
"FiU",
"MJU",
"NU"
],
"publishesProjections": false,
"citation": "PCPS:POILAPSP",
"admiralty": "A1",
"sdmxPath": "/data/IMF.RES,PCPS,9.0.0/G001.POILAPSP.USD.M"
}
]
},
"demographics": {
"label": "Demographics",
"primary": true,
"committees": [
"SoU",
"SfU"
],
"indicators": [
{
"id": "LP",
"key": "imfPopulation",
"database": "WEO",
"name": "Population",
"unit": "Persons, millions",
"description": "WEO population definition. Projected to T+5.",
"policyAreas": [
"demographics"
],
"committees": [
"SoU",
"SfU"
],
"projectionHorizon": "T+5",
"publishesProjections": true,
"citation": "WEO:LP",
"admiralty": "A1"
}
]
}
},
"committeeMatrix": {
"FiU": {
"provider": "IMF (primary)",
"mustQuery": [
"WEO:NGDP_RPCH",
"WEO:PCPIPCH",
"WEO:NGDPDPC",
"WEO:GGXWDG_NGDP"
]
},
"SkU": {
"provider": "IMF (primary)",
"mustQuery": [
"WEO:GGR_NGDP",
"WEO:GGX_NGDP",
"WEO:GGXCNL_NGDP",
"FM:GGXONLB_NGDP"
]
},
"AU": {
"provider": "IMF + WB",
"mustQuery": [
"WEO:LUR"
],
"secondary": [
"wb:SL.UEM.1524.ZS",
"wb:SL.TLF.CACT.ZS"
]
},
"NU": {
"provider": "IMF (primary)",
"mustQuery": [
"WEO:BCA_NGDPD",
"WEO:TX_RPCH",
"WEO:TM_RPCH"
]
},
"UU": {
"provider": "IMF (primary)",
"mustQuery": [
"WEO:BCA_NGDPD",
"WEO:TX_RPCH"
]
},
"SoU": {
"provider": "IMF + WB",
"mustQuery": [
"WEO:LP",
"GFS_COFOG:GF07_T"
],
"secondary": [
"wb:SH.XPD.CHEX.GD.ZS",
"wb:SH.MED.PHYS.ZS"
]
},
"SfU": {
"provider": "IMF + WB",
"mustQuery": [
"WEO:LP",
"GFS_COFOG:GF10_T"
]
},
"F\u00f6U": {
"provider": "IMF + WB",
"mustQuery": [
"GFS_COFOG:GF02_T"
],
"secondary": [
"wb:MS.MIL.XPND.GD.ZS"
]
},
"MJU": {
"provider": "WB (primary)",
"secondary": [
"PCPS:POILAPSP"
],
"note": "Environment indicators are WB exclusive."
},
"UbU": {
"provider": "IMF + WB",
"mustQuery": [
"GFS_COFOG:GF09_T"
],
"secondary": [
"wb:SE.XPD.TOTL.GD.ZS"
]
},
"KU": {
"provider": "WB (WGI)",
"note": "Governance (CC.EST, RL.EST, VA.EST, source=75) is WB exclusive; IMF has no equivalent."
},
"JuU": {
"provider": "WB (primary)",
"note": "Crime / rule-of-law metrics are WB exclusive."
}
},
"vintageDiscipline": {
"current": "WEO-2026-04",
"release": {
"april": "Late-April (flagship WEO + Fiscal Monitor)",
"october": "Mid-October (flagship WEO + Fiscal Monitor)"
},
"rule": "Every projection citation MUST include the vintage tag in parentheses \u2014 e.g. '(WEO Apr-2026, GGXWDG_NGDP)'. Historical citations do not need the tag. Any projection citation older than 6 months gets a warning annotation in methodology-reflection.md.",
"cutover": "When a new WEO release is published, update DEFAULT_WEO_VINTAGE in scripts/imf-client.ts and the 'current' field above in the same PR."
},
"referenced": {
"methodology": "analysis/methodologies/imf-indicator-mapping.md",
"contract": ".github/aw/ECONOMIC_DATA_CONTRACT.md",
"promptAnalysisPipeline": ".github/prompts/04-analysis-pipeline.md",
"inventoryMultiProvider": "analysis/economic-indicators-inventory.json",
"worldBankResidue": "analysis/worldbank/indicators-inventory.json"
}
}