@squawk
    Preparing search index...

    Interface MasterRecord

    Raw record extracted from MASTER.txt before joining with ACFTREF.

    interface MasterRecord {
        icaoHex: string;
        mfrMdlCode: string;
        name: string;
        registration: string;
        typeAircraft: string;
        typeEngine: string;
        yearMfr: number | undefined;
    }
    Index

    Properties

    icaoHex: string

    24-bit ICAO hex address, uppercase (e.g. "A00001").

    mfrMdlCode: string

    FAA manufacturer/model code used to join with ACFTREF.txt.

    name: string

    Registrant or operator name.

    registration: string

    Full N-number with "N" prefix (e.g. "N12345").

    typeAircraft: string

    FAA aircraft type code (e.g. "4" for fixed wing single engine).

    typeEngine: string

    FAA engine type code (e.g. "1" for reciprocating).

    yearMfr: number | undefined

    Year of manufacture, or undefined if not present.