form-schema-runtime - v1.0.0
    Preparing search index...

    Interface CustomValidatorContext

    Context passed to synchronous custom validators.

    interface CustomValidatorContext {
        fieldName: string;
        schema: FormSchema;
        values: FormValues;
    }
    Index

    Properties

    fieldName: string

    Name of the field currently being validated.

    schema: FormSchema

    Original public schema for the owning form.

    values: FormValues

    Snapshot of all current form values.