json2schema

1.1.0 • Public • Published

json-schema-generator

Generate JSON Schema from JSON Objects.

Installation

$ npm install -g json2schema

Usage

CLI Tool

$ json2schema -h
 
  Usage: json2schema [options] <URL|filename>
 
  Convert JSON Objects to JSON Schema.
 
  Options:
 
    -h, --help       output usage information
    -V, --version    output the version number
    -o, --out <out>  Specify the path and filename you want to output your schema document to. Defaults to "./schema.json"

In your JavaScript

var Coverter = require('json2schema');
 
var generatedSchema = Converter.convert({
    data: <JSONObject>
});
 

Example

$ json2schema ./jsondocs/myObject.json --out ../../schema.json

Contributing

Contributions are welcomed and encouraged. See CONTRIBUTING.md for instructions.

Package Sidebar

Install

npm i json2schema

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • jacobscarter