@metreeca/core - v0.9.17
    Preparing search index...

    Interface Problem

    Problem Details for HTTP APIs.

    Standardized format for machine-readable error information in HTTP responses, as defined by RFC 7807. All fields are optional, allowing flexibility in error reporting. Use detail for human-readable occurrence-specific information, and report for machine-readable data.

    interface Problem {
        title?: string;
        type?: string;
        instance?: string;
        status?: number;
        detail?: string;
        report?: Value;
    }
    Index

    Properties

    title?: string

    Short, human-readable summary of the problem type.

    Should be the same for all occurrences of this problem type (e.g., "Payment Required", "Not Found").

    type?: string

    URI reference identifying the problem type.

    "about:blank"
    
    instance?: string

    URI reference identifying the specific occurrence of the problem.

    status?: number

    HTTP status code generated by the origin server.

    detail?: string

    Human-readable explanation specific to this occurrence of the problem.

    report?: Value

    Machine-readable error report (extension field).