
Security News
The Nightmare Before Deployment
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.
jsonschema2md
Advanced tools
Convert JSON Schemas to simple, human-readable Markdown documentation.
For example:
{
"$id": "https://example.com/person.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Person",
"description": "JSON Schema for a person object.",
"type": "object",
"properties": {
"firstName": {
"type": "string",
"description": "The person's first name."
},
"lastName": {
"type": "string",
"description": "The person's last name."
}
}
}
will be converted to:
Person
JSON Schema for a person object.
Properties
firstName(string): The person's first name.lastName(string): The person's last name.
There's also the possibility to translate it to another language. For example, the same schema in French would result in:
Person
JSON Schema for a person object.
Propriétés
firstName(chaîne de caractères): The person's first name.lastName(chaîne de caractères): The person's last name.
See the examples directory for more elaborate examples.
Install with pip
pip install jsonschema2md
jsonschema2md [OPTIONS] <input.json> <output.md>
import json
import jsonschema2md
parser = jsonschema2md.Parser(
examples_as_yaml=False,
show_examples="all",
)
with open("./examples/food.json", "r") as json_file:
md_lines = parser.parse_schema(json.load(json_file))
print(''.join(md_lines))
examples_as_yaml: Parse examples in YAML-format instead of JSON. (bool, default:
False)show_examples: Parse examples for only the main object, only properties, or all.
(str, default all, options: object, properties, all)show_deprecated: Show deprecated properties. (bool, default: True)collapse_children: Collapse object children into a <details> element (bool, default:
False)header_level: Base header level for the generated markdown. (int, default: 0)ignore_patterns: List of regex patterns to ignore when parsing the schema. (list of str, default: None)You can use the pre-commit hook with:
repos:
- repo: https://github.com/sbrunner/jsonschema2md
rev: <version> # Use the ref you want to point at
hooks:
- id: jsonschema2md
files: schema.json
args:
- --pre-commit
- schema.json
- schema.md
Bugs, questions or suggestions? Feel free to post an issue in the issue tracker or to make a pull request! See Contributing.md for more info.
Install the pre-commit hooks:
pip install pre-commit
pre-commit install --allow-missing-config
FAQs
Convert JSON Schema to human-readable Markdown documentation
We found that jsonschema2md demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Season’s greetings from Socket, and here’s to a calm end of year: clean dependencies, boring pipelines, no surprises.

Research
/Security News
Impostor NuGet package Tracer.Fody.NLog typosquats Tracer.Fody and its author, using homoglyph tricks, and exfiltrates Stratis wallet JSON/passwords to a Russian IP address.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.