interface FormValidationErrorDto {
    code?: string;
    context?: FormValidationErrorContextDto[];
    detail?: string;
    status?: number;
    title?: string;
}

Properties

code?: string

Machine-readable validation error code.

Identifies the form entity that caused the validation error.

detail?: string

Detailed validation error message.

status?: number

The HTTP status code.

title?: string

Short summary of the validation error.