@saasquatch/json-schema-editor-visual
v1.0.3
Published
A visual json schema editor
Downloads
31
Maintainers
Keywords
Readme
SaaSquatch Json Schema Editor
Installing via NPM
npm install @saasquatch/json-schema-editor-visual
Getting Started
import "antd/dist/antd.css";
import "@saasquatch/json-schema-editor-visual/dist/index.css";
import createEditor from "@saasquatch/json-schema-editor-visual";
const SchemaEditor = createEditor();
const SchemaEditorView = () => {
return (
<>
<SchemaEditor />
</>
);
};
The schema editor is designed to be compatible with JSON Schema version draft-06. Visit the JSON Schema Website to learn more.
Schema Editor Props
| name | type | default | description |
| ---------- | -------- | ------- | -------------------------------------------------------------- |
| data
| string | null | the data of editor |
| onChange
| function | null | the function triggered when changes to the editor's data occur |
Acknowledgements
Forked from YMFE.