CodeConvert – Developer Conversion Tools (JSON→TS, YAML↔JSON, etc.)
Polished UI, but identical tools exist free on CyberChef, in VS Code, and browser DevTools.
JSON/YAML Type Checker
Yet another JSON validator, but uses TypeScript types instead of JSON Schema.
TypeScript developers working with JSON/YAML configuration files
JSON Schema · AJV · zod
It provides both a VSCode extension and a CLI.
The VSCode extension offers Diagnostics (it draws a red underline when something is wrong) and a Go To Definition feature. Since it’s published on both the Marketplace and open-vsx, the extension can also be used in other VSCode-based editors such as Cursor.
The CLI provides check and lsp commands. With the check command, you can run JSON type checks in CI/CD, and with the lsp command, it can be integrated and used in editors other than VSCode.
I’m planning to soon implement type-based field auto-completion and a feature that shows documentation on mouse hover. I’m also considering adding type checking using other static type languages besides TypeScript.
Polished UI, but identical tools exist free on CyberChef, in VS Code, and browser DevTools.
Valid JSON/YAML output across clusters; existing tools (kubectl-foreach, kubectl-allctx) don't.
Type-safe JSON migrations inspired by database patterns—clean API but crowded space.
Validates live Firestore docs against schema when other tools only generate types.
Validates JSON-LD against real HTML output, not config files—CI enforcement catches silent schema drift.
JSON repair middleware; several alternatives (Outlines, instructor, Marvin) already solve this better.