@maschinenlesbar.org/destatis-genesis-cli
    Preparing search index...

    Interface GenesisStatus

    The logical outcome of a request. GENESIS returns HTTP 200 even for logical errors; the real result lives here. Code is the machine-readable status (0 = ok, 22 = ok-with-auto-correction, 90 = not found, 98 = too large, 104 = empty result, ...); Type is "Information"/"Warnung"/"Fehler" (or their English equivalents), so it is kept as a plain string.

    interface GenesisStatus {
        Code: number;
        Content: string;
        Type: string;
    }
    Index
    Code: number
    Content: string
    Type: string