File tree 5 files changed +224
-54
lines changed
springdoc-openapi-webmvc-core/src/test/resources/results/3.1.0
5 files changed +224
-54
lines changed Original file line number Diff line number Diff line change 68
68
<maven-gpg-plugin .version>1.6</maven-gpg-plugin .version>
69
69
<maven-release-plugin .version>2.5.3</maven-release-plugin .version>
70
70
<nexus-staging-maven-plugin >1.6.8</nexus-staging-maven-plugin >
71
- <swagger-api .version>2.2.1 </swagger-api .version>
71
+ <swagger-api .version>2.2.2 </swagger-api .version>
72
72
<swagger-ui .version>4.11.1</swagger-ui .version>
73
73
<spring-security-oauth2 .version>2.3.8.RELEASE</spring-security-oauth2 .version>
74
- <classgraph .version>4.8.147 </classgraph .version>
74
+ <classgraph .version>4.8.149 </classgraph .version>
75
75
<webjars-locator-core .version>0.50</webjars-locator-core .version>
76
76
<gmavenplus-plugin .version>1.8.1</gmavenplus-plugin .version>
77
77
<jaxb-impl .version>2.1</jaxb-impl .version>
Original file line number Diff line number Diff line change 28
28
"in" : " path" ,
29
29
"description" : " E-Mail address to lookup for" ,
30
30
"required" : true ,
31
- "schema" : {}
31
+ "schema" : {
32
+ "type" : " string"
33
+ }
32
34
}
33
35
],
34
36
"responses" : {
76
78
"in" : " path" ,
77
79
"description" : " E-Mail" ,
78
80
"required" : true ,
79
- "schema" : {}
81
+ "schema" : {
82
+ "type" : " string"
83
+ }
80
84
},
81
85
{
82
86
"name" : " firstName" ,
83
87
"in" : " query" ,
84
88
"description" : " First Name" ,
85
89
"required" : true ,
86
- "schema" : {}
90
+ "schema" : {
91
+ "type" : " string"
92
+ }
87
93
},
88
94
{
89
95
"name" : " lastName" ,
90
96
"in" : " query" ,
91
97
"description" : " Last Name" ,
92
98
"required" : true ,
93
- "schema" : {}
99
+ "schema" : {
100
+ "type" : " string"
101
+ }
94
102
}
95
103
],
96
104
"responses" : {
109
117
"headers" : {
110
118
"Location" : {
111
119
"style" : " simple" ,
112
- "schema" : {}
120
+ "schema" : {
121
+ "type" : " string"
122
+ }
113
123
}
114
124
},
115
125
"content" : {
124
134
"description" : " Person with such e-mail already exists" ,
125
135
"content" : {
126
136
"application/json" : {
127
- "schema" : {}
137
+ "schema" : {
138
+ "type" : " string"
139
+ }
128
140
}
129
141
}
130
142
}
142
154
"in" : " path" ,
143
155
"description" : " E-Mail address to lookup for" ,
144
156
"required" : true ,
145
- "schema" : {}
157
+ "schema" : {
158
+ "type" : " string"
159
+ }
146
160
}
147
161
],
148
162
"responses" : {
160
174
"description" : " Person has been deleted" ,
161
175
"content" : {
162
176
"application/json" : {
163
- "schema" : {}
177
+ "schema" : {
178
+ "type" : " string"
179
+ }
164
180
}
165
181
}
166
182
},
167
183
"404" : {
168
184
"description" : " Person with such e-mail doesn't exists" ,
169
185
"content" : {
170
186
"application/json" : {
171
- "schema" : {}
187
+ "schema" : {
188
+ "type" : " string"
189
+ }
172
190
}
173
191
}
174
192
}
187
205
"in" : " query" ,
188
206
"required" : true ,
189
207
"schema" : {
208
+ "type" : " string" ,
190
209
"maxLength" : 6 ,
191
210
"minLength" : 4
192
211
}
196
215
"in" : " query" ,
197
216
"required" : true ,
198
217
"schema" : {
218
+ "type" : " integer" ,
199
219
"format" : " int32" ,
200
220
"maximum" : 6 ,
201
221
"minimum" : 4
216
236
"required" : false ,
217
237
"explode" : false ,
218
238
"schema" : {
239
+ "type" : " array" ,
219
240
"items" : {}
220
241
}
221
242
}
236
257
"content" : {
237
258
"application/json" : {
238
259
"schema" : {
260
+ "type" : " array" ,
239
261
"items" : {
240
262
"$ref" : " #/components/schemas/ItemDTO"
241
263
}
276
298
"content" : {
277
299
"application/json" : {
278
300
"schema" : {
301
+ "type" : " string" ,
279
302
"format" : " uri"
280
303
}
281
304
}
299
322
"in" : " query" ,
300
323
"description" : " pass an optional search string for looking up inventory" ,
301
324
"required" : false ,
302
- "schema" : {}
325
+ "schema" : {
326
+ "type" : " string"
327
+ }
303
328
},
304
329
{
305
330
"name" : " skip" ,
306
331
"in" : " query" ,
307
332
"description" : " number of records to skip for pagination" ,
308
333
"required" : true ,
309
334
"schema" : {
335
+ "type" : " integer" ,
310
336
"format" : " int32" ,
311
337
"minimum" : 0
312
338
}
317
343
"description" : " maximum number of records to return" ,
318
344
"required" : true ,
319
345
"schema" : {
346
+ "type" : " integer" ,
320
347
"format" : " int32" ,
321
348
"maximum" : 50 ,
322
349
"minimum" : 0
339
366
"content" : {
340
367
"application/json" : {
341
368
"schema" : {
369
+ "type" : " array" ,
342
370
"items" : {
343
371
"$ref" : " #/components/schemas/InventoryItem"
344
372
}
351
379
"content" : {
352
380
"application/json" : {
353
381
"schema" : {
382
+ "type" : " array" ,
354
383
"items" : {
355
384
"$ref" : " #/components/schemas/InventoryItem"
356
385
}
425
454
"content" : {
426
455
"application/json" : {
427
456
"schema" : {
457
+ "type" : " array" ,
428
458
"items" : {
429
459
"$ref" : " #/components/schemas/PersonDTO"
430
460
}
446
476
"name" : " numTelco" ,
447
477
"in" : " path" ,
448
478
"required" : true ,
449
- "schema" : {}
479
+ "schema" : {
480
+ "type" : " string"
481
+ }
450
482
},
451
483
{
452
484
"name" : " adresse" ,
453
485
"in" : " query" ,
454
486
"required" : true ,
455
- "schema" : {}
487
+ "schema" : {
488
+ "type" : " string"
489
+ }
456
490
}
457
491
],
458
492
"responses" : {
470
504
"description" : " I'm a teapot" ,
471
505
"content" : {
472
506
"application/json" : {
473
- "schema" : {}
507
+ "schema" : {
508
+ "type" : " string"
509
+ }
474
510
}
475
511
}
476
512
}
482
518
"schemas" : {
483
519
"ErrorMessage" : {
484
520
"properties" : {
485
- "id" : {},
486
- "message" : {}
521
+ "id" : {
522
+ "type" : " string"
523
+ },
524
+ "message" : {
525
+ "type" : " string"
526
+ }
487
527
}
488
528
},
489
529
"PersonDTO" : {
490
530
"properties" : {
491
- "email" : {},
492
- "firstName" : {},
493
- "lastName" : {}
531
+ "email" : {
532
+ "type" : " string"
533
+ },
534
+ "firstName" : {
535
+ "type" : " string"
536
+ },
537
+ "lastName" : {
538
+ "type" : " string"
539
+ }
494
540
}
495
541
},
496
542
"ItemLightDTO" : {
497
543
"properties" : {
498
- "description" : {},
544
+ "description" : {
545
+ "type" : " string"
546
+ },
499
547
"price" : {
548
+ "type" : " integer" ,
500
549
"format" : " int32"
501
550
},
502
551
"deprecatedPrice" : {
552
+ "type" : " integer" ,
503
553
"format" : " int32" ,
504
554
"deprecated" : true
505
555
}
508
558
"InventoryItem" : {
509
559
"properties" : {
510
560
"id" : {
561
+ "type" : " string" ,
511
562
"format" : " uuid" ,
512
563
"example" : " d290f1ee-6c54-4b01-90e6-d701748f0851"
513
564
},
514
565
"name" : {
566
+ "type" : " string" ,
515
567
"example" : " Widget Adapter"
516
568
},
517
569
"releaseDate" : {
570
+ "type" : " string" ,
518
571
"example" : " 2016-08-29T09:12:33.001Z"
519
572
},
520
573
"manufacturer" : {
531
584
"Manufacturer" : {
532
585
"properties" : {
533
586
"name" : {
587
+ "type" : " string" ,
534
588
"example" : " ACME Corporation"
535
589
},
536
590
"homePage" : {
591
+ "type" : " string" ,
537
592
"example" : " https://www.acme-corp.com"
538
593
},
539
594
"phone" : {
595
+ "type" : " string" ,
540
596
"example" : " 408-867-5309"
541
597
}
542
598
},
546
602
},
547
603
"ItemDTO" : {
548
604
"properties" : {
549
- "itemID" : {},
550
- "description" : {},
605
+ "itemID" : {
606
+ "type" : " string"
607
+ },
608
+ "description" : {
609
+ "type" : " string"
610
+ },
551
611
"price" : {
612
+ "type" : " integer" ,
552
613
"format" : " int32"
553
614
},
554
615
"deprecatedPrice" : {
616
+ "type" : " integer" ,
555
617
"format" : " int32" ,
556
618
"deprecated" : true
557
619
}
You can’t perform that action at this time.
0 commit comments