This repository was archived by the owner on Dec 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathFILES
More file actions
1784 lines (1784 loc) · 119 KB
/
FILES
File metadata and controls
1784 lines (1784 loc) · 119 KB
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
.gitignore
.gitlab-ci.yml
.travis.yml
README.md
docs/apis/tags/another_fake_api.md
docs/apis/tags/another_fake_api/call_123_test__special_tags.md
docs/apis/tags/default_api.md
docs/apis/tags/default_api/foo_get.md
docs/apis/tags/fake_api.md
docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md
docs/apis/tags/fake_api/array_model.md
docs/apis/tags/fake_api/array_of_enums.md
docs/apis/tags/fake_api/body_with_file_schema.md
docs/apis/tags/fake_api/body_with_query_params.md
docs/apis/tags/fake_api/boolean.md
docs/apis/tags/fake_api/case_sensitive_params.md
docs/apis/tags/fake_api/client_model.md
docs/apis/tags/fake_api/composed_one_of_different_types.md
docs/apis/tags/fake_api/delete_coffee.md
docs/apis/tags/fake_api/endpoint_parameters.md
docs/apis/tags/fake_api/enum_parameters.md
docs/apis/tags/fake_api/fake_health_get.md
docs/apis/tags/fake_api/group_parameters.md
docs/apis/tags/fake_api/inline_additional_properties.md
docs/apis/tags/fake_api/inline_composition.md
docs/apis/tags/fake_api/json_form_data.md
docs/apis/tags/fake_api/json_patch.md
docs/apis/tags/fake_api/json_with_charset.md
docs/apis/tags/fake_api/mammal.md
docs/apis/tags/fake_api/multiple_response_bodies.md
docs/apis/tags/fake_api/multiple_securities.md
docs/apis/tags/fake_api/number_with_validations.md
docs/apis/tags/fake_api/object_in_query.md
docs/apis/tags/fake_api/object_model_with_ref_props.md
docs/apis/tags/fake_api/parameter_collisions.md
docs/apis/tags/fake_api/query_param_with_json_content_type.md
docs/apis/tags/fake_api/query_parameter_collection_format.md
docs/apis/tags/fake_api/ref_object_in_query.md
docs/apis/tags/fake_api/response_without_schema.md
docs/apis/tags/fake_api/string.md
docs/apis/tags/fake_api/string_enum.md
docs/apis/tags/fake_api/upload_download_file.md
docs/apis/tags/fake_api/upload_file.md
docs/apis/tags/fake_api/upload_files.md
docs/apis/tags/fake_classname_tags123_api.md
docs/apis/tags/fake_classname_tags123_api/classname.md
docs/apis/tags/pet_api.md
docs/apis/tags/pet_api/add_pet.md
docs/apis/tags/pet_api/delete_pet.md
docs/apis/tags/pet_api/find_pets_by_status.md
docs/apis/tags/pet_api/find_pets_by_tags.md
docs/apis/tags/pet_api/get_pet_by_id.md
docs/apis/tags/pet_api/update_pet.md
docs/apis/tags/pet_api/update_pet_with_form.md
docs/apis/tags/pet_api/upload_file_with_required_file.md
docs/apis/tags/pet_api/upload_image.md
docs/apis/tags/store_api.md
docs/apis/tags/store_api/delete_order.md
docs/apis/tags/store_api/get_inventory.md
docs/apis/tags/store_api/get_order_by_id.md
docs/apis/tags/store_api/place_order.md
docs/apis/tags/user_api.md
docs/apis/tags/user_api/create_user.md
docs/apis/tags/user_api/create_users_with_array_input.md
docs/apis/tags/user_api/create_users_with_list_input.md
docs/apis/tags/user_api/delete_user.md
docs/apis/tags/user_api/get_user_by_name.md
docs/apis/tags/user_api/login_user.md
docs/apis/tags/user_api/logout_user.md
docs/apis/tags/user_api/update_user.md
docs/components/headers/header_int32_json_content_type_header.md
docs/components/headers/header_number_header.md
docs/components/headers/header_ref_content_schema_header.md
docs/components/headers/header_ref_schema_header.md
docs/components/headers/header_ref_string_header.md
docs/components/headers/header_string_header.md
docs/components/parameters/parameter_component_ref_schema_string_with_validation.md
docs/components/parameters/parameter_path_user_name.md
docs/components/parameters/parameter_ref_path_user_name.md
docs/components/parameters/parameter_ref_schema_string_with_validation.md
docs/components/request_bodies/request_body_client.md
docs/components/request_bodies/request_body_pet.md
docs/components/request_bodies/request_body_ref_user_array.md
docs/components/request_bodies/request_body_user_array.md
docs/components/responses/response_ref_success_description_only.md
docs/components/responses/response_ref_successful_xml_and_json_array_of_pet.md
docs/components/responses/response_success_description_only.md
docs/components/responses/response_success_inline_content_and_header.md
docs/components/responses/response_success_with_json_api_response.md
docs/components/responses/response_successful_xml_and_json_array_of_pet.md
docs/components/schema/_200_response.md
docs/components/schema/_return.md
docs/components/schema/abstract_step_message.md
docs/components/schema/additional_properties_class.md
docs/components/schema/additional_properties_validator.md
docs/components/schema/additional_properties_with_array_of_enums.md
docs/components/schema/address.md
docs/components/schema/animal.md
docs/components/schema/animal_farm.md
docs/components/schema/any_type_and_format.md
docs/components/schema/any_type_not_string.md
docs/components/schema/api_response.md
docs/components/schema/apple.md
docs/components/schema/apple_req.md
docs/components/schema/array_holding_any_type.md
docs/components/schema/array_of_array_of_number_only.md
docs/components/schema/array_of_enums.md
docs/components/schema/array_of_number_only.md
docs/components/schema/array_test.md
docs/components/schema/array_with_validations_in_items.md
docs/components/schema/banana.md
docs/components/schema/banana_req.md
docs/components/schema/bar.md
docs/components/schema/basque_pig.md
docs/components/schema/boolean.md
docs/components/schema/boolean_enum.md
docs/components/schema/capitalization.md
docs/components/schema/cat.md
docs/components/schema/category.md
docs/components/schema/child_cat.md
docs/components/schema/class_model.md
docs/components/schema/client.md
docs/components/schema/complex_quadrilateral.md
docs/components/schema/composed_any_of_different_types_no_validations.md
docs/components/schema/composed_array.md
docs/components/schema/composed_bool.md
docs/components/schema/composed_none.md
docs/components/schema/composed_number.md
docs/components/schema/composed_object.md
docs/components/schema/composed_one_of_different_types.md
docs/components/schema/composed_string.md
docs/components/schema/currency.md
docs/components/schema/danish_pig.md
docs/components/schema/date_time_test.md
docs/components/schema/date_time_with_validations.md
docs/components/schema/date_with_validations.md
docs/components/schema/decimal_payload.md
docs/components/schema/dog.md
docs/components/schema/drawing.md
docs/components/schema/enum_arrays.md
docs/components/schema/enum_class.md
docs/components/schema/enum_test.md
docs/components/schema/equilateral_triangle.md
docs/components/schema/file.md
docs/components/schema/file_schema_test_class.md
docs/components/schema/foo.md
docs/components/schema/format_test.md
docs/components/schema/from_schema.md
docs/components/schema/fruit.md
docs/components/schema/fruit_req.md
docs/components/schema/gm_fruit.md
docs/components/schema/grandparent_animal.md
docs/components/schema/has_only_read_only.md
docs/components/schema/health_check_result.md
docs/components/schema/integer_enum.md
docs/components/schema/integer_enum_big.md
docs/components/schema/integer_enum_one_value.md
docs/components/schema/integer_enum_with_default_value.md
docs/components/schema/integer_max10.md
docs/components/schema/integer_min15.md
docs/components/schema/isosceles_triangle.md
docs/components/schema/items.md
docs/components/schema/json_patch_request.md
docs/components/schema/json_patch_request_add_replace_test.md
docs/components/schema/json_patch_request_move_copy.md
docs/components/schema/json_patch_request_remove.md
docs/components/schema/mammal.md
docs/components/schema/map_test.md
docs/components/schema/mixed_properties_and_additional_properties_class.md
docs/components/schema/money.md
docs/components/schema/name.md
docs/components/schema/no_additional_properties.md
docs/components/schema/nullable_class.md
docs/components/schema/nullable_shape.md
docs/components/schema/nullable_string.md
docs/components/schema/number.md
docs/components/schema/number_only.md
docs/components/schema/number_with_validations.md
docs/components/schema/object_interface.md
docs/components/schema/object_model_with_arg_and_args_properties.md
docs/components/schema/object_model_with_ref_props.md
docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.md
docs/components/schema/object_with_colliding_properties.md
docs/components/schema/object_with_decimal_properties.md
docs/components/schema/object_with_difficultly_named_props.md
docs/components/schema/object_with_inline_composition_property.md
docs/components/schema/object_with_invalid_named_refed_properties.md
docs/components/schema/object_with_optional_test_prop.md
docs/components/schema/object_with_validations.md
docs/components/schema/order.md
docs/components/schema/parent_pet.md
docs/components/schema/pet.md
docs/components/schema/pig.md
docs/components/schema/player.md
docs/components/schema/quadrilateral.md
docs/components/schema/quadrilateral_interface.md
docs/components/schema/read_only_first.md
docs/components/schema/ref_pet.md
docs/components/schema/req_props_from_explicit_add_props.md
docs/components/schema/req_props_from_true_add_props.md
docs/components/schema/req_props_from_unset_add_props.md
docs/components/schema/scalene_triangle.md
docs/components/schema/self_referencing_array_model.md
docs/components/schema/self_referencing_object_model.md
docs/components/schema/shape.md
docs/components/schema/shape_or_null.md
docs/components/schema/simple_quadrilateral.md
docs/components/schema/some_object.md
docs/components/schema/special_model_name.md
docs/components/schema/string.md
docs/components/schema/string_boolean_map.md
docs/components/schema/string_enum.md
docs/components/schema/string_enum_with_default_value.md
docs/components/schema/string_with_validation.md
docs/components/schema/tag.md
docs/components/schema/triangle.md
docs/components/schema/triangle_interface.md
docs/components/schema/user.md
docs/components/schema/uuid_string.md
docs/components/schema/whale.md
docs/components/schema/zebra.md
docs/components/security_schemes/security_scheme_api_key.md
docs/components/security_schemes/security_scheme_api_key_query.md
docs/components/security_schemes/security_scheme_bearer_test.md
docs/components/security_schemes/security_scheme_http_basic_test.md
docs/components/security_schemes/security_scheme_http_signature_test.md
docs/components/security_schemes/security_scheme_open_id_connect_test.md
docs/components/security_schemes/security_scheme_petstore_auth.md
docs/servers/server_0.md
docs/servers/server_1.md
docs/servers/server_2.md
git_push.sh
migration_2_0_0.md
migration_other_python_generators.md
pyproject.toml
src/petstore_api/__init__.py
src/petstore_api/api_client.py
src/petstore_api/apis/__init__.py
src/petstore_api/apis/path_to_api.py
src/petstore_api/apis/paths/__init__.py
src/petstore_api/apis/paths/another_fake_dummy.py
src/petstore_api/apis/paths/fake.py
src/petstore_api/apis/paths/fake_additional_properties_with_array_of_enums.py
src/petstore_api/apis/paths/fake_body_with_file_schema.py
src/petstore_api/apis/paths/fake_body_with_query_params.py
src/petstore_api/apis/paths/fake_case_sensitive_params.py
src/petstore_api/apis/paths/fake_classname_test.py
src/petstore_api/apis/paths/fake_delete_coffee_id.py
src/petstore_api/apis/paths/fake_health.py
src/petstore_api/apis/paths/fake_inline_additional_properties.py
src/petstore_api/apis/paths/fake_inline_composition.py
src/petstore_api/apis/paths/fake_json_form_data.py
src/petstore_api/apis/paths/fake_json_patch.py
src/petstore_api/apis/paths/fake_json_with_charset.py
src/petstore_api/apis/paths/fake_multiple_response_bodies.py
src/petstore_api/apis/paths/fake_multiple_securities.py
src/petstore_api/apis/paths/fake_obj_in_query.py
src/petstore_api/apis/paths/fake_parameter_collisions1_abab_self_ab.py
src/petstore_api/apis/paths/fake_pet_id_upload_image_with_required_file.py
src/petstore_api/apis/paths/fake_query_param_with_json_content_type.py
src/petstore_api/apis/paths/fake_ref_obj_in_query.py
src/petstore_api/apis/paths/fake_refs_array_of_enums.py
src/petstore_api/apis/paths/fake_refs_arraymodel.py
src/petstore_api/apis/paths/fake_refs_boolean.py
src/petstore_api/apis/paths/fake_refs_composed_one_of_number_with_validations.py
src/petstore_api/apis/paths/fake_refs_enum.py
src/petstore_api/apis/paths/fake_refs_mammal.py
src/petstore_api/apis/paths/fake_refs_number.py
src/petstore_api/apis/paths/fake_refs_object_model_with_ref_props.py
src/petstore_api/apis/paths/fake_refs_string.py
src/petstore_api/apis/paths/fake_response_without_schema.py
src/petstore_api/apis/paths/fake_test_query_paramters.py
src/petstore_api/apis/paths/fake_upload_download_file.py
src/petstore_api/apis/paths/fake_upload_file.py
src/petstore_api/apis/paths/fake_upload_files.py
src/petstore_api/apis/paths/foo.py
src/petstore_api/apis/paths/pet.py
src/petstore_api/apis/paths/pet_find_by_status.py
src/petstore_api/apis/paths/pet_find_by_tags.py
src/petstore_api/apis/paths/pet_pet_id.py
src/petstore_api/apis/paths/pet_pet_id_upload_image.py
src/petstore_api/apis/paths/store_inventory.py
src/petstore_api/apis/paths/store_order.py
src/petstore_api/apis/paths/store_order_order_id.py
src/petstore_api/apis/paths/user.py
src/petstore_api/apis/paths/user_create_with_array.py
src/petstore_api/apis/paths/user_create_with_list.py
src/petstore_api/apis/paths/user_login.py
src/petstore_api/apis/paths/user_logout.py
src/petstore_api/apis/paths/user_username.py
src/petstore_api/apis/tag_to_api.py
src/petstore_api/apis/tags/__init__.py
src/petstore_api/apis/tags/another_fake_api.py
src/petstore_api/apis/tags/default_api.py
src/petstore_api/apis/tags/fake_api.py
src/petstore_api/apis/tags/fake_classname_tags123_api.py
src/petstore_api/apis/tags/pet_api.py
src/petstore_api/apis/tags/store_api.py
src/petstore_api/apis/tags/user_api.py
src/petstore_api/components/__init__.py
src/petstore_api/components/headers/__init__.py
src/petstore_api/components/headers/header_int32_json_content_type_header/__init__.py
src/petstore_api/components/headers/header_int32_json_content_type_header/content/__init__.py
src/petstore_api/components/headers/header_int32_json_content_type_header/content/application_json/__init__.py
src/petstore_api/components/headers/header_int32_json_content_type_header/content/application_json/schema.py
src/petstore_api/components/headers/header_int32_json_content_type_header/content/application_json/schema.pyi
src/petstore_api/components/headers/header_number_header/__init__.py
src/petstore_api/components/headers/header_number_header/schema.py
src/petstore_api/components/headers/header_number_header/schema.pyi
src/petstore_api/components/headers/header_ref_content_schema_header/__init__.py
src/petstore_api/components/headers/header_ref_content_schema_header/content/__init__.py
src/petstore_api/components/headers/header_ref_content_schema_header/content/application_json/__init__.py
src/petstore_api/components/headers/header_ref_content_schema_header/content/application_json/schema.py
src/petstore_api/components/headers/header_ref_content_schema_header/content/application_json/schema.pyi
src/petstore_api/components/headers/header_ref_schema_header/__init__.py
src/petstore_api/components/headers/header_ref_schema_header/schema.py
src/petstore_api/components/headers/header_ref_schema_header/schema.pyi
src/petstore_api/components/headers/header_ref_string_header/__init__.py
src/petstore_api/components/headers/header_string_header/__init__.py
src/petstore_api/components/headers/header_string_header/schema.py
src/petstore_api/components/headers/header_string_header/schema.pyi
src/petstore_api/components/parameters/__init__.py
src/petstore_api/components/parameters/parameter_component_ref_schema_string_with_validation/__init__.py
src/petstore_api/components/parameters/parameter_component_ref_schema_string_with_validation/content/__init__.py
src/petstore_api/components/parameters/parameter_component_ref_schema_string_with_validation/content/application_json/__init__.py
src/petstore_api/components/parameters/parameter_component_ref_schema_string_with_validation/content/application_json/schema.py
src/petstore_api/components/parameters/parameter_component_ref_schema_string_with_validation/content/application_json/schema.pyi
src/petstore_api/components/parameters/parameter_path_user_name/__init__.py
src/petstore_api/components/parameters/parameter_path_user_name/schema.py
src/petstore_api/components/parameters/parameter_path_user_name/schema.pyi
src/petstore_api/components/parameters/parameter_ref_path_user_name/__init__.py
src/petstore_api/components/parameters/parameter_ref_schema_string_with_validation/__init__.py
src/petstore_api/components/parameters/parameter_ref_schema_string_with_validation/schema.py
src/petstore_api/components/parameters/parameter_ref_schema_string_with_validation/schema.pyi
src/petstore_api/components/request_bodies/__init__.py
src/petstore_api/components/request_bodies/request_body_client/__init__.py
src/petstore_api/components/request_bodies/request_body_client/content/__init__.py
src/petstore_api/components/request_bodies/request_body_client/content/application_json/__init__.py
src/petstore_api/components/request_bodies/request_body_client/content/application_json/schema.py
src/petstore_api/components/request_bodies/request_body_client/content/application_json/schema.pyi
src/petstore_api/components/request_bodies/request_body_pet/__init__.py
src/petstore_api/components/request_bodies/request_body_pet/content/__init__.py
src/petstore_api/components/request_bodies/request_body_pet/content/application_json/__init__.py
src/petstore_api/components/request_bodies/request_body_pet/content/application_json/schema.py
src/petstore_api/components/request_bodies/request_body_pet/content/application_json/schema.pyi
src/petstore_api/components/request_bodies/request_body_pet/content/application_xml/__init__.py
src/petstore_api/components/request_bodies/request_body_pet/content/application_xml/schema.py
src/petstore_api/components/request_bodies/request_body_pet/content/application_xml/schema.pyi
src/petstore_api/components/request_bodies/request_body_ref_user_array/__init__.py
src/petstore_api/components/request_bodies/request_body_user_array/__init__.py
src/petstore_api/components/request_bodies/request_body_user_array/content/__init__.py
src/petstore_api/components/request_bodies/request_body_user_array/content/application_json/__init__.py
src/petstore_api/components/request_bodies/request_body_user_array/content/application_json/schema.py
src/petstore_api/components/request_bodies/request_body_user_array/content/application_json/schema.pyi
src/petstore_api/components/responses/__init__.py
src/petstore_api/components/responses/response_ref_success_description_only/__init__.py
src/petstore_api/components/responses/response_ref_successful_xml_and_json_array_of_pet/__init__.py
src/petstore_api/components/responses/response_success_description_only/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/content/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/content/application_json/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/content/application_json/schema.py
src/petstore_api/components/responses/response_success_inline_content_and_header/content/application_json/schema.pyi
src/petstore_api/components/responses/response_success_inline_content_and_header/headers/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/headers/header_some_header/__init__.py
src/petstore_api/components/responses/response_success_inline_content_and_header/headers/header_some_header/schema.py
src/petstore_api/components/responses/response_success_inline_content_and_header/headers/header_some_header/schema.pyi
src/petstore_api/components/responses/response_success_with_json_api_response/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/content/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/content/application_json/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/content/application_json/schema.py
src/petstore_api/components/responses/response_success_with_json_api_response/content/application_json/schema.pyi
src/petstore_api/components/responses/response_success_with_json_api_response/headers/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/headers/header_int32/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/headers/header_number_header/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/headers/header_ref_content_schema_header/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/headers/header_ref_schema_header/__init__.py
src/petstore_api/components/responses/response_success_with_json_api_response/headers/header_string_header/__init__.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/__init__.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/__init__.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_json/__init__.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_json/schema.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_json/schema.pyi
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_xml/__init__.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_xml/schema.py
src/petstore_api/components/responses/response_successful_xml_and_json_array_of_pet/content/application_xml/schema.pyi
src/petstore_api/components/schema/_200_response.py
src/petstore_api/components/schema/_200_response.pyi
src/petstore_api/components/schema/__init__.py
src/petstore_api/components/schema/_return.py
src/petstore_api/components/schema/_return.pyi
src/petstore_api/components/schema/abstract_step_message.py
src/petstore_api/components/schema/abstract_step_message.pyi
src/petstore_api/components/schema/additional_properties_class.py
src/petstore_api/components/schema/additional_properties_class.pyi
src/petstore_api/components/schema/additional_properties_validator.py
src/petstore_api/components/schema/additional_properties_validator.pyi
src/petstore_api/components/schema/additional_properties_with_array_of_enums.py
src/petstore_api/components/schema/additional_properties_with_array_of_enums.pyi
src/petstore_api/components/schema/address.py
src/petstore_api/components/schema/address.pyi
src/petstore_api/components/schema/animal.py
src/petstore_api/components/schema/animal.pyi
src/petstore_api/components/schema/animal_farm.py
src/petstore_api/components/schema/animal_farm.pyi
src/petstore_api/components/schema/any_type_and_format.py
src/petstore_api/components/schema/any_type_and_format.pyi
src/petstore_api/components/schema/any_type_not_string.py
src/petstore_api/components/schema/any_type_not_string.pyi
src/petstore_api/components/schema/api_response.py
src/petstore_api/components/schema/api_response.pyi
src/petstore_api/components/schema/apple.py
src/petstore_api/components/schema/apple.pyi
src/petstore_api/components/schema/apple_req.py
src/petstore_api/components/schema/apple_req.pyi
src/petstore_api/components/schema/array_holding_any_type.py
src/petstore_api/components/schema/array_holding_any_type.pyi
src/petstore_api/components/schema/array_of_array_of_number_only.py
src/petstore_api/components/schema/array_of_array_of_number_only.pyi
src/petstore_api/components/schema/array_of_enums.py
src/petstore_api/components/schema/array_of_enums.pyi
src/petstore_api/components/schema/array_of_number_only.py
src/petstore_api/components/schema/array_of_number_only.pyi
src/petstore_api/components/schema/array_test.py
src/petstore_api/components/schema/array_test.pyi
src/petstore_api/components/schema/array_with_validations_in_items.py
src/petstore_api/components/schema/array_with_validations_in_items.pyi
src/petstore_api/components/schema/banana.py
src/petstore_api/components/schema/banana.pyi
src/petstore_api/components/schema/banana_req.py
src/petstore_api/components/schema/banana_req.pyi
src/petstore_api/components/schema/bar.py
src/petstore_api/components/schema/bar.pyi
src/petstore_api/components/schema/basque_pig.py
src/petstore_api/components/schema/basque_pig.pyi
src/petstore_api/components/schema/boolean.py
src/petstore_api/components/schema/boolean.pyi
src/petstore_api/components/schema/boolean_enum.py
src/petstore_api/components/schema/boolean_enum.pyi
src/petstore_api/components/schema/capitalization.py
src/petstore_api/components/schema/capitalization.pyi
src/petstore_api/components/schema/cat.py
src/petstore_api/components/schema/cat.pyi
src/petstore_api/components/schema/category.py
src/petstore_api/components/schema/category.pyi
src/petstore_api/components/schema/child_cat.py
src/petstore_api/components/schema/child_cat.pyi
src/petstore_api/components/schema/class_model.py
src/petstore_api/components/schema/class_model.pyi
src/petstore_api/components/schema/client.py
src/petstore_api/components/schema/client.pyi
src/petstore_api/components/schema/complex_quadrilateral.py
src/petstore_api/components/schema/complex_quadrilateral.pyi
src/petstore_api/components/schema/composed_any_of_different_types_no_validations.py
src/petstore_api/components/schema/composed_any_of_different_types_no_validations.pyi
src/petstore_api/components/schema/composed_array.py
src/petstore_api/components/schema/composed_array.pyi
src/petstore_api/components/schema/composed_bool.py
src/petstore_api/components/schema/composed_bool.pyi
src/petstore_api/components/schema/composed_none.py
src/petstore_api/components/schema/composed_none.pyi
src/petstore_api/components/schema/composed_number.py
src/petstore_api/components/schema/composed_number.pyi
src/petstore_api/components/schema/composed_object.py
src/petstore_api/components/schema/composed_object.pyi
src/petstore_api/components/schema/composed_one_of_different_types.py
src/petstore_api/components/schema/composed_one_of_different_types.pyi
src/petstore_api/components/schema/composed_string.py
src/petstore_api/components/schema/composed_string.pyi
src/petstore_api/components/schema/currency.py
src/petstore_api/components/schema/currency.pyi
src/petstore_api/components/schema/danish_pig.py
src/petstore_api/components/schema/danish_pig.pyi
src/petstore_api/components/schema/date_time_test.py
src/petstore_api/components/schema/date_time_test.pyi
src/petstore_api/components/schema/date_time_with_validations.py
src/petstore_api/components/schema/date_time_with_validations.pyi
src/petstore_api/components/schema/date_with_validations.py
src/petstore_api/components/schema/date_with_validations.pyi
src/petstore_api/components/schema/decimal_payload.py
src/petstore_api/components/schema/decimal_payload.pyi
src/petstore_api/components/schema/dog.py
src/petstore_api/components/schema/dog.pyi
src/petstore_api/components/schema/drawing.py
src/petstore_api/components/schema/drawing.pyi
src/petstore_api/components/schema/enum_arrays.py
src/petstore_api/components/schema/enum_arrays.pyi
src/petstore_api/components/schema/enum_class.py
src/petstore_api/components/schema/enum_class.pyi
src/petstore_api/components/schema/enum_test.py
src/petstore_api/components/schema/enum_test.pyi
src/petstore_api/components/schema/equilateral_triangle.py
src/petstore_api/components/schema/equilateral_triangle.pyi
src/petstore_api/components/schema/file.py
src/petstore_api/components/schema/file.pyi
src/petstore_api/components/schema/file_schema_test_class.py
src/petstore_api/components/schema/file_schema_test_class.pyi
src/petstore_api/components/schema/foo.py
src/petstore_api/components/schema/foo.pyi
src/petstore_api/components/schema/format_test.py
src/petstore_api/components/schema/format_test.pyi
src/petstore_api/components/schema/from_schema.py
src/petstore_api/components/schema/from_schema.pyi
src/petstore_api/components/schema/fruit.py
src/petstore_api/components/schema/fruit.pyi
src/petstore_api/components/schema/fruit_req.py
src/petstore_api/components/schema/fruit_req.pyi
src/petstore_api/components/schema/gm_fruit.py
src/petstore_api/components/schema/gm_fruit.pyi
src/petstore_api/components/schema/grandparent_animal.py
src/petstore_api/components/schema/grandparent_animal.pyi
src/petstore_api/components/schema/has_only_read_only.py
src/petstore_api/components/schema/has_only_read_only.pyi
src/petstore_api/components/schema/health_check_result.py
src/petstore_api/components/schema/health_check_result.pyi
src/petstore_api/components/schema/integer_enum.py
src/petstore_api/components/schema/integer_enum.pyi
src/petstore_api/components/schema/integer_enum_big.py
src/petstore_api/components/schema/integer_enum_big.pyi
src/petstore_api/components/schema/integer_enum_one_value.py
src/petstore_api/components/schema/integer_enum_one_value.pyi
src/petstore_api/components/schema/integer_enum_with_default_value.py
src/petstore_api/components/schema/integer_enum_with_default_value.pyi
src/petstore_api/components/schema/integer_max10.py
src/petstore_api/components/schema/integer_max10.pyi
src/petstore_api/components/schema/integer_min15.py
src/petstore_api/components/schema/integer_min15.pyi
src/petstore_api/components/schema/isosceles_triangle.py
src/petstore_api/components/schema/isosceles_triangle.pyi
src/petstore_api/components/schema/items.py
src/petstore_api/components/schema/items.pyi
src/petstore_api/components/schema/json_patch_request.py
src/petstore_api/components/schema/json_patch_request.pyi
src/petstore_api/components/schema/json_patch_request_add_replace_test.py
src/petstore_api/components/schema/json_patch_request_add_replace_test.pyi
src/petstore_api/components/schema/json_patch_request_move_copy.py
src/petstore_api/components/schema/json_patch_request_move_copy.pyi
src/petstore_api/components/schema/json_patch_request_remove.py
src/petstore_api/components/schema/json_patch_request_remove.pyi
src/petstore_api/components/schema/mammal.py
src/petstore_api/components/schema/mammal.pyi
src/petstore_api/components/schema/map_test.py
src/petstore_api/components/schema/map_test.pyi
src/petstore_api/components/schema/mixed_properties_and_additional_properties_class.py
src/petstore_api/components/schema/mixed_properties_and_additional_properties_class.pyi
src/petstore_api/components/schema/money.py
src/petstore_api/components/schema/money.pyi
src/petstore_api/components/schema/name.py
src/petstore_api/components/schema/name.pyi
src/petstore_api/components/schema/no_additional_properties.py
src/petstore_api/components/schema/no_additional_properties.pyi
src/petstore_api/components/schema/nullable_class.py
src/petstore_api/components/schema/nullable_class.pyi
src/petstore_api/components/schema/nullable_shape.py
src/petstore_api/components/schema/nullable_shape.pyi
src/petstore_api/components/schema/nullable_string.py
src/petstore_api/components/schema/nullable_string.pyi
src/petstore_api/components/schema/number.py
src/petstore_api/components/schema/number.pyi
src/petstore_api/components/schema/number_only.py
src/petstore_api/components/schema/number_only.pyi
src/petstore_api/components/schema/number_with_validations.py
src/petstore_api/components/schema/number_with_validations.pyi
src/petstore_api/components/schema/object_interface.py
src/petstore_api/components/schema/object_interface.pyi
src/petstore_api/components/schema/object_model_with_arg_and_args_properties.py
src/petstore_api/components/schema/object_model_with_arg_and_args_properties.pyi
src/petstore_api/components/schema/object_model_with_ref_props.py
src/petstore_api/components/schema/object_model_with_ref_props.pyi
src/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.py
src/petstore_api/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.pyi
src/petstore_api/components/schema/object_with_colliding_properties.py
src/petstore_api/components/schema/object_with_colliding_properties.pyi
src/petstore_api/components/schema/object_with_decimal_properties.py
src/petstore_api/components/schema/object_with_decimal_properties.pyi
src/petstore_api/components/schema/object_with_difficultly_named_props.py
src/petstore_api/components/schema/object_with_difficultly_named_props.pyi
src/petstore_api/components/schema/object_with_inline_composition_property.py
src/petstore_api/components/schema/object_with_inline_composition_property.pyi
src/petstore_api/components/schema/object_with_invalid_named_refed_properties.py
src/petstore_api/components/schema/object_with_invalid_named_refed_properties.pyi
src/petstore_api/components/schema/object_with_optional_test_prop.py
src/petstore_api/components/schema/object_with_optional_test_prop.pyi
src/petstore_api/components/schema/object_with_validations.py
src/petstore_api/components/schema/object_with_validations.pyi
src/petstore_api/components/schema/order.py
src/petstore_api/components/schema/order.pyi
src/petstore_api/components/schema/parent_pet.py
src/petstore_api/components/schema/parent_pet.pyi
src/petstore_api/components/schema/pet.py
src/petstore_api/components/schema/pet.pyi
src/petstore_api/components/schema/pig.py
src/petstore_api/components/schema/pig.pyi
src/petstore_api/components/schema/player.py
src/petstore_api/components/schema/player.pyi
src/petstore_api/components/schema/quadrilateral.py
src/petstore_api/components/schema/quadrilateral.pyi
src/petstore_api/components/schema/quadrilateral_interface.py
src/petstore_api/components/schema/quadrilateral_interface.pyi
src/petstore_api/components/schema/read_only_first.py
src/petstore_api/components/schema/read_only_first.pyi
src/petstore_api/components/schema/ref_pet.py
src/petstore_api/components/schema/ref_pet.pyi
src/petstore_api/components/schema/req_props_from_explicit_add_props.py
src/petstore_api/components/schema/req_props_from_explicit_add_props.pyi
src/petstore_api/components/schema/req_props_from_true_add_props.py
src/petstore_api/components/schema/req_props_from_true_add_props.pyi
src/petstore_api/components/schema/req_props_from_unset_add_props.py
src/petstore_api/components/schema/req_props_from_unset_add_props.pyi
src/petstore_api/components/schema/scalene_triangle.py
src/petstore_api/components/schema/scalene_triangle.pyi
src/petstore_api/components/schema/self_referencing_array_model.py
src/petstore_api/components/schema/self_referencing_array_model.pyi
src/petstore_api/components/schema/self_referencing_object_model.py
src/petstore_api/components/schema/self_referencing_object_model.pyi
src/petstore_api/components/schema/shape.py
src/petstore_api/components/schema/shape.pyi
src/petstore_api/components/schema/shape_or_null.py
src/petstore_api/components/schema/shape_or_null.pyi
src/petstore_api/components/schema/simple_quadrilateral.py
src/petstore_api/components/schema/simple_quadrilateral.pyi
src/petstore_api/components/schema/some_object.py
src/petstore_api/components/schema/some_object.pyi
src/petstore_api/components/schema/special_model_name.py
src/petstore_api/components/schema/special_model_name.pyi
src/petstore_api/components/schema/string.py
src/petstore_api/components/schema/string.pyi
src/petstore_api/components/schema/string_boolean_map.py
src/petstore_api/components/schema/string_boolean_map.pyi
src/petstore_api/components/schema/string_enum.py
src/petstore_api/components/schema/string_enum.pyi
src/petstore_api/components/schema/string_enum_with_default_value.py
src/petstore_api/components/schema/string_enum_with_default_value.pyi
src/petstore_api/components/schema/string_with_validation.py
src/petstore_api/components/schema/string_with_validation.pyi
src/petstore_api/components/schema/tag.py
src/petstore_api/components/schema/tag.pyi
src/petstore_api/components/schema/triangle.py
src/petstore_api/components/schema/triangle.pyi
src/petstore_api/components/schema/triangle_interface.py
src/petstore_api/components/schema/triangle_interface.pyi
src/petstore_api/components/schema/user.py
src/petstore_api/components/schema/user.pyi
src/petstore_api/components/schema/uuid_string.py
src/petstore_api/components/schema/uuid_string.pyi
src/petstore_api/components/schema/whale.py
src/petstore_api/components/schema/whale.pyi
src/petstore_api/components/schema/zebra.py
src/petstore_api/components/schema/zebra.pyi
src/petstore_api/components/schemas/__init__.py
src/petstore_api/components/security_schemes/__init__.py
src/petstore_api/components/security_schemes/security_scheme_api_key.py
src/petstore_api/components/security_schemes/security_scheme_api_key_query.py
src/petstore_api/components/security_schemes/security_scheme_bearer_test.py
src/petstore_api/components/security_schemes/security_scheme_http_basic_test.py
src/petstore_api/components/security_schemes/security_scheme_http_signature_test.py
src/petstore_api/components/security_schemes/security_scheme_open_id_connect_test.py
src/petstore_api/components/security_schemes/security_scheme_petstore_auth.py
src/petstore_api/configurations/__init__.py
src/petstore_api/configurations/api_configuration.py
src/petstore_api/configurations/schema_configuration.py
src/petstore_api/exceptions.py
src/petstore_api/paths/__init__.py
src/petstore_api/paths/another_fake_dummy/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/operation.py
src/petstore_api/paths/another_fake_dummy/patch/operation.pyi
src/petstore_api/paths/another_fake_dummy/patch/request_body/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/responses/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/responses/response_200/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/responses/response_200/content/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/another_fake_dummy/patch/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/another_fake_dummy/patch/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake/__init__.py
src/petstore_api/paths/fake/delete/__init__.py
src/petstore_api/paths/fake/delete/operation.py
src/petstore_api/paths/fake/delete/operation.pyi
src/petstore_api/paths/fake/delete/parameters/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_0/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake/delete/parameters/parameter_1/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_1/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_1/schema.pyi
src/petstore_api/paths/fake/delete/parameters/parameter_2/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_2/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_2/schema.pyi
src/petstore_api/paths/fake/delete/parameters/parameter_3/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_3/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_3/schema.pyi
src/petstore_api/paths/fake/delete/parameters/parameter_4/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_4/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_4/schema.pyi
src/petstore_api/paths/fake/delete/parameters/parameter_5/__init__.py
src/petstore_api/paths/fake/delete/parameters/parameter_5/schema.py
src/petstore_api/paths/fake/delete/parameters/parameter_5/schema.pyi
src/petstore_api/paths/fake/delete/responses/__init__.py
src/petstore_api/paths/fake/delete/responses/response_200/__init__.py
src/petstore_api/paths/fake/delete/security/__init__.py
src/petstore_api/paths/fake/delete/security/security_requirement_object_0.py
src/petstore_api/paths/fake/get/__init__.py
src/petstore_api/paths/fake/get/operation.py
src/petstore_api/paths/fake/get/operation.pyi
src/petstore_api/paths/fake/get/parameters/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_0/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake/get/parameters/parameter_1/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_1/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_1/schema.pyi
src/petstore_api/paths/fake/get/parameters/parameter_2/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_2/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_2/schema.pyi
src/petstore_api/paths/fake/get/parameters/parameter_3/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_3/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_3/schema.pyi
src/petstore_api/paths/fake/get/parameters/parameter_4/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_4/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_4/schema.pyi
src/petstore_api/paths/fake/get/parameters/parameter_5/__init__.py
src/petstore_api/paths/fake/get/parameters/parameter_5/schema.py
src/petstore_api/paths/fake/get/parameters/parameter_5/schema.pyi
src/petstore_api/paths/fake/get/request_body/__init__.py
src/petstore_api/paths/fake/get/request_body/content/__init__.py
src/petstore_api/paths/fake/get/request_body/content/application_x_www_form_urlencoded/__init__.py
src/petstore_api/paths/fake/get/request_body/content/application_x_www_form_urlencoded/schema.py
src/petstore_api/paths/fake/get/request_body/content/application_x_www_form_urlencoded/schema.pyi
src/petstore_api/paths/fake/get/responses/__init__.py
src/petstore_api/paths/fake/get/responses/response_200/__init__.py
src/petstore_api/paths/fake/get/responses/response_404/__init__.py
src/petstore_api/paths/fake/get/responses/response_404/content/__init__.py
src/petstore_api/paths/fake/get/responses/response_404/content/application_json/__init__.py
src/petstore_api/paths/fake/get/responses/response_404/content/application_json/schema.py
src/petstore_api/paths/fake/get/responses/response_404/content/application_json/schema.pyi
src/petstore_api/paths/fake/patch/__init__.py
src/petstore_api/paths/fake/patch/operation.py
src/petstore_api/paths/fake/patch/operation.pyi
src/petstore_api/paths/fake/patch/request_body/__init__.py
src/petstore_api/paths/fake/patch/responses/__init__.py
src/petstore_api/paths/fake/patch/responses/response_200/__init__.py
src/petstore_api/paths/fake/patch/responses/response_200/content/__init__.py
src/petstore_api/paths/fake/patch/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake/patch/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake/patch/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake/post/__init__.py
src/petstore_api/paths/fake/post/operation.py
src/petstore_api/paths/fake/post/operation.pyi
src/petstore_api/paths/fake/post/request_body/__init__.py
src/petstore_api/paths/fake/post/request_body/content/__init__.py
src/petstore_api/paths/fake/post/request_body/content/application_x_www_form_urlencoded/__init__.py
src/petstore_api/paths/fake/post/request_body/content/application_x_www_form_urlencoded/schema.py
src/petstore_api/paths/fake/post/request_body/content/application_x_www_form_urlencoded/schema.pyi
src/petstore_api/paths/fake/post/responses/__init__.py
src/petstore_api/paths/fake/post/responses/response_200/__init__.py
src/petstore_api/paths/fake/post/responses/response_404/__init__.py
src/petstore_api/paths/fake/post/security/__init__.py
src/petstore_api/paths/fake/post/security/security_requirement_object_0.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/operation.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/operation.pyi
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/request_body/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/request_body/content/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/request_body/content/application_json/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/request_body/content/application_json/schema.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/request_body/content/application_json/schema.pyi
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_additional_properties_with_array_of_enums/get/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_body_with_file_schema/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/operation.py
src/petstore_api/paths/fake_body_with_file_schema/put/operation.pyi
src/petstore_api/paths/fake_body_with_file_schema/put/request_body/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/request_body/content/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/request_body/content/application_json/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/request_body/content/application_json/schema.py
src/petstore_api/paths/fake_body_with_file_schema/put/request_body/content/application_json/schema.pyi
src/petstore_api/paths/fake_body_with_file_schema/put/responses/__init__.py
src/petstore_api/paths/fake_body_with_file_schema/put/responses/response_200/__init__.py
src/petstore_api/paths/fake_body_with_query_params/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/operation.py
src/petstore_api/paths/fake_body_with_query_params/put/operation.pyi
src/petstore_api/paths/fake_body_with_query_params/put/parameters/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_body_with_query_params/put/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_body_with_query_params/put/request_body/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/request_body/content/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/request_body/content/application_json/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/request_body/content/application_json/schema.py
src/petstore_api/paths/fake_body_with_query_params/put/request_body/content/application_json/schema.pyi
src/petstore_api/paths/fake_body_with_query_params/put/responses/__init__.py
src/petstore_api/paths/fake_body_with_query_params/put/responses/response_200/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/operation.py
src/petstore_api/paths/fake_case_sensitive_params/put/operation.pyi
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_1/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_1/schema.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_1/schema.pyi
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_2/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_2/schema.py
src/petstore_api/paths/fake_case_sensitive_params/put/parameters/parameter_2/schema.pyi
src/petstore_api/paths/fake_case_sensitive_params/put/responses/__init__.py
src/petstore_api/paths/fake_case_sensitive_params/put/responses/response_200/__init__.py
src/petstore_api/paths/fake_classname_test/__init__.py
src/petstore_api/paths/fake_classname_test/patch/__init__.py
src/petstore_api/paths/fake_classname_test/patch/operation.py
src/petstore_api/paths/fake_classname_test/patch/operation.pyi
src/petstore_api/paths/fake_classname_test/patch/request_body/__init__.py
src/petstore_api/paths/fake_classname_test/patch/responses/__init__.py
src/petstore_api/paths/fake_classname_test/patch/responses/response_200/__init__.py
src/petstore_api/paths/fake_classname_test/patch/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_classname_test/patch/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_classname_test/patch/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_classname_test/patch/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_classname_test/patch/security/__init__.py
src/petstore_api/paths/fake_classname_test/patch/security/security_requirement_object_0.py
src/petstore_api/paths/fake_delete_coffee_id/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/operation.py
src/petstore_api/paths/fake_delete_coffee_id/delete/operation.pyi
src/petstore_api/paths/fake_delete_coffee_id/delete/parameters/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_delete_coffee_id/delete/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_delete_coffee_id/delete/responses/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/responses/response_200/__init__.py
src/petstore_api/paths/fake_delete_coffee_id/delete/responses/response_default/__init__.py
src/petstore_api/paths/fake_health/__init__.py
src/petstore_api/paths/fake_health/get/__init__.py
src/petstore_api/paths/fake_health/get/operation.py
src/petstore_api/paths/fake_health/get/operation.pyi
src/petstore_api/paths/fake_health/get/responses/__init__.py
src/petstore_api/paths/fake_health/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_health/get/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_health/get/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_health/get/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_health/get/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_inline_additional_properties/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/operation.py
src/petstore_api/paths/fake_inline_additional_properties/post/operation.pyi
src/petstore_api/paths/fake_inline_additional_properties/post/request_body/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/request_body/content/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/request_body/content/application_json/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/request_body/content/application_json/schema.py
src/petstore_api/paths/fake_inline_additional_properties/post/request_body/content/application_json/schema.pyi
src/petstore_api/paths/fake_inline_additional_properties/post/responses/__init__.py
src/petstore_api/paths/fake_inline_additional_properties/post/responses/response_200/__init__.py
src/petstore_api/paths/fake_inline_composition/__init__.py
src/petstore_api/paths/fake_inline_composition/post/__init__.py
src/petstore_api/paths/fake_inline_composition/post/operation.py
src/petstore_api/paths/fake_inline_composition/post/operation.pyi
src/petstore_api/paths/fake_inline_composition/post/parameters/__init__.py
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_1/__init__.py
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_1/schema.py
src/petstore_api/paths/fake_inline_composition/post/parameters/parameter_1/schema.pyi
src/petstore_api/paths/fake_inline_composition/post/request_body/__init__.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/__init__.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/application_json/__init__.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/application_json/schema.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/application_json/schema.pyi
src/petstore_api/paths/fake_inline_composition/post/request_body/content/multipart_form_data/__init__.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/multipart_form_data/schema.py
src/petstore_api/paths/fake_inline_composition/post/request_body/content/multipart_form_data/schema.pyi
src/petstore_api/paths/fake_inline_composition/post/responses/__init__.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/__init__.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/multipart_form_data/__init__.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/multipart_form_data/schema.py
src/petstore_api/paths/fake_inline_composition/post/responses/response_200/content/multipart_form_data/schema.pyi
src/petstore_api/paths/fake_json_form_data/__init__.py
src/petstore_api/paths/fake_json_form_data/get/__init__.py
src/petstore_api/paths/fake_json_form_data/get/operation.py
src/petstore_api/paths/fake_json_form_data/get/operation.pyi
src/petstore_api/paths/fake_json_form_data/get/request_body/__init__.py
src/petstore_api/paths/fake_json_form_data/get/request_body/content/__init__.py
src/petstore_api/paths/fake_json_form_data/get/request_body/content/application_x_www_form_urlencoded/__init__.py
src/petstore_api/paths/fake_json_form_data/get/request_body/content/application_x_www_form_urlencoded/schema.py
src/petstore_api/paths/fake_json_form_data/get/request_body/content/application_x_www_form_urlencoded/schema.pyi
src/petstore_api/paths/fake_json_form_data/get/responses/__init__.py
src/petstore_api/paths/fake_json_form_data/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_json_patch/__init__.py
src/petstore_api/paths/fake_json_patch/patch/__init__.py
src/petstore_api/paths/fake_json_patch/patch/operation.py
src/petstore_api/paths/fake_json_patch/patch/operation.pyi
src/petstore_api/paths/fake_json_patch/patch/request_body/__init__.py
src/petstore_api/paths/fake_json_patch/patch/request_body/content/__init__.py
src/petstore_api/paths/fake_json_patch/patch/request_body/content/application_json_patchjson/__init__.py
src/petstore_api/paths/fake_json_patch/patch/request_body/content/application_json_patchjson/schema.py
src/petstore_api/paths/fake_json_patch/patch/request_body/content/application_json_patchjson/schema.pyi
src/petstore_api/paths/fake_json_patch/patch/responses/__init__.py
src/petstore_api/paths/fake_json_patch/patch/responses/response_200/__init__.py
src/petstore_api/paths/fake_json_with_charset/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/operation.py
src/petstore_api/paths/fake_json_with_charset/post/operation.pyi
src/petstore_api/paths/fake_json_with_charset/post/request_body/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/request_body/content/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/request_body/content/application_json_charsetutf8/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/request_body/content/application_json_charsetutf8/schema.py
src/petstore_api/paths/fake_json_with_charset/post/request_body/content/application_json_charsetutf8/schema.pyi
src/petstore_api/paths/fake_json_with_charset/post/responses/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/responses/response_200/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/responses/response_200/content/application_json_charsetutf8/__init__.py
src/petstore_api/paths/fake_json_with_charset/post/responses/response_200/content/application_json_charsetutf8/schema.py
src/petstore_api/paths/fake_json_with_charset/post/responses/response_200/content/application_json_charsetutf8/schema.pyi
src/petstore_api/paths/fake_multiple_response_bodies/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/operation.py
src/petstore_api/paths/fake_multiple_response_bodies/get/operation.pyi
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_202/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_202/content/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_202/content/application_json/__init__.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_202/content/application_json/schema.py
src/petstore_api/paths/fake_multiple_response_bodies/get/responses/response_202/content/application_json/schema.pyi
src/petstore_api/paths/fake_multiple_securities/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/operation.py
src/petstore_api/paths/fake_multiple_securities/get/operation.pyi
src/petstore_api/paths/fake_multiple_securities/get/responses/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/responses/response_200/content/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/responses/response_200/content/application_json/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/responses/response_200/content/application_json/schema.py
src/petstore_api/paths/fake_multiple_securities/get/responses/response_200/content/application_json/schema.pyi
src/petstore_api/paths/fake_multiple_securities/get/security/__init__.py
src/petstore_api/paths/fake_multiple_securities/get/security/security_requirement_object_0.py
src/petstore_api/paths/fake_multiple_securities/get/security/security_requirement_object_1.py
src/petstore_api/paths/fake_multiple_securities/get/security/security_requirement_object_2.py
src/petstore_api/paths/fake_obj_in_query/__init__.py
src/petstore_api/paths/fake_obj_in_query/get/__init__.py
src/petstore_api/paths/fake_obj_in_query/get/operation.py
src/petstore_api/paths/fake_obj_in_query/get/operation.pyi
src/petstore_api/paths/fake_obj_in_query/get/parameters/__init__.py
src/petstore_api/paths/fake_obj_in_query/get/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_obj_in_query/get/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_obj_in_query/get/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_obj_in_query/get/responses/__init__.py
src/petstore_api/paths/fake_obj_in_query/get/responses/response_200/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/operation.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/operation.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_0/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_0/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_0/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_1/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_1/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_1/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_10/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_10/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_10/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_11/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_11/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_11/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_12/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_12/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_12/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_13/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_13/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_13/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_14/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_14/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_14/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_15/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_15/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_15/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_16/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_16/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_16/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_17/__init__.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_17/schema.py
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_17/schema.pyi
src/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/parameters/parameter_18/__init__.py