ajv.validate {ajv} | R Documentation |
The equivalent of calling var ajv = new Ajv(); ajv.validate(...)
in javascript.
ajv.validate(this, schema, data)
this |
An AJV instance, provided implicitly when called via |
schema |
The Schema with which to validate the |
data |
The data to be validated. may be any of the above foremats. |
Other AJV.Instance.Methods: ajv.addFormat
,
ajv.addKeyword
,
ajv.addSchema
,
ajv.errorsText
, ajv.keyword
,
ajv.removeSchema
,
ajv.validateSchema
## Not run:
my_ajv_instance = Ajv()
my_ajv_instance$validate
## End(Not run)