ajv
ajv copied to clipboard
The fastest JSON schema Validator. Supports JSON Schema draft-04/06/07/2019-09/2020-12 and JSON Type Definition (RFC8927)
**What version of Ajv are you using? Does the issue happen if you use the latest version?** "version": "8.12.0", **Ajv options object** ```javascript import AJV from "ajv/dist/2019"; const ajv =...
**What issue does this pull request resolve?** #2217 **What changes did you make?** Small change to docs to ensure they match the [actual code](https://github.com/ajv-validator/ajv/blob/32dc83377250ab0a2e5417e89fcca8333d07e5e0/lib/core.ts#L823). **Is there anything that requires more...
**What version of Ajv you are you using?** latest **What problem do you want to solve?** Missing support for new 'v' regexp flag (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_class#v-mode_character_class). Now regexp, that fail to compile,...
**What version of Ajv you are you using?** 7.0.3 **What problem do you want to solve?** In some circumstances, I wish to disable the coercion of a property. Take for...
I try to follow these steps from [Parsing and serializing JSON](https://ajv.js.org/guide/getting-started.html) and I got error about ajv . **The version of Ajv you are using** 6 I install with **Operating...
Seems closely related to https://github.com/ajv-validator/ajv/issues/937 **What version of Ajv you are you using?** v6.12.5 **What problem do you want to solve?** In JavaScript, when processing configuration objects it's typical to...
Hi, I have the example like below, ``` "obj2": { { "prop1": "baz", "prop2": 999 }, { "prop1": "qux", "prop2": 555 } } ``` i.e object containing objects, now in...
**What version of Ajv are you using? Does the issue happen if you use the latest version?** version : 8.12.0 **Typescript code** ```typescript interface Data { hobbies: string[]; } const...
Hi, my object is like below as per schema: ``` { "name": "new_york", // new_york "address": { "type": "type1", "title": "adsas sadfd", "propertyValue": { "new_york": // need to access dynamic...