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/jsonschema2md2
    hooks:
      - id: jsonschema2md
        rev: <version> # Use the ref you want to point at
        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

jsonschema2md2-0.8.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

jsonschema2md2-0.8.0-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file jsonschema2md2-0.8.0.tar.gz.

File metadata

  • Download URL: jsonschema2md2-0.8.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for jsonschema2md2-0.8.0.tar.gz
Algorithm Hash digest
SHA256 f0dccf22530e868692b10723bcb88b108653d0b9d4329037ba6237a83cd96569
MD5 b00ba2ca860d26c5d27de9e259bd66f2
BLAKE2b-256 a8e34b4106c3b4cd3992d5e99731c9922d0417897b27f2a981474bfb4ad3b14d

See more details on using hashes here.

Provenance

File details

Details for the file jsonschema2md2-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for jsonschema2md2-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd5981781b23510dfad8707c777b3d4d5697ee6784ff94a8ca27383fe04d1446
MD5 a17b6aa89388b34b6d93ee4675afac36
BLAKE2b-256 21f7e8c3bda01df3fd5faf64915cf16b838d7eb2281cbf1c09a6f1818cd2a2d3

See more details on using hashes here.

Provenance

Supported by

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