JSON Schema Editor

Generates HTML for creating and modifying json schemas. I created this because json-editor is not good at modifying schemas (using the meta schema) and couldn't find any other good UI for making json schemas.
Getting started
npm install json-schema-editor
import JSONSchemaEditor from 'json-schema-editor';
render() {
return (
<JSONSchemaEditor
data={{}}
onChange={console.log}
/>
);
}
Example
Here is what the product schema example looks like rendered.

Todo
- Add support for the description field.
- exclusiveMinimum and exclusiveMaximum, are these even necessary?
- refs
- definitions
- patternProperties
- allOf, anyOf, oneOf