We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85dafb0 commit 8bccdc4Copy full SHA for 8bccdc4
docs/strict-mode.md
@@ -42,10 +42,10 @@ By default Ajv fails schema compilation when unknown keywords are used. Users ca
42
ajv.addKeyword("allowedKeyword")
43
```
44
45
-or
+or use the convenience method `addVocabulary` for multiple keywords
46
47
```javascript
48
-ajv.addVocabulary(["allowed1", "allowed2"])
+ajv.addVocabulary(["allowed1", "allowed2"]) // simply calls addKeyword multiple times
49
50
51
#### Ignored "additionalItems" keyword
0 commit comments