Convert JSON Schema to human-readable Markdown documentation
Project description
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
)
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.
Changelog
See Changelog.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsonschema2md2-0.5.1.tar.gz
(9.5 kB
view details)
Built Distribution
File details
Details for the file jsonschema2md2-0.5.1.tar.gz
.
File metadata
- Download URL: jsonschema2md2-0.5.1.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63137b2eadfff2932e0abd2137546d245de39e2ceb645b6a0c7ae5a66725ba51 |
|
MD5 | b7a7fcbceda40a602446daf0d9ced0e2 |
|
BLAKE2b-256 | c72c2695867747e649d88513d81edcb22916a42b50eeaea4f35e92886fbf8b2a |
Provenance
File details
Details for the file jsonschema2md2-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: jsonschema2md2-0.5.1-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf327f42c7f07432b1042fa90fff3f32e9d0e9a43d1e25742e498c3bc34f4290 |
|
MD5 | ac5d1a51634abc94a1cd50d6e7775201 |
|
BLAKE2b-256 | eec0984c31a806d99fa7fa3b56f28b18f142676360ba94ef38f59a2b1c93029e |