json-to-schema
v0.0.2
Published
convert raw JSON to json-schema.
Downloads
2,570
Readme
JSON TO JSON-Schema
给定数据转化为json-schema定义.
convert raw JSON to json-schema.
效果请看Demo
安装
tbower install json-to-schema --save
NPM
npm install json-to-schema --save
使用
var JSONToSchema = require( 'json-to-schema' );
\\ 如果在浏览器中又不借助包管理,则window.JSONToSchema
console.log( JSONToSchema( {
name: 'lalal',
age: 12
});
/**
* output:
{
type: 'object',
description: '',
properties: {
name: {
type: 'string',
description: ''
},
age: {
type: 'integer',
description: ''
}
}
}
*/