Interface ValidationError

interface ValidationError {
    actual?: any;
    expected?: any;
    field?: string;
    message: string;
    name: string;
    reference?: string;
    severity?: "error" | "warning" | "info";
    stack?: string;
    type: "ValidationError";
}

Hierarchy (view full)

Properties

actual?: any
expected?: any
field?: string
message: string
name: string
reference?: string
severity?: "error" | "warning" | "info"
stack?: string
type: "ValidationError"