json-schema-to-jsdoc icon indicating copy to clipboard operation
json-schema-to-jsdoc copied to clipboard

Generate JSDoc from JSON Schema

Results 7 json-schema-to-jsdoc issues
Sort by recently updated
recently updated
newest added

The following should be the same ```json "schema": { "type": "string", "enum": [ "test" ] } ``` ```json "schema": { "type": "string", "const": "test" } ``` But currently the output...

It would be useful if there was support for pattern properties in a schema. Currently, if a property of type "object" uses the "patternProperties" field to represent an object with...

It would be good if there was support for typed arrays. For example, for this schema property: ```json "arrTest": { "type": "array", "items": { "type": "number" } } ``` The...

#41 support "$ref" property: - the type of the property gets linked to the property in the definitions section - all property in the definitions section get written in there...

Not sure how tricky this would end up being, but it would be nice to have support for a hierarchy of types such that something like: ```js const schemas =...

More link between object and array when object in $ref for an object: @property {MyCustomObject} [customProp] description for an array: @property {MyCustomObject[]} [customProp] description

Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...

dependencies