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

    Interface IMFObservation

    A single observation (one time-period, one value) in an IMF series.

    isForecast is true when the period is beyond the IMF's most recent published actual for that series — relevant mainly for WEO projections (spring 2026 release carries actuals through 2025 and forecasts for 2026-2030 for most series). Callers should surface this flag in the UI so readers can distinguish actuals from projections.

    interface IMFObservation {
        period: string;
        year: number;
        value: number | null;
        isForecast: boolean;
    }
    Index

    Properties

    period: string

    ISO-8601 period string — YYYY (annual), YYYY-QN (quarterly), YYYY-MM (monthly).

    year: number

    Primary year component of the period (convenience for sorting).

    value: number | null

    Numeric value of the observation, or null when the cell is empty/suppressed.

    isForecast: boolean

    Whether the observation is an IMF forecast/projection rather than a published actual.