Riksdagsmonitor Intelligence Platform โ€” API Documentation - v1.0.30
    Preparing search index...

    Interface ImfDataPoint

    A single IMF data point. Shape mirrors WorldBankDataPoint so that the provider-agnostic economic-context helpers can consume either source interchangeably.

    interface ImfDataPoint {
    ย ย ย ย countryCode: string;
    ย ย ย ย countryName: string;
    ย ย ย ย indicatorId: string;
    ย ย ย ย indicatorName: string;
    ย ย ย ย date: string;
    ย ย ย ย value: number;
    ย ย ย ย projection: boolean;
    ย ย ย ย projectionVintage?: string;
    ย ย ย ย provider: "imf";
    }
    Index
    countryCode: string
    countryName: string
    indicatorId: string
    indicatorName: string
    date: string
    value: number
    projection: boolean

    True when the value is a projection (future year in the release vintage).

    projectionVintage?: string

    Release vintage tag (e.g. 'WEO-2026-04'). Present for projection-bearing releases.

    provider: "imf"

    Provider tag โ€” always 'imf' for this client.