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.

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.


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)
  • 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)

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

Showcase

Related projects:

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-1.7.0.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsonschema2md2-1.7.0-cp313-cp313-manylinux_2_39_x86_64.whl (23.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

File details

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

File metadata

  • Download URL: jsonschema2md2-1.7.0.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for jsonschema2md2-1.7.0.tar.gz
Algorithm Hash digest
SHA256 487dd9a93f85640a49153e5931b50fc73c469d7403125b9769828c072ff7f2a8
MD5 97586762678748a04caeb89fee00c9fd
BLAKE2b-256 96535f25ec18f39c57bb263f0b2fe10d05797c53fcf001f98ad27cbc3f26b48a

See more details on using hashes here.

File details

Details for the file jsonschema2md2-1.7.0-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for jsonschema2md2-1.7.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a89dc230b30a399d5f8e91a04429d2cae6a100e8d540571a274e155df36ce489
MD5 a76b8d49091c6c38ae06b856d1670e48
BLAKE2b-256 3c761f2f9ce64106d8f46f07722e47bb84c36155d5cc8281de1c73500b46dc60

See more details on using hashes here.

Supported by

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