Observable

The root instance where you instantiate a three-musketeers application by invoking the function.

Source:
Example
// This supports these signatures:

instance.validate(record, schemaName, options);

instance.validate(); // this, this._defaultSchemaName, this.validationOptions
instance.validate(record); // record, this._defaultSchemaName, this.validationOptions
instance.validate(schemaName); //this, schemaName, this.validationOptions
instance.validate(record, schemaName); //record, schemaName, this.validationOptions
instance.validate(schemaName, options); //this, schemaName, this.validationOptions
Parameters:
Name Type Description
config