I am not sure whether it is a bug or feature - consider having lens
<http://Query.int|Query.int>().required("minValue", "Required minimal value")
This will nicely generate OpenApi description with
integer
definition. This seems to be the result of
IntegerParam
in
mapWithNewMeta(StringBiDiMappings.long(), IntegerParam)
.
However, when using
.multi
, this doesn't change, the OpenApi definition stays at
integer
. I can se ParamMeta contains also
ArrayParam
, so I guess this should ideally result in somehting like
integer array
?
If I understand correctly, the
ArrayParam
is not used for .
multi
and I am not sure how this should be done properly?