EU Parliament Monitor — API Documentation - v0.8.39
    Preparing search index...

    Interface IMFSeries

    A single IMF time series — one country × one indicator × one frequency, with all observations for the requested year range.

    interface IMFSeries {
        databaseId: string;
        countryId: string;
        countryName: string;
        indicatorId: string;
        indicatorName: string;
        frequency: IMFFrequency;
        observations: readonly IMFObservation[];
    }
    Index

    Properties

    databaseId: string

    IMF database the series was drawn from.

    countryId: string

    ISO-3166-1 alpha-3 country code as used by IMF (mostly identical to WB codes; see getIMFCountryCode).

    countryName: string

    Country display name as published by the IMF codelist.

    indicatorId: string

    IMF indicator/dimension code (e.g. NGDP_RPCH for WEO real GDP growth).

    indicatorName: string

    Human-readable indicator name, as published on the IMF codelist.

    frequency: IMFFrequency

    Series frequency (A/Q/M).

    observations: readonly IMFObservation[]

    Observations sorted by ascending period.