type
LiveValidationEvaluation
LiveValidationEvaluation distinguishes a completed check from unavailable typed input. A skipped check makes no claim that the input is valid.
Properties
| Property | Type | Description |
|---|---|---|
Path | string | The Path value. |
Target | string | The Target value. |
Status | string | The Status value. |
Issues | []ValidationIssue | The Issues value. |
Full signature
type LiveValidationEvaluation struct {
Path string `json:"path"`
Target string `json:"target,omitempty"`
Status string `json:"status"`
Issues []ValidationIssue `json:"issues"`
}