featherbit UI
    Preparing search index...

    Interface ParsedApiError

    interface ParsedApiError {
        error: string;
        raw: string;
        referrers: string[];
        status: number | null;
    }
    Index
    error: string

    The body's error field when it is JSON, else the raw body text.

    raw: string

    The full original message, for fallback display.

    referrers: string[]

    The body's referrers list (409 in_use), else empty.

    status: number | null

    HTTP status, or null when the message doesn't carry one.