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)

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


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

Uploaded Source

Built Distribution

jsonschema2md2-0.5.0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: jsonschema2md2-0.5.0.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for jsonschema2md2-0.5.0.tar.gz
Algorithm Hash digest
SHA256 a4bf6533124ac5eb39667991cb72b843996b943257763c3cebda20c8860dbf51
MD5 675987b0eca864e530d40317e72ad684
BLAKE2b-256 78f28a0d183fdd0bb11733bb0da88b532e0c86b6c11c2d03ea146d43a6057d3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jsonschema2md2-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 677013902782ac5c32e4fa303c4e75d6a6ed7801255e1db2e349ca615c886858
MD5 d0c676df43c460c001f601665a0563fc
BLAKE2b-256 111a3db9f87a507a9d0198796d4b7d8ccb86b6413d7cc004ba5de5855afaadcf

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