ajv.addKeyword {ajv} | R Documentation |
The add a schema to an Ajv instance
ajv.addKeyword(this, name, definition)
this |
An AJV instance, provided implicitly when called via |
name |
The name of the keyword to be added. |
definition |
A string encoding of a javascript object to be used as to define the keyword. |
invisible(NULL)
Other AJV.Instance.Methods: ajv.addFormat
,
ajv.addSchema
,
ajv.errorsText
, ajv.keyword
,
ajv.removeSchema
,
ajv.validateSchema
,
ajv.validate
## Not run:
my_ajv_instance = Ajv()
my_ajv_instance$addSchema
## End(Not run)