otter-json-schema
v1.0.4
Published
A joi-like tool for generating json-schema
Downloads
39
Readme
otter-json-schema
This module is designed to generate JSON Schema from a syntax very similar to joi.
const Schema = require('otter-json-schema')
const schema = Schema.object({
a: Schema.number().min(5).max(10),
b: Schema.number()
}).toJSON()
Todo
- Documentation