interface

LiveValidationEvaluation

The result of checking one requested field’s unsaved value.

Result properties

PropertyTypeDescription
pathstringThe requested document-root field path, such as "variants.0.salePrice".
targetstringOptional opaque field identity supplied by the server for correlating feedback. Do not construct or parse it.
status"checked" | "skipped"checked means the callbacks ran; issues may still contain validation messages. skipped means the value or target could not be checked and issues is empty.
issuesValidationIssue[]Validation messages from this live check. An empty list means no messages were returned; it is not a guarantee that saving will succeed.

How it works

Messages can target the field or its children. Keep live feedback separate from save failures and discard feedback when its form state is no longer current.

Full signature

Related guides