ajv.addSchema {ajv} | R Documentation |
The add a schema to an Ajv instance
ajv.addSchema(this, schema, key)
this |
An AJV instance, provided implicitly when called via |
schema |
The schema to be added.
|
key |
String; the name with which to store the schema |
invisible(NULL)
Other AJV.Instance.Methods: ajv.addFormat
,
ajv.addKeyword
,
ajv.errorsText
, ajv.keyword
,
ajv.removeSchema
,
ajv.validateSchema
,
ajv.validate
## Not run:
my_ajv_instance = Ajv()
my_ajv_instance$addSchema
## End(Not run)