interface ElementValidationFailure {
    id: string | number;
    name: string;
    failure: DataModelValidationFailure;
}

Properties

Properties

id: string | number

Either the element's index or some other identifier for it.

name: string

Optionally a user-friendly name for the element.

The element's validation failure.