Fake Mirrors
    Preparing search index...

    Interface ValidatorValidateError

    Single JSON Schema validation error.

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

    JSON Pointer to the instance that failed validation.

    keyword: string

    Validation keyword that failed.

    message: string | undefined

    Human-readable error message.

    params: object

    Additional parameters for the specific error.

    propertyName: string | undefined

    Name of the property that caused the error.

    schemaPath: string

    JSON Pointer to the schema keyword that failed.