File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -298,6 +298,18 @@ $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
+ - contains :
309
+ type : object
310
+ properties :
311
+ in :
312
+ const : querystring
301
313
requestBody :
302
314
$ref : ' #/$defs/request-body-or-reference'
303
315
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