Interface ValidationErrorField

Describes one specific validation failure for an input member.

interface ValidationErrorField {
    message: string;
    path: string;
}

Properties

Properties

message: string

A detailed description of the validation failure.

path: string

A JSONPointer expression to the structure member whose value failed to satisfy the modeled constraints.