schemastery-jsonschema
v1.1.0
Published
This library converts schemastery definition to JSONSchema.
Downloads
301
Readme
Schemastery-JSONSchema
This library converts schemastery definition to JSONSchema.
usage:
import convert from 'schemastery-jsonschema';
import Schema from 'schemastery';
const schema = Schema.object({
foo: Schema.string(),
});
console.log(convert(schema));