jsonschema2md
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.
See the examples directory for more elaborate examples.
Installation
Install with pip
pip install jsonschema2md
Usage
From the CLI
jsonschema2md [OPTIONS] <input.json> <output.md>
From Python
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))
Options
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, defaultall, options:object,properties,all)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)
pre-commit hook
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
Contributing
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
Changelog
See Changelog.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jsonschema2md-1.5.0.tar.gz.
File metadata
- Download URL: jsonschema2md-1.5.0.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb003c12d4debeba1a38c24830d04445807ca4043583bde96b9d0bb7cfa1af56
|
|
| MD5 |
69e06f3ea211db734aafecd3da24f955
|
|
| BLAKE2b-256 |
0de98f87d2551ca3ecd9f5ce5cb4f5d339488ed9ec5e2215793384110d7bbd13
|
File details
Details for the file jsonschema2md-1.5.0-py3-none-any.whl.
File metadata
- Download URL: jsonschema2md-1.5.0-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6441a45483e7796932638842e2329440242384a801a7594302a6e9b490b52aad
|
|
| MD5 |
c462819cd7991fdc973d5e4c5350e144
|
|
| BLAKE2b-256 |
94da8cee14d7bace31481bcde83f2e8565997c915517006612b181bf15cb0975
|