Skip to content

mokkabonna/json-schema-compare

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

json-schema-compare Build Status Coverage Status

Compare json schemas correctly

npm install json-schema-compare --save
var compare = require('json-schema-compare')

var isEqual = compare({
  title: 'title 1',
  type: ['object'],
  uniqueItems: false,
  dependencies: {
    name: ['age', 'lastName']
  },
  required: ['name', 'age', 'name']
}, {
  title: 'title 2',
  type: 'object',
  required: ['age', 'name'],
  dependencies: {
    name: ['lastName', 'age']
  },
  properties: {
    name: {
      minLength: 0
    }
  }
}, {
  ignore: ['title']
})

console.log(isEqual) // => true

Compare json schemas correctly.

  • Ignores sort for arrays where sort does not matter, like required, enum, type, anyOf, oneOf, anyOf, dependencies (if array)
  • Compares correctly type when array or string
  • Ignores duplicate values before comparing
  • For schemas and sub schemas undefined, true and {} are equal
  • For minLength, minItems and minProperties undefined and 0 are equal
  • For uniqueItems, undefined and false are equal

Options

ignore array - default: []

Ignores certain keywords, useful to exclude meta keywords like title, description etc or custom keywords. If all you want to know if they are the same in terms of validation keywords.

Contributing

Create tests for new functionality and follow the eslint rules.

License

MIT © Martin Hansen

About

Compare json schemas correctly

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published