File tree Expand file tree Collapse file tree
modules/openapi-generator/src/test/resources/3_0 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ openapi : 3.0.0
2+ info :
3+ title : deepobject-query
4+ version : 1.0.0
5+ paths :
6+ /car :
7+ get :
8+ operationId : getCars
9+ parameters :
10+ - name : filter
11+ in : query
12+ required : false
13+ style : deepObject
14+ schema :
15+ $ref : ' #/components/schemas/CarFilter'
16+ explode : true
17+ responses :
18+ ' 200 ' :
19+ description : OK
20+ content :
21+ text/plain :
22+ schema :
23+ type : array
24+ items :
25+ $ref : ' #/components/schemas/Car'
26+ components :
27+ schemas :
28+ Car :
29+ type : object
30+ properties :
31+ id :
32+ type : integer
33+ format : int64
34+ example : 1
35+ make :
36+ type : string
37+ example : Toyota
38+ model :
39+ type : string
40+ example : Camry
41+ CarFilter :
42+ type : object
43+ properties :
44+ make :
45+ type : string
46+ example : Toyota
47+ model :
48+ type : string
49+ example : Camry
You can’t perform that action at this time.
0 commit comments