Skip to main content

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, default all, options: object, properties, all)

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsonschema2md-1.0.0.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

jsonschema2md-1.0.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file jsonschema2md-1.0.0.tar.gz.

File metadata

  • Download URL: jsonschema2md-1.0.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for jsonschema2md-1.0.0.tar.gz
Algorithm Hash digest
SHA256 01e18693c8dcdd643aa79ce757c5896877c590493422d23fd0bd76562fbc424b
MD5 a0382213f181c9850a55254378531d66
BLAKE2b-256 0b9b61697b1259569b4fce5e1926d88b63a60c3be095ac02a2357853fbef7681

See more details on using hashes here.

File details

Details for the file jsonschema2md-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: jsonschema2md-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for jsonschema2md-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1d1333cb6d55a152ce10051b05651bc71122c0ec5e572b3433046825661569d4
MD5 5d8aecb906d51d0c7de971eac1ffafa1
BLAKE2b-256 d85f7a6bf8c2cc9cee85fd7f07f01476f6458fd6c4d2361661b6fea0d5f2df1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page