interface Issue {
    code: ErrorCode;
    message?: string;
    path?: (string | number)[];
    title: string;
}

Hierarchy (View Summary)

Properties

code: ErrorCode

Standardized ERROR_CODES

message?: string

Details about what caused the issue

path?: (string | number)[]

Path to issue location

title: string