Open
Description
If I have an array of enums in a parameter, e.g.:
parameters": [
{
"name" : "test",
"in" : "query",
"type": "array",
"collectionFormat": "csv",
"items": {
"type": "string",
"enum": [ "a", "b", "c" ]
}
}
]
swagger-ui 2.1.1 will show a multi-select box. This is nice if the order of the array doesn't matter. But if you need to specify the order, it won't work.
Not sure what the best interface is here, unless you want to have multiple single-select menus with add/remove buttons.