jsonschema2md
jsonschema2md copied to clipboard
It would be nice to see min/max length if property type is String
If there is min/maxLength (Schema def.) set to property if would be nice to see those also in markup page. For example min=0, max=100 Schema exmaple
properties": {
"lengthLimited": {
"description": "LengthLimited field",
"type": "string",
"minLength": 0,
"maxLength": 100
},...