aboutsummaryrefslogtreecommitdiffstats
path: root/packages/json-schemas/src/schema_validator.ts
blob: c91f49340a169f8b182eefac8bf38abe3c277033 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import {Schema, Validator, ValidatorResult} from 'jsonschema';
import values = require('lodash.values');

import {schemas} from './schemas';

export class SchemaValidator {
    private validator: Validator;
    constructor() {
        this.validator = new Validator();
        for (const schema of values(schemas)) {
            this.validator.addSchema(schema, schema.id);
        }
    }
    public addSchema(schema: Schema) {
        this.validator.addSchema(schema, schema.id);
    }
    // In order to validate a complex JS object using jsonschema, we must replace any complex
    // sub-types (e.g BigNumber) with a simpler string representation. Since BigNumber and other
    // complex types implement the `toString` method, we can stringify the object and
    // then parse it. The resultant object can then be checked using jsonschema.
    public validate(instance: any, schema: Schema): ValidatorResult {
        const jsonSchemaCompatibleObject = JSON.parse(JSON.stringify(instance));
        return this.validator.validate(jsonSchemaCompatibleObject, schema);
    }
    public isValid(instance: any, schema: Schema): boolean {
        const isValid = this.validate(instance, schema).errors.length === 0;
        return isValid;
    }
}