File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -298,6 +298,22 @@ $defs:
298
298
type : array
299
299
items :
300
300
$ref : ' #/$defs/parameter-or-reference'
301
+ not :
302
+ allOf :
303
+ - contains :
304
+ type : object
305
+ properties :
306
+ in :
307
+ const : query
308
+ required :
309
+ - in
310
+ - contains :
311
+ type : object
312
+ properties :
313
+ in :
314
+ const : querystring
315
+ required :
316
+ - in
301
317
requestBody :
302
318
$ref : ' #/$defs/request-body-or-reference'
303
319
responses :
Original file line number Diff line number Diff line change
1
+ openapi : 3.2.0
2
+ info :
3
+ title : API
4
+ version : 1.0.0
5
+ components :
6
+ pathItems :
7
+ my-path-item :
8
+ get :
9
+ description : a query parameter cannot be used together with a querystring parameter
10
+ parameters :
11
+ - name : myquerystring
12
+ in : querystring
13
+ content :
14
+ application/json :
15
+ schema :
16
+ type : string
17
+ - name : myquery
18
+ in : query
19
+ schema :
20
+ type : string
You can’t perform that action at this time.
0 commit comments