Skip to content

wustxing/docson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docson

Documentation for your JSON types.

Give Docson a JSON schema and it will generate a beautiful documentation.

Features

  • JSON schema v4 keywords.
  • Runs entirely in the browser.
  • Render schema descriptions with markdown

Installation

  • Place the Docson distribution on the web server serving the schemas (to avoid cross-origin issues).

Usage

Note that you can refer to a sub-schema by adding a json-pointer path as 'dollar-parameter': index.html#/docson/examples/example.json$items

Widget

To include a Docson schema documentations on any page (wiki, ...) without worrying about messing up with javascript libraries and cross-origin issues:

  • Install Docson somewhere as described above.
  • Place the following script tags in the including page, nothing else is needed:
<script src="http://somewhere/path-to-docson/widget.js" data-schema="/path-to-schema">
</script>

See the widget example on jsfiddle.

Integration

You can also integrate Docson in your application and use its javascript API:

docson.doc(element, schema, ref)
  • element is the element which will host the documentation. Either a DOM element or jQuery element.
  • schema is the URI or path to the schema or a string containing the schema source itself.
  • ref is an optional json-pointer path to a sub-schema.

Examples:

Limitations

  • Mixing unrelated keywords can lead to unexpected results.

Not implemented:

  • Non-primitive values in enums and default values
  • dependencies, additionalItems, patternProperties

Development

Please pull-request your failing schemas in the tests/ folder and open an issue describing the expected result.

Bitdeli Badge

About

Documentation for your JSON types

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.7%
  • HTML 8.7%
  • CSS 4.6%