A modern, React-based visual JSON Schema editor for creating and manipulating JSON Schema definitions with an intuitive interface.
Try online: https://json.ophir.dev
- Visual Schema Editor: Design your JSON Schema through an intuitive interface without writing raw JSON
- Real-time JSON Preview: See your schema in JSON format as you build it visually
- Schema Inference: Generate schemas automatically from existing JSON data
- JSON Validation: Test JSON data against your schema with detailed validation feedback
- Combinator Types: Full support for
anyOf,oneOf, andallOfschema composition - Additional Properties: Control whether objects allow extra properties beyond the defined ones
- Responsive Design: Fully responsive interface that works on desktop and mobile devices
npm install jsonjoy-builderAlso install react if you haven't done so yet.
Then use like this:
import "jsonjoy-builder/styles.css";
import { type JSONSchema, SchemaVisualEditor } from "jsonjoy-builder";
import { useState } from "react";
export function App() {
const [schema, setSchema] = useState<JSONSchema>({});
return (
<div>
<h1>JSONJoy Builder</h1>
<SchemaVisualEditor schema={schema} onChange={setSchema}/>
</div>
);
}You can subscribe to enum value changes in the visual editor via onAddEnum and onDeleteEnum.
Both callbacks receive a single context object:
type EnumChangeContext = {
value: string | number | boolean;
index: number;
schemaKey?: string;
};value: enum value that was added/removedindex: index in the enum list at the time of the changeschemaKey: path-like key of the edited field (for example:person.firstName,hobbies[].name)
Example:
import "jsonjoy-builder/styles.css";
import { type JSONSchema, JsonSchemaEditor } from "jsonjoy-builder";
import { useState } from "react";
export function App() {
const [schema, setSchema] = useState<JSONSchema>({ type: "object" });
return (
<JsonSchemaEditor
schema={schema}
readOnly={false}
setSchema={setSchema}
onAddEnum={({ value, index, schemaKey }) => {
console.log("enum:add", { value, index, schemaKey });
}}
onDeleteEnum={({ value, index, schemaKey }) => {
console.log("enum:delete", { value, index, schemaKey });
}}
/>
);
}To style the component, add custom CSS. For basic styling, there are some CSS custom properties ("variables") you can set:
.jsonjoy {
--jsonjoy-background: #f8fafc;
--jsonjoy-foreground: #020817;
--jsonjoy-card: #fff;
--jsonjoy-card-foreground: #020817;
--jsonjoy-popover: #fff;
--jsonjoy-popover-foreground: #020817;
--jsonjoy-primary: #0080ff;
--jsonjoy-primary-foreground: #f8fafc;
--jsonjoy-secondary: #f1f5f9;
--jsonjoy-secondary-foreground: #0f172a;
--jsonjoy-muted: #f1f5f9;
--jsonjoy-muted-foreground: #64748b;
--jsonjoy-accent: #f1f5f9;
--jsonjoy-accent-foreground: #0f172a;
--jsonjoy-destructive: #ef4444;
--jsonjoy-destructive-foreground: #f8fafc;
--jsonjoy-border: #e2e8f0;
--jsonjoy-input: #e2e8f0;
--jsonjoy-ring: #020817;
--jsonjoy-radius: .8rem;
--jsonjoy-font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.jsonjoy.dark {
/** same, but for dark mode */
}By default, the editor uses English. To localize, you need to set a language via the TranslationContext:
import "jsonjoy-builder/styles.css";
import { type JSONSchema, SchemaVisualEditor, TranslationContext, de } from "jsonjoy-builder";
import { useState } from "react";
export function App() {
const [schema, setSchema] = useState<JSONSchema>({});
return (
<TranslationContext value={de}>
<SchemaVisualEditor schema={schema} onChange={setSchema}/>
</TranslationContext>
);
}Currently we have localizations for English, German, French, Russian, Ukrainian, Spanish and Chinese. You can define your own translation like this. If you do, consider opening a PR with the translations!
import { type Translation } from "jsonjoy-builder";
const es: Translation = {
// add translations here (see type Translation for the available keys and default values)
};See also the English localizations file for the default localizations.
git clone https://github.com/lovasoa/jsonjoy-builder.git
cd jsonjoy-builder
npm installStart the development server:
npm run devThe demo application will be available at http://localhost:5173
Build this library for production:
npm run buildThe built files will be available in the dist directory.
- JsonSchemaEditor: The main component that provides tabs for switching between visual and JSON views
- SchemaVisualEditor: Handles the visual representation and editing of schemas
- JsonSchemaVisualizer: Provides JSON view with Monaco editor for direct schema editing
- SchemaInferencer: Dialog component for generating schemas from JSON data
- JsonValidator: Dialog component for validating JSON against the current schema
The SchemaInferencer component can automatically generate JSON Schema definitions from existing JSON data. This feature uses a recursion-based inference system to detect:
- Object structures and properties
- Array types and their item schemas
- String formats (dates, emails, URIs)
- Numeric types (integers vs. floats)
- Required fields
The editor supports composing schemas with anyOf, oneOf, and allOf combinators. Each combinator option can be edited independently with its own type and constraints.
Validate any JSON document against your schema with:
- Real-time feedback
- Detailed error reporting
- Format validation for emails, dates, and other special formats
- React: UI framework
- TypeScript: Type-safe development
- Rsbuild / Rslib: Build tool and development server
- ShadCN UI: Component library
- Monaco Editor: Code editor for JSON viewing/editing
- Ajv: JSON Schema validation
- Zod: Type-safe json parsing in ts
- Lucide Icons: Icon library
- Node.js Test Runner: Simple built-in testing
| Command | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm run build:dev |
Build with development settings |
npm run lint |
Run linter |
npm run format |
Format code |
npm run check |
Lint and format check (Biome) |
npm run fix |
Fix linting issues |
npm run typecheck |
Type check with TypeScript |
npm run preview |
Preview production build |
npm run test |
Run tests |
This project is licensed under the MIT License - see the LICENSE file for details.
