• Overview
@angular/forms/signals

StandardSchemaValidationError

Class

An error used to indicate an issue validating against a standard schema.

API

    
      class StandardSchemaValidationError extends _NgValidationError {  constructor(issue: StandardSchemaV1.Issue, options?: ValidationErrorOptions | undefined): StandardSchemaValidationError;  readonly kind: "standardSchema";  readonly override field: FieldTree<unknown>;  readonly override message?: string | undefined;}
    
    

constructor

StandardSchemaValidationError
@paramissueStandardSchemaV1.Issue
@paramoptionsValidationErrorOptions | undefined

kind

"standardSchema"

field

FieldTree<unknown>

The field associated with this error.

message

string | undefined

Human readable error message.

Jump to details