1.1.0 • Published 9 years ago

json2schema v1.1.0

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

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.