Hi,
I have a swagger spec file which have below enum:
"Status": {
"type": "integer",
"description": "",
"x-enumNames": [
"Archived",
"Deleted"
],
"enum": [
1,
2,
]
},
I've generated html documentation using bootprint but i think it is not using "x-enumNames" values to display better enum documentation. The swagger-ui does use this and displays proper string values. I would like to use bootprint as I find it easy, simple to use.
Please let me know if there is a way to do so.
Thanks for great tool!