We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401d087 commit a37126dCopy full SHA for a37126d
flask_restx/reqparse.py
@@ -300,6 +300,8 @@ def __schema__(self):
300
)
301
if self.action == "append":
302
param["items"] = {"type": param["type"]}
303
+ if "pattern" in param:
304
+ param["items"]["pattern"] = param.pop("pattern")
305
param["type"] = "array"
306
param["collectionFormat"] = "multi"
307
if self.action == "split":
0 commit comments