38
38
- name : user
39
39
description : Operations about user
40
40
paths :
41
- /api/pet/ :
41
+ /api/pet :
42
42
put :
43
43
tags :
44
44
- pet
48
48
requestBody :
49
49
description : Update an existent pet in the store
50
50
content :
51
- application/vnd.api+ json :
51
+ application/json :
52
52
schema :
53
53
$ref : ' #/components/schemas/Pet'
54
54
application/xml :
62
62
' 200 ' :
63
63
description : Successful operation
64
64
content :
65
- application/vnd.api+ json :
65
+ application/json :
66
66
schema :
67
67
$ref : ' #/components/schemas/Pet'
68
68
application/xml :
87
87
requestBody :
88
88
description : Create a new pet in the store
89
89
content :
90
- application/vnd.api+ json :
90
+ application/json :
91
91
schema :
92
92
$ref : ' #/components/schemas/Pet'
93
93
application/xml :
@@ -101,7 +101,7 @@ paths:
101
101
' 200 ' :
102
102
description : Successful operation
103
103
content :
104
- application/vnd.api+ json :
104
+ application/json :
105
105
schema :
106
106
$ref : ' #/components/schemas/Pet'
107
107
application/xml :
@@ -113,7 +113,7 @@ paths:
113
113
- petstore_auth :
114
114
- write:pets
115
115
- read:pets
116
- /api/pet/findByStatus/ :
116
+ /api/pet/findByStatus :
117
117
get :
118
118
tags :
119
119
- pet
@@ -137,7 +137,7 @@ paths:
137
137
' 200 ' :
138
138
description : successful operation
139
139
content :
140
- application/vnd.api+ json :
140
+ application/json :
141
141
schema :
142
142
type : array
143
143
items :
@@ -153,7 +153,7 @@ paths:
153
153
- petstore_auth :
154
154
- write:pets
155
155
- read:pets
156
- /api/pet/findByTags/ :
156
+ /api/pet/findByTags :
157
157
get :
158
158
tags :
159
159
- pet
@@ -174,7 +174,7 @@ paths:
174
174
' 200 ' :
175
175
description : successful operation
176
176
content :
177
- application/vnd.api+ json :
177
+ application/json :
178
178
schema :
179
179
type : array
180
180
items :
@@ -190,7 +190,7 @@ paths:
190
190
- petstore_auth :
191
191
- write:pets
192
192
- read:pets
193
- /api/pet/{petId}/ :
193
+ /api/pet/{petId} :
194
194
get :
195
195
tags :
196
196
- pet
@@ -209,7 +209,7 @@ paths:
209
209
' 200 ' :
210
210
description : successful operation
211
211
content :
212
- application/vnd.api+ json :
212
+ application/json :
213
213
schema :
214
214
$ref : ' #/components/schemas/Pet'
215
215
application/xml :
@@ -282,7 +282,7 @@ paths:
282
282
- petstore_auth :
283
283
- write:pets
284
284
- read:pets
285
- /api/pet/{petId}/uploadImage/ :
285
+ /api/pet/{petId}/uploadImage :
286
286
post :
287
287
tags :
288
288
- pet
@@ -313,14 +313,14 @@ paths:
313
313
' 200 ' :
314
314
description : successful operation
315
315
content :
316
- application/vnd.api+ json :
316
+ application/json :
317
317
schema :
318
318
$ref : ' #/components/schemas/ApiResponse'
319
319
security :
320
320
- petstore_auth :
321
321
- write:pets
322
322
- read:pets
323
- /api/store/inventory/ :
323
+ /api/store/inventory :
324
324
get :
325
325
tags :
326
326
- store
@@ -331,15 +331,15 @@ paths:
331
331
' 200 ' :
332
332
description : successful operation
333
333
content :
334
- application/vnd.api+ json :
334
+ application/json :
335
335
schema :
336
336
type : object
337
337
additionalProperties :
338
338
type : integer
339
339
format : int32
340
340
security :
341
341
- api_key : []
342
- /api/store/order/ :
342
+ /api/store/order :
343
343
post :
344
344
tags :
345
345
- store
@@ -348,7 +348,7 @@ paths:
348
348
operationId : placeOrder
349
349
requestBody :
350
350
content :
351
- application/vnd.api+ json :
351
+ application/json :
352
352
schema :
353
353
$ref : ' #/components/schemas/Order'
354
354
application/xml :
@@ -361,12 +361,12 @@ paths:
361
361
' 200 ' :
362
362
description : successful operation
363
363
content :
364
- application/vnd.api+ json :
364
+ application/json :
365
365
schema :
366
366
$ref : ' #/components/schemas/Order'
367
367
' 405 ' :
368
368
description : Invalid input
369
- /api/store/order/{orderId}/ :
369
+ /api/store/order/{orderId} :
370
370
get :
371
371
tags :
372
372
- store
@@ -385,7 +385,7 @@ paths:
385
385
' 200 ' :
386
386
description : successful operation
387
387
content :
388
- application/vnd.api+ json :
388
+ application/json :
389
389
schema :
390
390
$ref : ' #/components/schemas/Order'
391
391
application/xml :
@@ -414,7 +414,7 @@ paths:
414
414
description : Invalid ID supplied
415
415
' 404 ' :
416
416
description : Order not found
417
- /api/user/ :
417
+ /api/user :
418
418
post :
419
419
tags :
420
420
- user
@@ -424,7 +424,7 @@ paths:
424
424
requestBody :
425
425
description : Created user object
426
426
content :
427
- application/vnd.api+ json :
427
+ application/json :
428
428
schema :
429
429
$ref : ' #/components/schemas/User'
430
430
application/xml :
@@ -437,13 +437,13 @@ paths:
437
437
default :
438
438
description : successful operation
439
439
content :
440
- application/vnd.api+ json :
440
+ application/json :
441
441
schema :
442
442
$ref : ' #/components/schemas/User'
443
443
application/xml :
444
444
schema :
445
445
$ref : ' #/components/schemas/User'
446
- /api/user/createWithList/ :
446
+ /api/user/createWithList :
447
447
post :
448
448
tags :
449
449
- user
@@ -452,7 +452,7 @@ paths:
452
452
operationId : createUsersWithListInput
453
453
requestBody :
454
454
content :
455
- application/vnd.api+ json :
455
+ application/json :
456
456
schema :
457
457
type : array
458
458
items :
@@ -461,15 +461,15 @@ paths:
461
461
' 200 ' :
462
462
description : Successful operation
463
463
content :
464
- application/vnd.api+ json :
464
+ application/json :
465
465
schema :
466
466
$ref : ' #/components/schemas/User'
467
467
application/xml :
468
468
schema :
469
469
$ref : ' #/components/schemas/User'
470
470
default :
471
471
description : successful operation
472
- /api/user/login/ :
472
+ /api/user/login :
473
473
get :
474
474
tags :
475
475
- user
@@ -507,12 +507,12 @@ paths:
507
507
application/xml :
508
508
schema :
509
509
type : string
510
- application/vnd.api+ json :
510
+ application/json :
511
511
schema :
512
512
type : string
513
513
' 400 ' :
514
514
description : Invalid username/password supplied
515
- /api/user/logout/ :
515
+ /api/user/logout :
516
516
get :
517
517
tags :
518
518
- user
@@ -523,7 +523,7 @@ paths:
523
523
responses :
524
524
default :
525
525
description : successful operation
526
- /api/user/{username}/ :
526
+ /api/user/{username} :
527
527
get :
528
528
tags :
529
529
- user
@@ -541,7 +541,7 @@ paths:
541
541
' 200 ' :
542
542
description : successful operation
543
543
content :
544
- application/vnd.api+ json :
544
+ application/json :
545
545
schema :
546
546
$ref : ' #/components/schemas/User'
547
547
application/xml :
@@ -567,7 +567,7 @@ paths:
567
567
requestBody :
568
568
description : Update an existent user in the store
569
569
content :
570
- application/vnd.api+ json :
570
+ application/json :
571
571
schema :
572
572
$ref : ' #/components/schemas/User'
573
573
application/xml :
@@ -773,7 +773,7 @@ components:
773
773
Pet :
774
774
description : Pet object that needs to be added to the store
775
775
content :
776
- application/vnd.api+ json :
776
+ application/json :
777
777
schema :
778
778
$ref : ' #/components/schemas/Pet'
779
779
application/xml :
@@ -782,7 +782,7 @@ components:
782
782
UserArray :
783
783
description : List of user object
784
784
content :
785
- application/vnd.api+ json :
785
+ application/json :
786
786
schema :
787
787
type : array
788
788
items :
0 commit comments