A React component for generating JSON schemas visually.
npm install @usefranz/react-json-schema-generator
or
yarn add @usefranz/react-json-schema-generator
import React from 'react';
import { JSONSchemaGenerator } from 'react-json-schema-generator';
const App = () => {
return (
<div>
<h1>My JSON Schema Generator</h1>
<JSONSchemaGenerator />
</div>
);
};
export default App;
- Visual interface for creating JSON schemas
- Support for nested objects and arrays
- Import existing JSON or JSON schemas
- Live preview of the generated schema
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License.