1.1.0 • Published 2 years ago

schemastery-jsonschema v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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));