Schyma is a tool designed to simplify the visualization of JSON Schemas, making it less tedious to learn how different parts of api specs are connected(especially when you’re just starting). The visualizer takes JSON Schema files as input and generates a user-friendly graphical representation of the specification.
-
Import JSON Schemas: The visualizer supports various JSON Schemas, such as AsyncAPI, Postman Collection Format, OpenAPI (formerly Swagger), Github Action Spec and so much more. You can easily import your JSON Schema files into the tool.
-
Interactive Visualization: The visualizer provides an interactive and intuitive graphical representation of the JSON Schema. Names, Descriptions, Examples, and other essential details are visually presented for better understanding.
The JSON Schema Visualizer currently supports the following JSON Schema formats:
.json
The easiest way to use schyma is to install it from npm and build it into your app with Webpack.
npm install schyma
Then use it in your app:
import React from 'react';
import Schyma from 'schyma';
import 'schyma/dist/esm/style.css'
import schema from '../config/2.6.0.json';
export default function App() {
return (
<div className="App">
<Schyma title="Name of Specification" description="Specification Description" schema={schema} />
</div>
);
}This repository is now organized as a monorepo:
packages/library: the publishedschymapackagepackages/playground: a local React playground that consumes the workspace library
Run from the repository root:
npm install
npm run devUseful commands:
npm run build
npm run build:library
npm run build:playground
npm run testCommon props you may want to specify include:
-
title: The title of the JSON Schema, which will also be displayed on the initial node. -
description: The description of the JSON Schema being parsed -
schema: The JSON Schema schema which will be rendered on the visualizer.
We welcome contributions from the community! If you find a bug, have a feature request, or want to contribute in any way.
Apache Liscence 2.0. Copyright (c) Azeez Elegbede 2026.