Libraries
    Preparing search index...

    Interface ProblemDetails

    An RFC 9457 (formerly RFC 7807) Problem Details object.

    Provides machine-readable error information in HTTP API responses. Serialized as application/problem+json.

    interface ProblemDetails {
        detail?: string;
        instance?: string;
        status: number;
        title: string;
        type: string;
        readonly [extension: string]: unknown;
    }

    Indexable

    • readonly [extension: string]: unknown
    Index

    Properties

    detail?: string
    instance?: string
    status: number
    title: string
    type: string