Fake Mirrors
    Preparing search index...

    Interface ValidatorValidateError

    Details of a single schema validation error.

    Contains information about what failed validation and why.

    interface ValidatorValidateError {
        instancePath: string;
        keyword: string;
        message: string | undefined;
        params: object;
        propertyName: string | undefined;
        schemaPath: string;
    }

    Properties

    instancePath: string

    JSONPointer to the instance that failed validation

    keyword: string

    Validation keyword that failed

    message: string | undefined

    Human-readable error message

    params: object

    Additional parameters for this validation error

    propertyName: string | undefined

    Name of the property that caused the error

    schemaPath: string

    JSONPointer to the schema keyword that failed