json-schema-static-docs
json-schema-static-docs copied to clipboard
Cannot handle `default` which is an object
I have a schema which has defaults that are objects e.g.
default:
foo: bar
The resulting docs do not show JSON for this, but simply the following:
<tr>
<th>Default</th>
<td colspan="2">[object Object]</td>
</tr>
This will need an update to lib/renderer/index.js to handle objects.