Type Alias Errors

type Errors = {
    code?: string;
    detail?: string;
    errors?: Error[];
    meta?: unknown;
    source?: { parameter?: string; pointer?: string };
    title?: string;
    traceId?: string;
}
Index

Properties

code?: string

The error code.

detail?: string

A human-readable explanation specific to the occurrence of this problem.

errors?: Error[]
meta?: unknown

Additional properties relating to the error.

source?: { parameter?: string; pointer?: string }

Type declaration

  • Optionalparameter?: string

    The URI query parameter that caused the error.

  • Optionalpointer?: string

    A JSON pointer to the property that caused the error.

References to the source of the error.

title?: string

Summary of the problem.

traceId?: string