An individual error detail.

type Error = {
    code: string;
    detail?: string;
    title: string;
}
Index
code: string

The error code identifying the type of error.

detail?: string

A human-readable explanation of the error.

title: string

A short summary of the error.