jjv icon indicating copy to clipboard operation
jjv copied to clipboard

Javascript Library for Schema Validation

Results 19 jjv issues
Sort by recently updated
recently updated
newest added

Bumps [uglify-js](https://github.com/mishoo/UglifyJS2) from 2.4.24 to 3.6.8. Release notes *Sourced from [uglify-js's releases](https://github.com/mishoo/UglifyJS2/releases).* > ## v3.6.8 >   > > ## v3.6.7 >   > > ## v3.6.6 >   >...

dependencies

The JSON schema specification does not know of a `uuid` format for strings, however some other validators (such as [ajv](https://github.com/epoberezkin/ajv#formats) support it, and to be honest, it is pretty useful...

Suggestion: in line 358 replace if (!env.fieldType[schema.type](prop)) with if (prop !== null && typeof(prop) !== "undefined" && !env.fieldType[schema.type](prop))

handle allowEmptyValue in schema for email / uri

Hi guys, The below code throws error when data = null. Seems there is a bug on validation algorithm. Can be fixed? Also if I remove the "required" attribute then...

When a JSON schema has a `required` key without a corresponding `type: "object"`, and the JJV validator is passed `undefined` for that object, JJV throws `TypeError: Cannot call method 'hasOwnProperty'...

Hello, we use jjv for JSON schema validation and instantiation, and are mostly very happy with it. Recently we stumbled upon the effects of https://github.com/acornejo/jjv/pull/51 -- since that has been...

var fs = require('fs'); var jjv = require('jjv'); var X3dJsonSchema = { "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON Schema X3D V3.3", "description": "Development JSON Schema for X3D V3.3 ", "type": "object", "properties":...

var fs = require('fs'); var jjv = require('jjv'); var X3dJsonSchema = { "$schema": "http://json-schema.org/draft-04/schema#", "title": "JSON Schema X3D V3.3", "description": "Development JSON Schema for X3D V3.3 ", "type": "object", "properties":...

When I use $data with exclusiveMinimum and exclusiveMaximum keywords, it interprets this links as true value