@squawk
    Preparing search index...

    Interface NotamDateTime

    A date-time reference in a NOTAM effective period. Uses the NOTAM-specific 10-digit format (YYMMDDHHmm) which includes year and month information not present in the standard DayTime.

    interface NotamDateTime {
        day: number;
        hour: number;
        minute: number;
        month: number;
        year: number;
    }
    Index

    Properties

    Properties

    day: number

    Day of month (1-31).

    hour: number

    Hour (UTC, 0-23).

    minute: number

    Minute (UTC, 0-59).

    month: number

    Month (1-12).

    year: number

    Two-digit year (e.g. 24 for 2024, 26 for 2026).