-
Notifications
You must be signed in to change notification settings - Fork 19
/
views.py
1729 lines (1624 loc) · 54.4 KB
/
views.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
Do not modify this file. It is generated from the Swagger specification.
"""
import importlib
import logging
import json
import jsonschema
from jsonschema import ValidationError
from django.conf import settings
from django.http import JsonResponse, HttpResponseBadRequest
from django.utils.decorators import method_decorator
from django.views.decorators.csrf import csrf_exempt
from django.views import View
import generated.schemas as schemas
import generated.utils as utils
# Set up logging
logging.basicConfig(level=logging.DEBUG)
LOGGER = logging.getLogger(__name__)
try:
VALIDATE_RESPONSES = settings.SWAGGER_API_VALIDATE_RESPONSES
except AttributeError:
VALIDATE_RESPONSES = False
LOGGER.info("Swagger API response validation is {}".format(
"on" if VALIDATE_RESPONSES else "off"
))
# Set up the stub class. If it is not explicitly configured in the settings.py
# file of the project, we default to a mocked class.
try:
stub_class_path = settings.STUBS_CLASS
except AttributeError:
stub_class_path = "generated.stubs.MockedStubClass"
module_name, class_name = stub_class_path.rsplit(".", 1)
Module = importlib.import_module(module_name)
Stubs = getattr(Module, class_name)
def maybe_validate_result(result, schema):
if VALIDATE_RESPONSES:
try:
jsonschema.validate(result, schema)
except ValidationError as e:
LOGGER.error(e.message)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="post")
@method_decorator(utils.login_required_no_redirect, name="put")
class Pet(View):
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
PUT_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
POST_BODY_SCHEMA = schemas.Pet
PUT_BODY_SCHEMA = schemas.Pet
def post(self, request, *args, **kwargs):
"""
:param self: A Pet instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.POST_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.addPet(request, body, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def put(self, request, *args, **kwargs):
"""
:param self: A Pet instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.PUT_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.updatePet(request, body, *args, **kwargs)
maybe_validate_result(result, self.PUT_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="get")
class PetFindByStatus(View):
GET_RESPONSE_SCHEMA = json.loads("""{
"items": {
"properties": {
"category": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Category"
}
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"example": "doggie",
"type": "string"
},
"photoUrls": {
"items": {
"type": "string"
},
"type": "array",
"xml": {
"name": "photoUrl",
"wrapped": true
}
},
"status": {
"description": "pet status in the store",
"enum": [
"available",
"pending",
"sold"
],
"type": "string"
},
"tags": {
"items": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Tag"
}
},
"type": "array",
"xml": {
"name": "tag",
"wrapped": true
}
}
},
"required": [
"name",
"photoUrls"
],
"x-scope": [
""
],
"xml": {
"name": "Pet"
}
},
"type": "array"
}""")
def get(self, request, *args, **kwargs):
"""
:param self: A PetFindByStatus instance
:param request: An HttpRequest
"""
status = request.GET.get("status", None)
result = Stubs.findPetsByStatus(request, status, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="get")
class PetFindByTags(View):
GET_RESPONSE_SCHEMA = json.loads("""{
"items": {
"properties": {
"category": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Category"
}
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"example": "doggie",
"type": "string"
},
"photoUrls": {
"items": {
"type": "string"
},
"type": "array",
"xml": {
"name": "photoUrl",
"wrapped": true
}
},
"status": {
"description": "pet status in the store",
"enum": [
"available",
"pending",
"sold"
],
"type": "string"
},
"tags": {
"items": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Tag"
}
},
"type": "array",
"xml": {
"name": "tag",
"wrapped": true
}
}
},
"required": [
"name",
"photoUrls"
],
"x-scope": [
""
],
"xml": {
"name": "Pet"
}
},
"type": "array"
}""")
def get(self, request, *args, **kwargs):
"""
:param self: A PetFindByTags instance
:param request: An HttpRequest
"""
tags = request.GET.get("tags", None)
result = Stubs.findPetsByTags(request, tags, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="delete")
@method_decorator(utils.login_required_no_redirect, name="get")
@method_decorator(utils.login_required_no_redirect, name="post")
class PetPetId(View):
DELETE_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
GET_RESPONSE_SCHEMA = schemas.Pet
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
def delete(self, request, petId, *args, **kwargs):
"""
:param self: A PetPetId instance
:param request: An HttpRequest
:param petId: integer Pet id to delete
"""
result = Stubs.deletePet(request, petId, *args, **kwargs)
maybe_validate_result(result, self.DELETE_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def get(self, request, petId, *args, **kwargs):
"""
:param self: A PetPetId instance
:param request: An HttpRequest
:param petId: integer ID of pet that needs to be fetched
"""
result = Stubs.getPetById(request, petId, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def post(self, request, petId, *args, **kwargs):
"""
:param self: A PetPetId instance
:param request: An HttpRequest
:param petId: string ID of pet that needs to be updated
"""
form_data = {}
name = request.POST.get("name", None)
form_data["name"] = name
status = request.POST.get("status", None)
form_data["status"] = status
result = Stubs.updatePetWithForm(request, form_data, petId, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="post")
class PetPetIdUploadImage(View):
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
def post(self, request, petId, *args, **kwargs):
"""
:param self: A PetPetIdUploadImage instance
:param request: An HttpRequest
:param petId: integer ID of pet to update
"""
form_data = {}
additionalMetadata = request.POST.get("additionalMetadata", None)
form_data["additionalMetadata"] = additionalMetadata
file = request.FILES.get("file", None)
form_data["file"] = file
result = Stubs.uploadFile(request, form_data, petId, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
@method_decorator(utils.login_required_no_redirect, name="get")
class StoreInventory(View):
GET_RESPONSE_SCHEMA = json.loads("""{
"additionalProperties": {
"format": "int32",
"type": "integer"
},
"type": "object"
}""")
def get(self, request, *args, **kwargs):
"""
:param self: A StoreInventory instance
:param request: An HttpRequest
"""
result = Stubs.getInventory(request, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class StoreOrder(View):
POST_RESPONSE_SCHEMA = schemas.Order
POST_BODY_SCHEMA = schemas.Order
def post(self, request, *args, **kwargs):
"""
:param self: A StoreOrder instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.POST_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.placeOrder(request, body, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class StoreOrderOrderId(View):
DELETE_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
GET_RESPONSE_SCHEMA = schemas.Order
def delete(self, request, orderId, *args, **kwargs):
"""
:param self: A StoreOrderOrderId instance
:param request: An HttpRequest
:param orderId: string ID of the order that needs to be deleted
"""
result = Stubs.deleteOrder(request, orderId, *args, **kwargs)
maybe_validate_result(result, self.DELETE_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def get(self, request, orderId, *args, **kwargs):
"""
:param self: A StoreOrderOrderId instance
:param request: An HttpRequest
:param orderId: string ID of pet that needs to be fetched
"""
result = Stubs.getOrderById(request, orderId, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class User(View):
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
POST_BODY_SCHEMA = schemas.User
def post(self, request, *args, **kwargs):
"""
:param self: A User instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.POST_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.createUser(request, body, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class UserCreateWithArray(View):
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
POST_BODY_SCHEMA = json.loads("""{
"items": {
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"lastName": {
"type": "string"
},
"password": {
"type": "string"
},
"phone": {
"type": "string"
},
"userStatus": {
"description": "User Status",
"format": "int32",
"type": "integer"
},
"username": {
"type": "string"
}
},
"x-scope": [
""
],
"xml": {
"name": "User"
}
},
"type": "array"
}""")
def post(self, request, *args, **kwargs):
"""
:param self: A UserCreateWithArray instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.POST_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.createUsersWithArrayInput(request, body, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class UserCreateWithList(View):
POST_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
POST_BODY_SCHEMA = json.loads("""{
"items": {
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"lastName": {
"type": "string"
},
"password": {
"type": "string"
},
"phone": {
"type": "string"
},
"userStatus": {
"description": "User Status",
"format": "int32",
"type": "integer"
},
"username": {
"type": "string"
}
},
"x-scope": [
""
],
"xml": {
"name": "User"
}
},
"type": "array"
}""")
def post(self, request, *args, **kwargs):
"""
:param self: A UserCreateWithList instance
:param request: An HttpRequest
"""
body = utils.body_to_dict(request.body, self.POST_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.createUsersWithListInput(request, body, *args, **kwargs)
maybe_validate_result(result, self.POST_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class UserLogin(View):
GET_RESPONSE_SCHEMA = json.loads("""{
"type": "string"
}""")
def get(self, request, *args, **kwargs):
"""
:param self: A UserLogin instance
:param request: An HttpRequest
"""
username = request.GET.get("username", None)
password = request.GET.get("password", None)
result = Stubs.loginUser(request, username, password, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class UserLogout(View):
GET_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
def get(self, request, *args, **kwargs):
"""
:param self: A UserLogout instance
:param request: An HttpRequest
"""
result = Stubs.logoutUser(request, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
@method_decorator(csrf_exempt, name="dispatch")
class UserUsername(View):
DELETE_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
GET_RESPONSE_SCHEMA = schemas.User
PUT_RESPONSE_SCHEMA = schemas.__UNSPECIFIED__
PUT_BODY_SCHEMA = schemas.User
def delete(self, request, username, *args, **kwargs):
"""
:param self: A UserUsername instance
:param request: An HttpRequest
:param username: string The name that needs to be deleted
"""
result = Stubs.deleteUser(request, username, *args, **kwargs)
maybe_validate_result(result, self.DELETE_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def get(self, request, username, *args, **kwargs):
"""
:param self: A UserUsername instance
:param request: An HttpRequest
:param username: string The name that needs to be fetched. Use user1 for testing.
"""
result = Stubs.getUserByName(request, username, *args, **kwargs)
maybe_validate_result(result, self.GET_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
def put(self, request, username, *args, **kwargs):
"""
:param self: A UserUsername instance
:param request: An HttpRequest
:param username: string name that need to be deleted
"""
body = utils.body_to_dict(request.body, self.PUT_BODY_SCHEMA)
if not body:
return HttpResponseBadRequest("Body required")
result = Stubs.updateUser(request, body, username, *args, **kwargs)
maybe_validate_result(result, self.PUT_RESPONSE_SCHEMA)
return JsonResponse(result, safe=False)
class __SWAGGER_SPEC__(View):
def get(self, request, *args, **kwargs):
spec = json.loads("""{
"basePath": "/v2",
"definitions": {
"Category": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"xml": {
"name": "Category"
}
},
"Order": {
"properties": {
"complete": {
"type": "boolean"
},
"id": {
"format": "int64",
"type": "integer"
},
"petId": {
"format": "int64",
"type": "integer"
},
"quantity": {
"format": "int32",
"type": "integer"
},
"shipDate": {
"format": "date-time",
"type": "string"
},
"status": {
"description": "Order Status",
"enum": [
"placed",
"approved",
"delivered"
],
"type": "string"
}
},
"xml": {
"name": "Order"
}
},
"Pet": {
"properties": {
"category": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Category"
}
},
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"example": "doggie",
"type": "string"
},
"photoUrls": {
"items": {
"type": "string"
},
"type": "array",
"xml": {
"name": "photoUrl",
"wrapped": true
}
},
"status": {
"description": "pet status in the store",
"enum": [
"available",
"pending",
"sold"
],
"type": "string"
},
"tags": {
"items": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"x-scope": [
"",
"#/definitions/Pet"
],
"xml": {
"name": "Tag"
}
},
"type": "array",
"xml": {
"name": "tag",
"wrapped": true
}
}
},
"required": [
"name",
"photoUrls"
],
"xml": {
"name": "Pet"
}
},
"Tag": {
"properties": {
"id": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
}
},
"xml": {
"name": "Tag"
}
},
"User": {
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"id": {
"format": "int64",
"type": "integer"
},
"lastName": {
"type": "string"
},
"password": {
"type": "string"
},
"phone": {
"type": "string"
},
"userStatus": {
"description": "User Status",
"format": "int32",
"type": "integer"
},
"username": {
"type": "string"
}
},
"xml": {
"name": "User"
}
}
},
"host": "petstore.swagger.io",
"info": {
"contact": {
"email": "[email protected]"
},
"description": "This is a sample server Petstore server. You can find out more about Swagger at <a href=\\"http://swagger.io\\">http://swagger.io</a> or on irc.freenode.net, #swagger. For this sample, you can use the api key \\"special-key\\" to test the authorization filters",
"license": {
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"termsOfService": "http://helloreverb.com/terms/",
"title": "Swagger Petstore",
"version": "1.0.0"
},
"paths": {
"/pet": {
"post": {
"consumes": [
"application/json",
"application/xml"
],
"description": "",
"operationId": "addPet",
"parameters": [
{
"description": "Pet object that needs to be added to the store",
"in": "body",
"name": "body",
"required": false,
"schema": {
"$ref": "#/definitions/Pet",
"x-scope": [
""
]
}
}
],
"produces": [
"application/json",
"application/xml"
],
"responses": {
"405": {
"description": "Invalid input"
}
},
"security": [
{
"petstore_auth": [
"write:pets",
"read:pets"
]
}
],
"summary": "Add a new pet to the store",
"tags": [
"pet"
]
},
"put": {
"consumes": [
"application/json",
"application/xml"
],
"description": "",
"operationId": "updatePet",
"parameters": [
{
"description": "Pet object that needs to be added to the store",
"in": "body",
"name": "body",
"required": false,
"schema": {
"$ref": "#/definitions/Pet",
"x-scope": [
""
]
}
}
],
"produces": [
"application/json",
"application/xml"
],
"responses": {
"400": {
"description": "Invalid ID supplied"
},
"404": {
"description": "Pet not found"
},
"405": {
"description": "Validation exception"
}
},
"security": [
{
"petstore_auth": [
"write:pets",
"read:pets"
]
}
],
"summary": "Update an existing pet",
"tags": [
"pet"
]
}
},
"/pet/findByStatus": {
"get": {
"description": "Multiple status values can be provided with comma separated strings",
"operationId": "findPetsByStatus",
"parameters": [
{
"collectionFormat": "multi",
"default": "available",
"description": "Status values that need to be considered for filter",
"in": "query",
"items": {
"enum": [
"available",
"pending",
"sold"
],
"type": "string"
},
"name": "status",
"required": false,
"type": "array"
}
],
"produces": [
"application/json",
"application/xml"
],
"responses": {
"200": {
"description": "successful operation",
"examples": {
"application/json": {
"breed": "Mixed",
"color": "Black",
"gender": "Female",
"name": "Puma",