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 3c664d1 commit 226a784Copy full SHA for 226a784
1 file changed
modules/openapi-generator/src/test/resources/3_0/objectQueryParam.yaml
@@ -14,6 +14,7 @@ paths:
14
parameters:
15
- in: query
16
name: pageQuery
17
+ required: true
18
schema:
19
type: object
20
properties:
@@ -22,4 +23,13 @@ paths:
22
23
format: int32
24
limit:
25
type: integer
- format: int32
26
+ format: int32
27
+ - in: query
28
+ name: notRequired
29
+ required: false
30
+ schema:
31
+ type: object
32
+ properties:
33
+ foobar:
34
+ type: integer
35
0 commit comments