JSON2Mermaid Lite converts pasted JSON into Mermaid.js flowchart TD syntax.
You can copy the generated code into Mermaid-compatible Markdown or Mermaid Live Editor to inspect the structure visually.
.mmd / .txt.Supported
Limits and unsupported cases
If the JSON has a syntax error, the tool shows an approximate line and column.
If your input is over 300KB, split it into smaller pieces before converting.
The output is Mermaid.js flowchart TD syntax.
flowchart TD node_0["root"] node_1["user"] node_0 --> node_1 node_2["name"] node_1 --> node_2
You can preview the generated code in external tools such as Mermaid Live Editor.
When you paste code into an external site, that site handles the content. Do not paste confidential JSON or code generated from confidential JSON.
Q. Is my data sent to a server?
A. The conversion itself runs in your browser. This page may still load ad and analytics tags.
Q. Can it convert large JSON?
A. The current limit is 300KB. Split large JSON before converting.
Q. Are all array items displayed?
A. Arrays are expanded up to 50 items. Additional items are omitted.
Diagram completeness and readability are not guaranteed. Always review generated output manually for important structures.