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