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 7829f48 commit dcfd992Copy full SHA for dcfd992
docs/Reference/Validation-and-Serialization.md
@@ -394,9 +394,11 @@ configuration](https://github.com/fastify/ajv-compiler#ajv-configuration) is:
394
395
```js
396
{
397
- coerceTypes: true, // change data type of data to match type keyword
+ coerceTypes: 'array', // change data type of data to match type keyword
398
useDefaults: true, // replace missing properties and items with the values from corresponding default keyword
399
removeAdditional: true, // remove additional properties
400
+ uriResolver: require('fast-uri'),
401
+ addUsedSchema: false,
402
// Explicitly set allErrors to `false`.
403
// When set to `true`, a DoS attack is possible.
404
allErrors: false
0 commit comments