zudoku 0.0.2-dev.0 → 0.1.1-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1489 +0,0 @@
1
- {
2
- "id": "https://spec.openapis.org/oas/3.0/schema/2021-09-28",
3
- "$schema": "http://json-schema.org/draft-04/schema#",
4
- "description": "The description of OpenAPI v3.0.x documents, as defined by https://spec.openapis.org/oas/v3.0.3",
5
- "type": "object",
6
- "required": ["openapi", "info", "paths"],
7
- "properties": {
8
- "openapi": {
9
- "type": "string",
10
- "pattern": "^3\\.0\\.\\d(-.+)?$"
11
- },
12
- "info": {
13
- "$ref": "#/definitions/Info"
14
- },
15
- "externalDocs": {
16
- "$ref": "#/definitions/ExternalDocumentation"
17
- },
18
- "servers": {
19
- "type": "array",
20
- "items": {
21
- "$ref": "#/definitions/Server"
22
- }
23
- },
24
- "security": {
25
- "type": "array",
26
- "items": {
27
- "$ref": "#/definitions/SecurityRequirement"
28
- }
29
- },
30
- "tags": {
31
- "type": "array",
32
- "items": {
33
- "$ref": "#/definitions/Tag"
34
- },
35
- "uniqueItems": true
36
- },
37
- "paths": {
38
- "$ref": "#/definitions/Paths"
39
- },
40
- "components": {
41
- "$ref": "#/definitions/Components"
42
- }
43
- },
44
- "patternProperties": {
45
- "^x-": {}
46
- },
47
- "additionalProperties": false,
48
- "definitions": {
49
- "Reference": {
50
- "type": "object",
51
- "required": ["$ref"],
52
- "patternProperties": {
53
- "^\\$ref$": {
54
- "type": "string",
55
- "format": "uri-reference"
56
- }
57
- }
58
- },
59
- "Info": {
60
- "type": "object",
61
- "required": ["title", "version"],
62
- "properties": {
63
- "title": {
64
- "type": "string"
65
- },
66
- "description": {
67
- "type": "string"
68
- },
69
- "termsOfService": {
70
- "type": "string",
71
- "format": "uri-reference"
72
- },
73
- "contact": {
74
- "$ref": "#/definitions/Contact"
75
- },
76
- "license": {
77
- "$ref": "#/definitions/License"
78
- },
79
- "version": {
80
- "type": "string"
81
- }
82
- },
83
- "patternProperties": {
84
- "^x-": {}
85
- },
86
- "additionalProperties": false
87
- },
88
- "Contact": {
89
- "type": "object",
90
- "properties": {
91
- "name": {
92
- "type": "string"
93
- },
94
- "url": {
95
- "type": "string",
96
- "format": "uri-reference"
97
- },
98
- "email": {
99
- "type": "string",
100
- "format": "email"
101
- }
102
- },
103
- "patternProperties": {
104
- "^x-": {}
105
- },
106
- "additionalProperties": false
107
- },
108
- "License": {
109
- "type": "object",
110
- "required": ["name"],
111
- "properties": {
112
- "name": {
113
- "type": "string"
114
- },
115
- "url": {
116
- "type": "string",
117
- "format": "uri-reference"
118
- }
119
- },
120
- "patternProperties": {
121
- "^x-": {}
122
- },
123
- "additionalProperties": false
124
- },
125
- "Server": {
126
- "type": "object",
127
- "required": ["url"],
128
- "properties": {
129
- "url": {
130
- "type": "string"
131
- },
132
- "description": {
133
- "type": "string"
134
- },
135
- "variables": {
136
- "type": "object",
137
- "additionalProperties": {
138
- "$ref": "#/definitions/ServerVariable"
139
- }
140
- }
141
- },
142
- "patternProperties": {
143
- "^x-": {}
144
- },
145
- "additionalProperties": false
146
- },
147
- "ServerVariable": {
148
- "type": "object",
149
- "required": ["default"],
150
- "properties": {
151
- "enum": {
152
- "type": "array",
153
- "items": {
154
- "type": "string"
155
- }
156
- },
157
- "default": {
158
- "type": "string"
159
- },
160
- "description": {
161
- "type": "string"
162
- }
163
- },
164
- "patternProperties": {
165
- "^x-": {}
166
- },
167
- "additionalProperties": false
168
- },
169
- "Components": {
170
- "type": "object",
171
- "properties": {
172
- "schemas": {
173
- "type": "object",
174
- "patternProperties": {
175
- "^[a-zA-Z0-9\\.\\-_]+$": {
176
- "oneOf": [
177
- {
178
- "$ref": "#/definitions/Schema"
179
- },
180
- {
181
- "$ref": "#/definitions/Reference"
182
- }
183
- ]
184
- }
185
- }
186
- },
187
- "responses": {
188
- "type": "object",
189
- "patternProperties": {
190
- "^[a-zA-Z0-9\\.\\-_]+$": {
191
- "oneOf": [
192
- {
193
- "$ref": "#/definitions/Reference"
194
- },
195
- {
196
- "$ref": "#/definitions/Response"
197
- }
198
- ]
199
- }
200
- }
201
- },
202
- "parameters": {
203
- "type": "object",
204
- "patternProperties": {
205
- "^[a-zA-Z0-9\\.\\-_]+$": {
206
- "oneOf": [
207
- {
208
- "$ref": "#/definitions/Reference"
209
- },
210
- {
211
- "$ref": "#/definitions/Parameter"
212
- }
213
- ]
214
- }
215
- }
216
- },
217
- "examples": {
218
- "type": "object",
219
- "patternProperties": {
220
- "^[a-zA-Z0-9\\.\\-_]+$": {
221
- "oneOf": [
222
- {
223
- "$ref": "#/definitions/Reference"
224
- },
225
- {
226
- "$ref": "#/definitions/Example"
227
- }
228
- ]
229
- }
230
- }
231
- },
232
- "requestBodies": {
233
- "type": "object",
234
- "patternProperties": {
235
- "^[a-zA-Z0-9\\.\\-_]+$": {
236
- "oneOf": [
237
- {
238
- "$ref": "#/definitions/Reference"
239
- },
240
- {
241
- "$ref": "#/definitions/RequestBody"
242
- }
243
- ]
244
- }
245
- }
246
- },
247
- "headers": {
248
- "type": "object",
249
- "patternProperties": {
250
- "^[a-zA-Z0-9\\.\\-_]+$": {
251
- "oneOf": [
252
- {
253
- "$ref": "#/definitions/Reference"
254
- },
255
- {
256
- "$ref": "#/definitions/Header"
257
- }
258
- ]
259
- }
260
- }
261
- },
262
- "securitySchemes": {
263
- "type": "object",
264
- "patternProperties": {
265
- "^[a-zA-Z0-9\\.\\-_]+$": {
266
- "oneOf": [
267
- {
268
- "$ref": "#/definitions/Reference"
269
- },
270
- {
271
- "$ref": "#/definitions/SecurityScheme"
272
- }
273
- ]
274
- }
275
- }
276
- },
277
- "links": {
278
- "type": "object",
279
- "patternProperties": {
280
- "^[a-zA-Z0-9\\.\\-_]+$": {
281
- "oneOf": [
282
- {
283
- "$ref": "#/definitions/Reference"
284
- },
285
- {
286
- "$ref": "#/definitions/Link"
287
- }
288
- ]
289
- }
290
- }
291
- },
292
- "callbacks": {
293
- "type": "object",
294
- "patternProperties": {
295
- "^[a-zA-Z0-9\\.\\-_]+$": {
296
- "oneOf": [
297
- {
298
- "$ref": "#/definitions/Reference"
299
- },
300
- {
301
- "$ref": "#/definitions/Callback"
302
- }
303
- ]
304
- }
305
- }
306
- }
307
- },
308
- "patternProperties": {
309
- "^x-": {}
310
- },
311
- "additionalProperties": false
312
- },
313
- "Schema": {
314
- "type": "object",
315
- "properties": {
316
- "title": {
317
- "type": "string"
318
- },
319
- "multipleOf": {
320
- "type": "number",
321
- "minimum": 0,
322
- "exclusiveMinimum": true
323
- },
324
- "maximum": {
325
- "type": "number"
326
- },
327
- "exclusiveMaximum": {
328
- "type": "boolean",
329
- "default": false
330
- },
331
- "minimum": {
332
- "type": "number"
333
- },
334
- "exclusiveMinimum": {
335
- "type": "boolean",
336
- "default": false
337
- },
338
- "maxLength": {
339
- "type": "integer",
340
- "minimum": 0
341
- },
342
- "minLength": {
343
- "type": "integer",
344
- "minimum": 0,
345
- "default": 0
346
- },
347
- "pattern": {
348
- "type": "string",
349
- "format": "regex"
350
- },
351
- "maxItems": {
352
- "type": "integer",
353
- "minimum": 0
354
- },
355
- "minItems": {
356
- "type": "integer",
357
- "minimum": 0,
358
- "default": 0
359
- },
360
- "uniqueItems": {
361
- "type": "boolean",
362
- "default": false
363
- },
364
- "maxProperties": {
365
- "type": "integer",
366
- "minimum": 0
367
- },
368
- "minProperties": {
369
- "type": "integer",
370
- "minimum": 0,
371
- "default": 0
372
- },
373
- "required": {
374
- "type": "array",
375
- "items": {
376
- "type": "string"
377
- },
378
- "minItems": 1,
379
- "uniqueItems": true
380
- },
381
- "enum": {
382
- "type": "array",
383
- "items": {},
384
- "minItems": 1,
385
- "uniqueItems": false
386
- },
387
- "type": {
388
- "type": "string",
389
- "enum": ["array", "boolean", "integer", "number", "object", "string"]
390
- },
391
- "not": {
392
- "oneOf": [
393
- {
394
- "$ref": "#/definitions/Schema"
395
- },
396
- {
397
- "$ref": "#/definitions/Reference"
398
- }
399
- ]
400
- },
401
- "allOf": {
402
- "type": "array",
403
- "items": {
404
- "oneOf": [
405
- {
406
- "$ref": "#/definitions/Schema"
407
- },
408
- {
409
- "$ref": "#/definitions/Reference"
410
- }
411
- ]
412
- }
413
- },
414
- "oneOf": {
415
- "type": "array",
416
- "items": {
417
- "oneOf": [
418
- {
419
- "$ref": "#/definitions/Schema"
420
- },
421
- {
422
- "$ref": "#/definitions/Reference"
423
- }
424
- ]
425
- }
426
- },
427
- "anyOf": {
428
- "type": "array",
429
- "items": {
430
- "oneOf": [
431
- {
432
- "$ref": "#/definitions/Schema"
433
- },
434
- {
435
- "$ref": "#/definitions/Reference"
436
- }
437
- ]
438
- }
439
- },
440
- "items": {
441
- "oneOf": [
442
- {
443
- "$ref": "#/definitions/Schema"
444
- },
445
- {
446
- "$ref": "#/definitions/Reference"
447
- }
448
- ]
449
- },
450
- "properties": {
451
- "type": "object",
452
- "additionalProperties": {
453
- "oneOf": [
454
- {
455
- "$ref": "#/definitions/Schema"
456
- },
457
- {
458
- "$ref": "#/definitions/Reference"
459
- }
460
- ]
461
- }
462
- },
463
- "additionalProperties": {
464
- "oneOf": [
465
- {
466
- "$ref": "#/definitions/Schema"
467
- },
468
- {
469
- "$ref": "#/definitions/Reference"
470
- },
471
- {
472
- "type": "boolean"
473
- }
474
- ],
475
- "default": true
476
- },
477
- "description": {
478
- "type": "string"
479
- },
480
- "format": {
481
- "type": "string"
482
- },
483
- "default": {},
484
- "nullable": {
485
- "type": "boolean",
486
- "default": false
487
- },
488
- "discriminator": {
489
- "$ref": "#/definitions/Discriminator"
490
- },
491
- "readOnly": {
492
- "type": "boolean",
493
- "default": false
494
- },
495
- "writeOnly": {
496
- "type": "boolean",
497
- "default": false
498
- },
499
- "example": {},
500
- "externalDocs": {
501
- "$ref": "#/definitions/ExternalDocumentation"
502
- },
503
- "deprecated": {
504
- "type": "boolean",
505
- "default": false
506
- },
507
- "xml": {
508
- "$ref": "#/definitions/XML"
509
- }
510
- },
511
- "patternProperties": {
512
- "^x-": {}
513
- },
514
- "additionalProperties": false
515
- },
516
- "Discriminator": {
517
- "type": "object",
518
- "required": ["propertyName"],
519
- "properties": {
520
- "propertyName": {
521
- "type": "string"
522
- },
523
- "mapping": {
524
- "type": "object",
525
- "additionalProperties": {
526
- "type": "string"
527
- }
528
- }
529
- }
530
- },
531
- "XML": {
532
- "type": "object",
533
- "properties": {
534
- "name": {
535
- "type": "string"
536
- },
537
- "namespace": {
538
- "type": "string",
539
- "format": "uri"
540
- },
541
- "prefix": {
542
- "type": "string"
543
- },
544
- "attribute": {
545
- "type": "boolean",
546
- "default": false
547
- },
548
- "wrapped": {
549
- "type": "boolean",
550
- "default": false
551
- }
552
- },
553
- "patternProperties": {
554
- "^x-": {}
555
- },
556
- "additionalProperties": false
557
- },
558
- "Response": {
559
- "type": "object",
560
- "required": ["description"],
561
- "properties": {
562
- "description": {
563
- "type": "string"
564
- },
565
- "headers": {
566
- "type": "object",
567
- "additionalProperties": {
568
- "oneOf": [
569
- {
570
- "$ref": "#/definitions/Header"
571
- },
572
- {
573
- "$ref": "#/definitions/Reference"
574
- }
575
- ]
576
- }
577
- },
578
- "content": {
579
- "type": "object",
580
- "additionalProperties": {
581
- "$ref": "#/definitions/MediaType"
582
- }
583
- },
584
- "links": {
585
- "type": "object",
586
- "additionalProperties": {
587
- "oneOf": [
588
- {
589
- "$ref": "#/definitions/Link"
590
- },
591
- {
592
- "$ref": "#/definitions/Reference"
593
- }
594
- ]
595
- }
596
- }
597
- },
598
- "patternProperties": {
599
- "^x-": {}
600
- },
601
- "additionalProperties": false
602
- },
603
- "MediaType": {
604
- "type": "object",
605
- "properties": {
606
- "schema": {
607
- "oneOf": [
608
- {
609
- "$ref": "#/definitions/Schema"
610
- },
611
- {
612
- "$ref": "#/definitions/Reference"
613
- }
614
- ]
615
- },
616
- "example": {},
617
- "examples": {
618
- "type": "object",
619
- "additionalProperties": {
620
- "oneOf": [
621
- {
622
- "$ref": "#/definitions/Example"
623
- },
624
- {
625
- "$ref": "#/definitions/Reference"
626
- }
627
- ]
628
- }
629
- },
630
- "encoding": {
631
- "type": "object",
632
- "additionalProperties": {
633
- "$ref": "#/definitions/Encoding"
634
- }
635
- }
636
- },
637
- "patternProperties": {
638
- "^x-": {}
639
- },
640
- "additionalProperties": false,
641
- "allOf": [
642
- {
643
- "$ref": "#/definitions/ExampleXORExamples"
644
- }
645
- ]
646
- },
647
- "Example": {
648
- "type": "object",
649
- "properties": {
650
- "summary": {
651
- "type": "string"
652
- },
653
- "description": {
654
- "type": "string"
655
- },
656
- "value": {},
657
- "externalValue": {
658
- "type": "string",
659
- "format": "uri-reference"
660
- }
661
- },
662
- "patternProperties": {
663
- "^x-": {}
664
- },
665
- "additionalProperties": false
666
- },
667
- "Header": {
668
- "type": "object",
669
- "properties": {
670
- "description": {
671
- "type": "string"
672
- },
673
- "required": {
674
- "type": "boolean",
675
- "default": false
676
- },
677
- "deprecated": {
678
- "type": "boolean",
679
- "default": false
680
- },
681
- "allowEmptyValue": {
682
- "type": "boolean",
683
- "default": false
684
- },
685
- "style": {
686
- "type": "string",
687
- "enum": ["simple"],
688
- "default": "simple"
689
- },
690
- "explode": {
691
- "type": "boolean"
692
- },
693
- "allowReserved": {
694
- "type": "boolean",
695
- "default": false
696
- },
697
- "schema": {
698
- "oneOf": [
699
- {
700
- "$ref": "#/definitions/Schema"
701
- },
702
- {
703
- "$ref": "#/definitions/Reference"
704
- }
705
- ]
706
- },
707
- "content": {
708
- "type": "object",
709
- "additionalProperties": {
710
- "$ref": "#/definitions/MediaType"
711
- },
712
- "minProperties": 1,
713
- "maxProperties": 1
714
- },
715
- "example": {},
716
- "examples": {
717
- "type": "object",
718
- "additionalProperties": {
719
- "oneOf": [
720
- {
721
- "$ref": "#/definitions/Example"
722
- },
723
- {
724
- "$ref": "#/definitions/Reference"
725
- }
726
- ]
727
- }
728
- }
729
- },
730
- "patternProperties": {
731
- "^x-": {}
732
- },
733
- "additionalProperties": false,
734
- "allOf": [
735
- {
736
- "$ref": "#/definitions/ExampleXORExamples"
737
- },
738
- {
739
- "$ref": "#/definitions/SchemaXORContent"
740
- }
741
- ]
742
- },
743
- "Paths": {
744
- "type": "object",
745
- "patternProperties": {
746
- "^\\/": {
747
- "$ref": "#/definitions/PathItem"
748
- },
749
- "^x-": {}
750
- },
751
- "additionalProperties": false
752
- },
753
- "PathItem": {
754
- "type": "object",
755
- "properties": {
756
- "$ref": {
757
- "type": "string"
758
- },
759
- "summary": {
760
- "type": "string"
761
- },
762
- "description": {
763
- "type": "string"
764
- },
765
- "servers": {
766
- "type": "array",
767
- "items": {
768
- "$ref": "#/definitions/Server"
769
- }
770
- },
771
- "parameters": {
772
- "type": "array",
773
- "items": {
774
- "oneOf": [
775
- {
776
- "$ref": "#/definitions/Parameter"
777
- },
778
- {
779
- "$ref": "#/definitions/Reference"
780
- }
781
- ]
782
- },
783
- "uniqueItems": true
784
- }
785
- },
786
- "patternProperties": {
787
- "^(get|put|post|delete|options|head|patch|trace)$": {
788
- "$ref": "#/definitions/Operation"
789
- },
790
- "^x-": {}
791
- },
792
- "additionalProperties": false
793
- },
794
- "Operation": {
795
- "type": "object",
796
- "required": ["responses"],
797
- "properties": {
798
- "tags": {
799
- "type": "array",
800
- "items": {
801
- "type": "string"
802
- }
803
- },
804
- "summary": {
805
- "type": "string"
806
- },
807
- "description": {
808
- "type": "string"
809
- },
810
- "externalDocs": {
811
- "$ref": "#/definitions/ExternalDocumentation"
812
- },
813
- "operationId": {
814
- "type": "string"
815
- },
816
- "parameters": {
817
- "type": "array",
818
- "items": {
819
- "oneOf": [
820
- {
821
- "$ref": "#/definitions/Parameter"
822
- },
823
- {
824
- "$ref": "#/definitions/Reference"
825
- }
826
- ]
827
- },
828
- "uniqueItems": true
829
- },
830
- "requestBody": {
831
- "oneOf": [
832
- {
833
- "$ref": "#/definitions/RequestBody"
834
- },
835
- {
836
- "$ref": "#/definitions/Reference"
837
- }
838
- ]
839
- },
840
- "responses": {
841
- "$ref": "#/definitions/Responses"
842
- },
843
- "callbacks": {
844
- "type": "object",
845
- "additionalProperties": {
846
- "oneOf": [
847
- {
848
- "$ref": "#/definitions/Callback"
849
- },
850
- {
851
- "$ref": "#/definitions/Reference"
852
- }
853
- ]
854
- }
855
- },
856
- "deprecated": {
857
- "type": "boolean",
858
- "default": false
859
- },
860
- "security": {
861
- "type": "array",
862
- "items": {
863
- "$ref": "#/definitions/SecurityRequirement"
864
- }
865
- },
866
- "servers": {
867
- "type": "array",
868
- "items": {
869
- "$ref": "#/definitions/Server"
870
- }
871
- }
872
- },
873
- "patternProperties": {
874
- "^x-": {}
875
- },
876
- "additionalProperties": false
877
- },
878
- "Responses": {
879
- "type": "object",
880
- "properties": {
881
- "default": {
882
- "oneOf": [
883
- {
884
- "$ref": "#/definitions/Response"
885
- },
886
- {
887
- "$ref": "#/definitions/Reference"
888
- }
889
- ]
890
- }
891
- },
892
- "patternProperties": {
893
- "^[1-5](?:\\d{2}|XX)$": {
894
- "oneOf": [
895
- {
896
- "$ref": "#/definitions/Response"
897
- },
898
- {
899
- "$ref": "#/definitions/Reference"
900
- }
901
- ]
902
- },
903
- "^x-": {}
904
- },
905
- "minProperties": 1,
906
- "additionalProperties": false
907
- },
908
- "SecurityRequirement": {
909
- "type": "object",
910
- "additionalProperties": {
911
- "type": "array",
912
- "items": {
913
- "type": "string"
914
- }
915
- }
916
- },
917
- "Tag": {
918
- "type": "object",
919
- "required": ["name"],
920
- "properties": {
921
- "name": {
922
- "type": "string"
923
- },
924
- "description": {
925
- "type": "string"
926
- },
927
- "externalDocs": {
928
- "$ref": "#/definitions/ExternalDocumentation"
929
- }
930
- },
931
- "patternProperties": {
932
- "^x-": {}
933
- },
934
- "additionalProperties": false
935
- },
936
- "ExternalDocumentation": {
937
- "type": "object",
938
- "required": ["url"],
939
- "properties": {
940
- "description": {
941
- "type": "string"
942
- },
943
- "url": {
944
- "type": "string",
945
- "format": "uri-reference"
946
- }
947
- },
948
- "patternProperties": {
949
- "^x-": {}
950
- },
951
- "additionalProperties": false
952
- },
953
- "ExampleXORExamples": {
954
- "description": "Example and examples are mutually exclusive",
955
- "not": {
956
- "required": ["example", "examples"]
957
- }
958
- },
959
- "SchemaXORContent": {
960
- "description": "Schema and content are mutually exclusive, at least one is required",
961
- "not": {
962
- "required": ["schema", "content"]
963
- },
964
- "oneOf": [
965
- {
966
- "required": ["schema"]
967
- },
968
- {
969
- "required": ["content"],
970
- "description": "Some properties are not allowed if content is present",
971
- "allOf": [
972
- {
973
- "not": {
974
- "required": ["style"]
975
- }
976
- },
977
- {
978
- "not": {
979
- "required": ["explode"]
980
- }
981
- },
982
- {
983
- "not": {
984
- "required": ["allowReserved"]
985
- }
986
- },
987
- {
988
- "not": {
989
- "required": ["example"]
990
- }
991
- },
992
- {
993
- "not": {
994
- "required": ["examples"]
995
- }
996
- }
997
- ]
998
- }
999
- ]
1000
- },
1001
- "Parameter": {
1002
- "type": "object",
1003
- "properties": {
1004
- "name": {
1005
- "type": "string"
1006
- },
1007
- "in": {
1008
- "type": "string"
1009
- },
1010
- "description": {
1011
- "type": "string"
1012
- },
1013
- "required": {
1014
- "type": "boolean",
1015
- "default": false
1016
- },
1017
- "deprecated": {
1018
- "type": "boolean",
1019
- "default": false
1020
- },
1021
- "allowEmptyValue": {
1022
- "type": "boolean",
1023
- "default": false
1024
- },
1025
- "style": {
1026
- "type": "string"
1027
- },
1028
- "explode": {
1029
- "type": "boolean"
1030
- },
1031
- "allowReserved": {
1032
- "type": "boolean",
1033
- "default": false
1034
- },
1035
- "schema": {
1036
- "oneOf": [
1037
- {
1038
- "$ref": "#/definitions/Schema"
1039
- },
1040
- {
1041
- "$ref": "#/definitions/Reference"
1042
- }
1043
- ]
1044
- },
1045
- "content": {
1046
- "type": "object",
1047
- "additionalProperties": {
1048
- "$ref": "#/definitions/MediaType"
1049
- },
1050
- "minProperties": 1,
1051
- "maxProperties": 1
1052
- },
1053
- "example": {},
1054
- "examples": {
1055
- "type": "object",
1056
- "additionalProperties": {
1057
- "oneOf": [
1058
- {
1059
- "$ref": "#/definitions/Example"
1060
- },
1061
- {
1062
- "$ref": "#/definitions/Reference"
1063
- }
1064
- ]
1065
- }
1066
- }
1067
- },
1068
- "patternProperties": {
1069
- "^x-": {}
1070
- },
1071
- "additionalProperties": false,
1072
- "required": ["name", "in"],
1073
- "allOf": [
1074
- {
1075
- "$ref": "#/definitions/ExampleXORExamples"
1076
- },
1077
- {
1078
- "$ref": "#/definitions/SchemaXORContent"
1079
- },
1080
- {
1081
- "$ref": "#/definitions/ParameterLocation"
1082
- }
1083
- ]
1084
- },
1085
- "ParameterLocation": {
1086
- "description": "Parameter location",
1087
- "oneOf": [
1088
- {
1089
- "description": "Parameter in path",
1090
- "required": ["required"],
1091
- "properties": {
1092
- "in": {
1093
- "enum": ["path"]
1094
- },
1095
- "style": {
1096
- "enum": ["matrix", "label", "simple"],
1097
- "default": "simple"
1098
- },
1099
- "required": {
1100
- "enum": [true]
1101
- }
1102
- }
1103
- },
1104
- {
1105
- "description": "Parameter in query",
1106
- "properties": {
1107
- "in": {
1108
- "enum": ["query"]
1109
- },
1110
- "style": {
1111
- "enum": ["form", "spaceDelimited", "pipeDelimited", "deepObject"],
1112
- "default": "form"
1113
- }
1114
- }
1115
- },
1116
- {
1117
- "description": "Parameter in header",
1118
- "properties": {
1119
- "in": {
1120
- "enum": ["header"]
1121
- },
1122
- "style": {
1123
- "enum": ["simple"],
1124
- "default": "simple"
1125
- }
1126
- }
1127
- },
1128
- {
1129
- "description": "Parameter in cookie",
1130
- "properties": {
1131
- "in": {
1132
- "enum": ["cookie"]
1133
- },
1134
- "style": {
1135
- "enum": ["form"],
1136
- "default": "form"
1137
- }
1138
- }
1139
- }
1140
- ]
1141
- },
1142
- "RequestBody": {
1143
- "type": "object",
1144
- "required": ["content"],
1145
- "properties": {
1146
- "description": {
1147
- "type": "string"
1148
- },
1149
- "content": {
1150
- "type": "object",
1151
- "additionalProperties": {
1152
- "$ref": "#/definitions/MediaType"
1153
- }
1154
- },
1155
- "required": {
1156
- "type": "boolean",
1157
- "default": false
1158
- }
1159
- },
1160
- "patternProperties": {
1161
- "^x-": {}
1162
- },
1163
- "additionalProperties": false
1164
- },
1165
- "SecurityScheme": {
1166
- "oneOf": [
1167
- {
1168
- "$ref": "#/definitions/APIKeySecurityScheme"
1169
- },
1170
- {
1171
- "$ref": "#/definitions/HTTPSecurityScheme"
1172
- },
1173
- {
1174
- "$ref": "#/definitions/OAuth2SecurityScheme"
1175
- },
1176
- {
1177
- "$ref": "#/definitions/OpenIdConnectSecurityScheme"
1178
- }
1179
- ]
1180
- },
1181
- "APIKeySecurityScheme": {
1182
- "type": "object",
1183
- "required": ["type", "name", "in"],
1184
- "properties": {
1185
- "type": {
1186
- "type": "string",
1187
- "enum": ["apiKey"]
1188
- },
1189
- "name": {
1190
- "type": "string"
1191
- },
1192
- "in": {
1193
- "type": "string",
1194
- "enum": ["header", "query", "cookie"]
1195
- },
1196
- "description": {
1197
- "type": "string"
1198
- }
1199
- },
1200
- "patternProperties": {
1201
- "^x-": {}
1202
- },
1203
- "additionalProperties": false
1204
- },
1205
- "HTTPSecurityScheme": {
1206
- "type": "object",
1207
- "required": ["scheme", "type"],
1208
- "properties": {
1209
- "scheme": {
1210
- "type": "string"
1211
- },
1212
- "bearerFormat": {
1213
- "type": "string"
1214
- },
1215
- "description": {
1216
- "type": "string"
1217
- },
1218
- "type": {
1219
- "type": "string",
1220
- "enum": ["http"]
1221
- }
1222
- },
1223
- "patternProperties": {
1224
- "^x-": {}
1225
- },
1226
- "additionalProperties": false,
1227
- "oneOf": [
1228
- {
1229
- "description": "Bearer",
1230
- "properties": {
1231
- "scheme": {
1232
- "type": "string",
1233
- "pattern": "^[Bb][Ee][Aa][Rr][Ee][Rr]$"
1234
- }
1235
- }
1236
- },
1237
- {
1238
- "description": "Non Bearer",
1239
- "not": {
1240
- "required": ["bearerFormat"]
1241
- },
1242
- "properties": {
1243
- "scheme": {
1244
- "not": {
1245
- "type": "string",
1246
- "pattern": "^[Bb][Ee][Aa][Rr][Ee][Rr]$"
1247
- }
1248
- }
1249
- }
1250
- }
1251
- ]
1252
- },
1253
- "OAuth2SecurityScheme": {
1254
- "type": "object",
1255
- "required": ["type", "flows"],
1256
- "properties": {
1257
- "type": {
1258
- "type": "string",
1259
- "enum": ["oauth2"]
1260
- },
1261
- "flows": {
1262
- "$ref": "#/definitions/OAuthFlows"
1263
- },
1264
- "description": {
1265
- "type": "string"
1266
- }
1267
- },
1268
- "patternProperties": {
1269
- "^x-": {}
1270
- },
1271
- "additionalProperties": false
1272
- },
1273
- "OpenIdConnectSecurityScheme": {
1274
- "type": "object",
1275
- "required": ["type", "openIdConnectUrl"],
1276
- "properties": {
1277
- "type": {
1278
- "type": "string",
1279
- "enum": ["openIdConnect"]
1280
- },
1281
- "openIdConnectUrl": {
1282
- "type": "string",
1283
- "format": "uri-reference"
1284
- },
1285
- "description": {
1286
- "type": "string"
1287
- }
1288
- },
1289
- "patternProperties": {
1290
- "^x-": {}
1291
- },
1292
- "additionalProperties": false
1293
- },
1294
- "OAuthFlows": {
1295
- "type": "object",
1296
- "properties": {
1297
- "implicit": {
1298
- "$ref": "#/definitions/ImplicitOAuthFlow"
1299
- },
1300
- "password": {
1301
- "$ref": "#/definitions/PasswordOAuthFlow"
1302
- },
1303
- "clientCredentials": {
1304
- "$ref": "#/definitions/ClientCredentialsFlow"
1305
- },
1306
- "authorizationCode": {
1307
- "$ref": "#/definitions/AuthorizationCodeOAuthFlow"
1308
- }
1309
- },
1310
- "patternProperties": {
1311
- "^x-": {}
1312
- },
1313
- "additionalProperties": false
1314
- },
1315
- "ImplicitOAuthFlow": {
1316
- "type": "object",
1317
- "required": ["authorizationUrl", "scopes"],
1318
- "properties": {
1319
- "authorizationUrl": {
1320
- "type": "string",
1321
- "format": "uri-reference"
1322
- },
1323
- "refreshUrl": {
1324
- "type": "string",
1325
- "format": "uri-reference"
1326
- },
1327
- "scopes": {
1328
- "type": "object",
1329
- "additionalProperties": {
1330
- "type": "string"
1331
- }
1332
- }
1333
- },
1334
- "patternProperties": {
1335
- "^x-": {}
1336
- },
1337
- "additionalProperties": false
1338
- },
1339
- "PasswordOAuthFlow": {
1340
- "type": "object",
1341
- "required": ["tokenUrl", "scopes"],
1342
- "properties": {
1343
- "tokenUrl": {
1344
- "type": "string",
1345
- "format": "uri-reference"
1346
- },
1347
- "refreshUrl": {
1348
- "type": "string",
1349
- "format": "uri-reference"
1350
- },
1351
- "scopes": {
1352
- "type": "object",
1353
- "additionalProperties": {
1354
- "type": "string"
1355
- }
1356
- }
1357
- },
1358
- "patternProperties": {
1359
- "^x-": {}
1360
- },
1361
- "additionalProperties": false
1362
- },
1363
- "ClientCredentialsFlow": {
1364
- "type": "object",
1365
- "required": ["tokenUrl", "scopes"],
1366
- "properties": {
1367
- "tokenUrl": {
1368
- "type": "string",
1369
- "format": "uri-reference"
1370
- },
1371
- "refreshUrl": {
1372
- "type": "string",
1373
- "format": "uri-reference"
1374
- },
1375
- "scopes": {
1376
- "type": "object",
1377
- "additionalProperties": {
1378
- "type": "string"
1379
- }
1380
- }
1381
- },
1382
- "patternProperties": {
1383
- "^x-": {}
1384
- },
1385
- "additionalProperties": false
1386
- },
1387
- "AuthorizationCodeOAuthFlow": {
1388
- "type": "object",
1389
- "required": ["authorizationUrl", "tokenUrl", "scopes"],
1390
- "properties": {
1391
- "authorizationUrl": {
1392
- "type": "string",
1393
- "format": "uri-reference"
1394
- },
1395
- "tokenUrl": {
1396
- "type": "string",
1397
- "format": "uri-reference"
1398
- },
1399
- "refreshUrl": {
1400
- "type": "string",
1401
- "format": "uri-reference"
1402
- },
1403
- "scopes": {
1404
- "type": "object",
1405
- "additionalProperties": {
1406
- "type": "string"
1407
- }
1408
- }
1409
- },
1410
- "patternProperties": {
1411
- "^x-": {}
1412
- },
1413
- "additionalProperties": false
1414
- },
1415
- "Link": {
1416
- "type": "object",
1417
- "properties": {
1418
- "operationId": {
1419
- "type": "string"
1420
- },
1421
- "operationRef": {
1422
- "type": "string",
1423
- "format": "uri-reference"
1424
- },
1425
- "parameters": {
1426
- "type": "object",
1427
- "additionalProperties": {}
1428
- },
1429
- "requestBody": {},
1430
- "description": {
1431
- "type": "string"
1432
- },
1433
- "server": {
1434
- "$ref": "#/definitions/Server"
1435
- }
1436
- },
1437
- "patternProperties": {
1438
- "^x-": {}
1439
- },
1440
- "additionalProperties": false,
1441
- "not": {
1442
- "description": "Operation Id and Operation Ref are mutually exclusive",
1443
- "required": ["operationId", "operationRef"]
1444
- }
1445
- },
1446
- "Callback": {
1447
- "type": "object",
1448
- "additionalProperties": {
1449
- "$ref": "#/definitions/PathItem"
1450
- },
1451
- "patternProperties": {
1452
- "^x-": {}
1453
- }
1454
- },
1455
- "Encoding": {
1456
- "type": "object",
1457
- "properties": {
1458
- "contentType": {
1459
- "type": "string"
1460
- },
1461
- "headers": {
1462
- "type": "object",
1463
- "additionalProperties": {
1464
- "oneOf": [
1465
- {
1466
- "$ref": "#/definitions/Header"
1467
- },
1468
- {
1469
- "$ref": "#/definitions/Reference"
1470
- }
1471
- ]
1472
- }
1473
- },
1474
- "style": {
1475
- "type": "string",
1476
- "enum": ["form", "spaceDelimited", "pipeDelimited", "deepObject"]
1477
- },
1478
- "explode": {
1479
- "type": "boolean"
1480
- },
1481
- "allowReserved": {
1482
- "type": "boolean",
1483
- "default": false
1484
- }
1485
- },
1486
- "additionalProperties": false
1487
- }
1488
- }
1489
- }