Socket
Socket
Sign inDemoInstall

json-schema-converter

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-schema-converter

A library to help validate JSON Schemas and convert between any other type of schema


Version published
Maintainers
1
Created
Source

JSON Schema Converter

A translation and validation library between JSON Schema and any other schema.

Don't get locked into your database schema forever- make sure you can always use the latest, most buggy most trendy database with minimal work.

With the JSON Schema converter, you can also validate your schemas. No matter what db client you're using, you can be confident a schema matches what the client expects.

###Currently supported:

Installation

npm install json-schema-converter

Usage

{inspect} = require 'util'
json_schema = require 'json-schema-converter'
your_schema = require 'your_schema.json'

# to make sure - validate returns a structure that describes the error
unless json_schema.is_valid your_schema
  throw new Error "JSON Schema is invalid, error is: #{inspect json_schema.validate(your_schema)}"

# the actual conversion
your_mongoose_schema = json_schema.to_mongoose_schema your_schema

# now instantiate
your_mongoose_object = new mongoose.Schema your_mongoose_schema

# and you're on your way...
# want to convert back? See the examples!

See the examples for usage.

Future Path

Right now we only support Mongoose schemas, but we hope to translate any schema to JSON schema and back as effortlessly as possible.

Keywords

FAQs

Package last updated on 21 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc