Type Alias Error

An error object.

type Error = {
    meta?: Meta;
    source?: unknown;
    status?: number;
    title: string;
}
Index

Properties

meta?: Meta

Object containing meta data regarding an error. It does not necessarily contain all the properties.

source?: unknown

Optional JSON patch object pointing to an invalid property.

status?: number

The HTTP status code.

title: string

Title of the HTTP status code.