@wmfs/json-schema-markdown-a-tron

1.10.0 • Public • Published

json-schema-markdown-a-tron

CircleCI

Turn a JSON-Schema object into markdown string

Installation

npm install @wmfs/json-schema-markdown-a-tron --save

Usage

const getMarkdown = require('@wmfs/json-schema-markdown-a-tron')

const output = getMarkdown(
  {
    "$id": "https://example.com/person.schema.json",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Person",
    "type": "object",
    "properties": {
      "firstName": {
        "type": "string",
        "description": "The person's first name."
      },
      "lastName": {
        "type": "string",
        "description": "The person's last name."
      },
      "age": {
        "description": "Age in years which must be equal to or greater than zero.",
        "type": "integer",
        "minimum": 0
      }
    }
  }
)

// Results
// output.markdown = Markdown string.
// output.title = Schema title, if there is one.
// output.description = Schema description, if there is one.
// output.example = Schema example, if there is one.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @wmfs/json-schema-markdown-a-tron

Weekly Downloads

14

Version

1.10.0

License

MIT

Unpacked Size

44.3 kB

Total Files

10

Last publish

Collaborators

  • wmfsbot