1.1.0 • Published 8 months ago

schemastery-jsonschema v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months 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));