scorpio 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,794 +0,0 @@
1
- ---
2
- title: A JSON Schema for OpenAPI 3.0.
3
- id: http://openapis.org/v3/schema.json#
4
- "$schema": http://json-schema.org/draft-04/schema#
5
- type: object
6
- description: This is the root document object of the OpenAPI document.
7
- required:
8
- - openapi
9
- - info
10
- - paths
11
- additionalProperties: false
12
- patternProperties:
13
- "^x-":
14
- "$ref": "#/definitions/specificationExtension"
15
- properties:
16
- openapi:
17
- type: string
18
- info:
19
- "$ref": "#/definitions/info"
20
- servers:
21
- type: array
22
- items:
23
- "$ref": "#/definitions/server"
24
- uniqueItems: true
25
- paths:
26
- "$ref": "#/definitions/paths"
27
- components:
28
- "$ref": "#/definitions/components"
29
- security:
30
- type: array
31
- items:
32
- "$ref": "#/definitions/securityRequirement"
33
- uniqueItems: true
34
- tags:
35
- type: array
36
- items:
37
- "$ref": "#/definitions/tag"
38
- uniqueItems: true
39
- externalDocs:
40
- "$ref": "#/definitions/externalDocs"
41
- definitions:
42
- info:
43
- type: object
44
- description: The object provides metadata about the API. The metadata MAY be used by the clients if needed, and MAY be presented in editing or documentation generation tools for convenience.
45
- required:
46
- - title
47
- - version
48
- additionalProperties: false
49
- patternProperties:
50
- "^x-":
51
- "$ref": "#/definitions/specificationExtension"
52
- properties:
53
- title:
54
- type: string
55
- description:
56
- type: string
57
- termsOfService:
58
- type: string
59
- contact:
60
- "$ref": "#/definitions/contact"
61
- license:
62
- "$ref": "#/definitions/license"
63
- version:
64
- type: string
65
- contact:
66
- type: object
67
- description: Contact information for the exposed API.
68
- additionalProperties: false
69
- patternProperties:
70
- "^x-":
71
- "$ref": "#/definitions/specificationExtension"
72
- properties:
73
- name:
74
- type: string
75
- url:
76
- type: string
77
- format: uri
78
- email:
79
- type: string
80
- format: email
81
- license:
82
- type: object
83
- description: License information for the exposed API.
84
- required:
85
- - name
86
- additionalProperties: false
87
- patternProperties:
88
- "^x-":
89
- "$ref": "#/definitions/specificationExtension"
90
- properties:
91
- name:
92
- type: string
93
- url:
94
- type: string
95
- server:
96
- type: object
97
- description: An object representing a Server.
98
- required:
99
- - url
100
- additionalProperties: false
101
- patternProperties:
102
- "^x-":
103
- "$ref": "#/definitions/specificationExtension"
104
- properties:
105
- url:
106
- type: string
107
- description:
108
- type: string
109
- variables:
110
- "$ref": "#/definitions/serverVariables"
111
- serverVariable:
112
- type: object
113
- description: An object representing a Server Variable for server URL template substitution.
114
- required:
115
- - default
116
- additionalProperties: false
117
- patternProperties:
118
- "^x-":
119
- "$ref": "#/definitions/specificationExtension"
120
- properties:
121
- enum:
122
- type: array
123
- items:
124
- type: string
125
- uniqueItems: true
126
- default:
127
- type: string
128
- description:
129
- type: string
130
- components:
131
- type: object
132
- description: Holds a set of reusable objects for different aspects of the OAS. All objects defined within the components object will have no effect on the API unless they are explicitly referenced from properties outside the components object.
133
- additionalProperties: false
134
- patternProperties:
135
- "^x-":
136
- "$ref": "#/definitions/specificationExtension"
137
- properties:
138
- schemas:
139
- "$ref": "#/definitions/schemasOrReferences"
140
- responses:
141
- "$ref": "#/definitions/responsesOrReferences"
142
- parameters:
143
- "$ref": "#/definitions/parametersOrReferences"
144
- examples:
145
- "$ref": "#/definitions/examplesOrReferences"
146
- requestBodies:
147
- "$ref": "#/definitions/requestBodiesOrReferences"
148
- headers:
149
- "$ref": "#/definitions/headersOrReferences"
150
- securitySchemes:
151
- "$ref": "#/definitions/securitySchemesOrReferences"
152
- links:
153
- "$ref": "#/definitions/linksOrReferences"
154
- callbacks:
155
- "$ref": "#/definitions/callbacksOrReferences"
156
- paths:
157
- type: object
158
- description: Holds the relative paths to the individual endpoints and their operations. The path is appended to the URL from the `Server Object` in order to construct the full URL. The Paths MAY be empty, due to ACL constraints.
159
- additionalProperties: false
160
- patternProperties:
161
- "^/":
162
- "$ref": "#/definitions/pathItem"
163
- "^x-":
164
- "$ref": "#/definitions/specificationExtension"
165
- pathItem:
166
- type: object
167
- description: Describes the operations available on a single path. A Path Item MAY be empty, due to ACL constraints. The path itself is still exposed to the documentation viewer but they will not know which operations and parameters are available.
168
- additionalProperties: false
169
- patternProperties:
170
- "^x-":
171
- "$ref": "#/definitions/specificationExtension"
172
- properties:
173
- "$ref":
174
- type: string
175
- summary:
176
- type: string
177
- description:
178
- type: string
179
- get:
180
- "$ref": "#/definitions/operation"
181
- put:
182
- "$ref": "#/definitions/operation"
183
- post:
184
- "$ref": "#/definitions/operation"
185
- delete:
186
- "$ref": "#/definitions/operation"
187
- options:
188
- "$ref": "#/definitions/operation"
189
- head:
190
- "$ref": "#/definitions/operation"
191
- patch:
192
- "$ref": "#/definitions/operation"
193
- trace:
194
- "$ref": "#/definitions/operation"
195
- servers:
196
- type: array
197
- items:
198
- "$ref": "#/definitions/server"
199
- uniqueItems: true
200
- parameters:
201
- type: array
202
- items:
203
- "$ref": "#/definitions/parameterOrReference"
204
- uniqueItems: true
205
- operation:
206
- type: object
207
- description: Describes a single API operation on a path.
208
- required:
209
- - responses
210
- additionalProperties: false
211
- patternProperties:
212
- "^x-":
213
- "$ref": "#/definitions/specificationExtension"
214
- properties:
215
- tags:
216
- type: array
217
- items:
218
- type: string
219
- uniqueItems: true
220
- summary:
221
- type: string
222
- description:
223
- type: string
224
- externalDocs:
225
- "$ref": "#/definitions/externalDocs"
226
- operationId:
227
- type: string
228
- parameters:
229
- type: array
230
- items:
231
- "$ref": "#/definitions/parameterOrReference"
232
- uniqueItems: true
233
- requestBody:
234
- "$ref": "#/definitions/requestBodyOrReference"
235
- responses:
236
- "$ref": "#/definitions/responses"
237
- callbacks:
238
- "$ref": "#/definitions/callbacksOrReferences"
239
- deprecated:
240
- type: boolean
241
- security:
242
- type: array
243
- items:
244
- "$ref": "#/definitions/securityRequirement"
245
- uniqueItems: true
246
- servers:
247
- type: array
248
- items:
249
- "$ref": "#/definitions/server"
250
- uniqueItems: true
251
- externalDocs:
252
- type: object
253
- description: Allows referencing an external resource for extended documentation.
254
- required:
255
- - url
256
- additionalProperties: false
257
- patternProperties:
258
- "^x-":
259
- "$ref": "#/definitions/specificationExtension"
260
- properties:
261
- description:
262
- type: string
263
- url:
264
- type: string
265
- parameter:
266
- type: object
267
- description: Describes a single operation parameter. A unique parameter is defined by a combination of a name and location.
268
- required:
269
- - name
270
- - in
271
- additionalProperties: false
272
- patternProperties:
273
- "^x-":
274
- "$ref": "#/definitions/specificationExtension"
275
- properties:
276
- name:
277
- type: string
278
- in:
279
- type: string
280
- description:
281
- type: string
282
- required:
283
- type: boolean
284
- deprecated:
285
- type: boolean
286
- allowEmptyValue:
287
- type: boolean
288
- style:
289
- type: string
290
- explode:
291
- type: boolean
292
- allowReserved:
293
- type: boolean
294
- schema:
295
- "$ref": "#/definitions/schemaOrReference"
296
- example:
297
- "$ref": "#/definitions/any"
298
- examples:
299
- "$ref": "#/definitions/examplesOrReferences"
300
- content:
301
- "$ref": "#/definitions/mediaTypes"
302
- requestBody:
303
- type: object
304
- description: Describes a single request body.
305
- required:
306
- - content
307
- additionalProperties: false
308
- patternProperties:
309
- "^x-":
310
- "$ref": "#/definitions/specificationExtension"
311
- properties:
312
- description:
313
- type: string
314
- content:
315
- "$ref": "#/definitions/mediaTypes"
316
- required:
317
- type: boolean
318
- mediaType:
319
- type: object
320
- description: Each Media Type Object provides schema and examples for the media type identified by its key.
321
- additionalProperties: false
322
- patternProperties:
323
- "^x-":
324
- "$ref": "#/definitions/specificationExtension"
325
- properties:
326
- schema:
327
- "$ref": "#/definitions/schemaOrReference"
328
- example:
329
- "$ref": "#/definitions/any"
330
- examples:
331
- "$ref": "#/definitions/examplesOrReferences"
332
- encoding:
333
- "$ref": "#/definitions/encodings"
334
- encoding:
335
- type: object
336
- description: A single encoding definition applied to a single schema property.
337
- additionalProperties: false
338
- patternProperties:
339
- "^x-":
340
- "$ref": "#/definitions/specificationExtension"
341
- properties:
342
- contentType:
343
- type: string
344
- headers:
345
- "$ref": "#/definitions/headersOrReferences"
346
- style:
347
- type: string
348
- explode:
349
- type: boolean
350
- allowReserved:
351
- type: boolean
352
- responses:
353
- type: object
354
- description: A container for the expected responses of an operation. The container maps a HTTP response code to the expected response. The documentation is not necessarily expected to cover all possible HTTP response codes because they may not be known in advance. However, documentation is expected to cover a successful operation response and any known errors. The `default` MAY be used as a default response object for all HTTP codes that are not covered individually by the specification. The `Responses Object` MUST contain at least one response code, and it SHOULD be the response for a successful operation call.
355
- additionalProperties: false
356
- patternProperties:
357
- "^([0-9X]{3})$":
358
- "$ref": "#/definitions/responseOrReference"
359
- "^x-":
360
- "$ref": "#/definitions/specificationExtension"
361
- properties:
362
- default:
363
- "$ref": "#/definitions/responseOrReference"
364
- response:
365
- type: object
366
- description: Describes a single response from an API Operation, including design-time, static `links` to operations based on the response.
367
- required:
368
- - description
369
- additionalProperties: false
370
- patternProperties:
371
- "^x-":
372
- "$ref": "#/definitions/specificationExtension"
373
- properties:
374
- description:
375
- type: string
376
- headers:
377
- "$ref": "#/definitions/headersOrReferences"
378
- content:
379
- "$ref": "#/definitions/mediaTypes"
380
- links:
381
- "$ref": "#/definitions/linksOrReferences"
382
- callback:
383
- type: object
384
- description: A map of possible out-of band callbacks related to the parent operation. Each value in the map is a Path Item Object that describes a set of requests that may be initiated by the API provider and the expected responses. The key value used to identify the callback object is an expression, evaluated at runtime, that identifies a URL to use for the callback operation.
385
- additionalProperties: false
386
- patternProperties:
387
- "^":
388
- "$ref": "#/definitions/pathItem"
389
- "^x-":
390
- "$ref": "#/definitions/specificationExtension"
391
- example:
392
- type: object
393
- description: ''
394
- additionalProperties: false
395
- patternProperties:
396
- "^x-":
397
- "$ref": "#/definitions/specificationExtension"
398
- properties:
399
- summary:
400
- type: string
401
- description:
402
- type: string
403
- value:
404
- "$ref": "#/definitions/any"
405
- externalValue:
406
- type: string
407
- link:
408
- type: object
409
- description: The `Link object` represents a possible design-time link for a response. The presence of a link does not guarantee the caller's ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between responses and other operations. Unlike _dynamic_ links (i.e. links provided **in** the response payload), the OAS linking mechanism does not require link information in the runtime response. For computing links, and providing instructions to execute them, a runtime expression is used for accessing values in an operation and using them as parameters while invoking the linked operation.
410
- additionalProperties: false
411
- patternProperties:
412
- "^x-":
413
- "$ref": "#/definitions/specificationExtension"
414
- properties:
415
- operationRef:
416
- type: string
417
- operationId:
418
- type: string
419
- parameters:
420
- "$ref": "#/definitions/anysOrExpressions"
421
- requestBody:
422
- "$ref": "#/definitions/anyOrExpression"
423
- description:
424
- type: string
425
- server:
426
- "$ref": "#/definitions/server"
427
- header:
428
- type: object
429
- description: 'The Header Object follows the structure of the Parameter Object with the following changes: 1. `name` MUST NOT be specified, it is given in the corresponding `headers` map. 1. `in` MUST NOT be specified, it is implicitly in `header`. 1. All traits that are affected by the location MUST be applicable to a location of `header` (for example, `style`).'
430
- additionalProperties: false
431
- patternProperties:
432
- "^x-":
433
- "$ref": "#/definitions/specificationExtension"
434
- properties:
435
- description:
436
- type: string
437
- required:
438
- type: boolean
439
- deprecated:
440
- type: boolean
441
- allowEmptyValue:
442
- type: boolean
443
- style:
444
- type: string
445
- explode:
446
- type: boolean
447
- allowReserved:
448
- type: boolean
449
- schema:
450
- "$ref": "#/definitions/schemaOrReference"
451
- example:
452
- "$ref": "#/definitions/any"
453
- examples:
454
- "$ref": "#/definitions/examplesOrReferences"
455
- content:
456
- "$ref": "#/definitions/mediaTypes"
457
- tag:
458
- type: object
459
- description: Adds metadata to a single tag that is used by the Operation Object. It is not mandatory to have a Tag Object per tag defined in the Operation Object instances.
460
- required:
461
- - name
462
- additionalProperties: false
463
- patternProperties:
464
- "^x-":
465
- "$ref": "#/definitions/specificationExtension"
466
- properties:
467
- name:
468
- type: string
469
- description:
470
- type: string
471
- externalDocs:
472
- "$ref": "#/definitions/externalDocs"
473
- examples:
474
- type: object
475
- description: ''
476
- additionalProperties: false
477
- reference:
478
- type: object
479
- description: A simple object to allow referencing other components in the specification, internally and externally. The Reference Object is defined by JSON Reference and follows the same structure, behavior and rules. For this specification, reference resolution is accomplished as defined by the JSON Reference specification and not by the JSON Schema specification.
480
- required:
481
- - "$ref"
482
- additionalProperties: false
483
- properties:
484
- "$ref":
485
- type: string
486
- schema:
487
- type: object
488
- description: The Schema Object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. This object is an extended subset of the JSON Schema Specification Wright Draft 00. For more information about the properties, see JSON Schema Core and JSON Schema Validation. Unless stated otherwise, the property definitions follow the JSON Schema.
489
- additionalProperties: false
490
- patternProperties:
491
- "^x-":
492
- "$ref": "#/definitions/specificationExtension"
493
- properties:
494
- nullable:
495
- type: boolean
496
- discriminator:
497
- "$ref": "#/definitions/discriminator"
498
- readOnly:
499
- type: boolean
500
- writeOnly:
501
- type: boolean
502
- xml:
503
- "$ref": "#/definitions/xml"
504
- externalDocs:
505
- "$ref": "#/definitions/externalDocs"
506
- example:
507
- "$ref": "#/definitions/any"
508
- deprecated:
509
- type: boolean
510
- title:
511
- "$ref": http://json-schema.org/draft-04/schema#/properties/title
512
- multipleOf:
513
- "$ref": http://json-schema.org/draft-04/schema#/properties/multipleOf
514
- maximum:
515
- "$ref": http://json-schema.org/draft-04/schema#/properties/maximum
516
- exclusiveMaximum:
517
- "$ref": http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum
518
- minimum:
519
- "$ref": http://json-schema.org/draft-04/schema#/properties/minimum
520
- exclusiveMinimum:
521
- "$ref": http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum
522
- maxLength:
523
- "$ref": http://json-schema.org/draft-04/schema#/properties/maxLength
524
- minLength:
525
- "$ref": http://json-schema.org/draft-04/schema#/properties/minLength
526
- pattern:
527
- "$ref": http://json-schema.org/draft-04/schema#/properties/pattern
528
- maxItems:
529
- "$ref": http://json-schema.org/draft-04/schema#/properties/maxItems
530
- minItems:
531
- "$ref": http://json-schema.org/draft-04/schema#/properties/minItems
532
- uniqueItems:
533
- "$ref": http://json-schema.org/draft-04/schema#/properties/uniqueItems
534
- maxProperties:
535
- "$ref": http://json-schema.org/draft-04/schema#/properties/maxProperties
536
- minProperties:
537
- "$ref": http://json-schema.org/draft-04/schema#/properties/minProperties
538
- required:
539
- "$ref": http://json-schema.org/draft-04/schema#/properties/required
540
- enum:
541
- "$ref": http://json-schema.org/draft-04/schema#/properties/enum
542
- type:
543
- type: string
544
- allOf:
545
- type: array
546
- items:
547
- "$ref": "#/definitions/schemaOrReference"
548
- minItems: 1
549
- oneOf:
550
- type: array
551
- items:
552
- "$ref": "#/definitions/schemaOrReference"
553
- minItems: 1
554
- anyOf:
555
- type: array
556
- items:
557
- "$ref": "#/definitions/schemaOrReference"
558
- minItems: 1
559
- not:
560
- "$ref": "#/definitions/schema"
561
- items:
562
- "$ref": "#/definitions/schemaOrReference"
563
- properties:
564
- type: object
565
- additionalProperties:
566
- "$ref": "#/definitions/schemaOrReference"
567
- additionalProperties:
568
- oneOf:
569
- - "$ref": "#/definitions/schemaOrReference"
570
- - type: boolean
571
- default:
572
- "$ref": "#/definitions/defaultType"
573
- description:
574
- type: string
575
- format:
576
- type: string
577
- discriminator:
578
- type: object
579
- description: When request bodies or response payloads may be one of a number of different schemas, a `discriminator` object can be used to aid in serialization, deserialization, and validation. The discriminator is a specific object in a schema which is used to inform the consumer of the specification of an alternative schema based on the value associated with it. When using the discriminator, _inline_ schemas will not be considered.
580
- required:
581
- - propertyName
582
- additionalProperties: false
583
- properties:
584
- propertyName:
585
- type: string
586
- mapping:
587
- "$ref": "#/definitions/strings"
588
- xml:
589
- type: object
590
- description: A metadata object that allows for more fine-tuned XML model definitions. When using arrays, XML element names are *not* inferred (for singular/plural forms) and the `name` property SHOULD be used to add that information. See examples for expected behavior.
591
- additionalProperties: false
592
- patternProperties:
593
- "^x-":
594
- "$ref": "#/definitions/specificationExtension"
595
- properties:
596
- name:
597
- type: string
598
- namespace:
599
- type: string
600
- prefix:
601
- type: string
602
- attribute:
603
- type: boolean
604
- wrapped:
605
- type: boolean
606
- securityScheme:
607
- type: object
608
- description: Defines a security scheme that can be used by the operations. Supported schemes are HTTP authentication, an API key (either as a header or as a query parameter), OAuth2's common flows (implicit, password, application and access code) as defined in RFC6749, and OpenID Connect Discovery.
609
- required:
610
- - type
611
- additionalProperties: false
612
- patternProperties:
613
- "^x-":
614
- "$ref": "#/definitions/specificationExtension"
615
- properties:
616
- type:
617
- type: string
618
- description:
619
- type: string
620
- name:
621
- type: string
622
- in:
623
- type: string
624
- scheme:
625
- type: string
626
- bearerFormat:
627
- type: string
628
- flows:
629
- "$ref": "#/definitions/oauthFlows"
630
- openIdConnectUrl:
631
- type: string
632
- oauthFlows:
633
- type: object
634
- description: Allows configuration of the supported OAuth Flows.
635
- additionalProperties: false
636
- patternProperties:
637
- "^x-":
638
- "$ref": "#/definitions/specificationExtension"
639
- properties:
640
- implicit:
641
- "$ref": "#/definitions/oauthFlow"
642
- password:
643
- "$ref": "#/definitions/oauthFlow"
644
- clientCredentials:
645
- "$ref": "#/definitions/oauthFlow"
646
- authorizationCode:
647
- "$ref": "#/definitions/oauthFlow"
648
- oauthFlow:
649
- type: object
650
- description: Configuration details for a supported OAuth Flow
651
- additionalProperties: false
652
- patternProperties:
653
- "^x-":
654
- "$ref": "#/definitions/specificationExtension"
655
- properties:
656
- authorizationUrl:
657
- type: string
658
- tokenUrl:
659
- type: string
660
- refreshUrl:
661
- type: string
662
- scopes:
663
- "$ref": "#/definitions/strings"
664
- securityRequirement:
665
- type: object
666
- description: Lists the required security schemes to execute this operation. The name used for each property MUST correspond to a security scheme declared in the Security Schemes under the Components Object. Security Requirement Objects that contain multiple schemes require that all schemes MUST be satisfied for a request to be authorized. This enables support for scenarios where multiple query parameters or HTTP headers are required to convey security information. When a list of Security Requirement Objects is defined on the Open API object or Operation Object, only one of Security Requirement Objects in the list needs to be satisfied to authorize the request.
667
- additionalProperties: false
668
- patternProperties:
669
- "^[a-zA-Z0-9\\.\\-_]+$":
670
- type: array
671
- items:
672
- type: string
673
- uniqueItems: true
674
- anyOrExpression:
675
- oneOf:
676
- - "$ref": "#/definitions/any"
677
- - "$ref": "#/definitions/expression"
678
- callbackOrReference:
679
- oneOf:
680
- - "$ref": "#/definitions/callback"
681
- - "$ref": "#/definitions/reference"
682
- exampleOrReference:
683
- oneOf:
684
- - "$ref": "#/definitions/example"
685
- - "$ref": "#/definitions/reference"
686
- headerOrReference:
687
- oneOf:
688
- - "$ref": "#/definitions/header"
689
- - "$ref": "#/definitions/reference"
690
- linkOrReference:
691
- oneOf:
692
- - "$ref": "#/definitions/link"
693
- - "$ref": "#/definitions/reference"
694
- parameterOrReference:
695
- oneOf:
696
- - "$ref": "#/definitions/parameter"
697
- - "$ref": "#/definitions/reference"
698
- requestBodyOrReference:
699
- oneOf:
700
- - "$ref": "#/definitions/requestBody"
701
- - "$ref": "#/definitions/reference"
702
- responseOrReference:
703
- oneOf:
704
- - "$ref": "#/definitions/response"
705
- - "$ref": "#/definitions/reference"
706
- schemaOrReference:
707
- oneOf:
708
- - "$ref": "#/definitions/schema"
709
- - "$ref": "#/definitions/reference"
710
- securitySchemeOrReference:
711
- oneOf:
712
- - "$ref": "#/definitions/securityScheme"
713
- - "$ref": "#/definitions/reference"
714
- anysOrExpressions:
715
- type: object
716
- additionalProperties:
717
- "$ref": "#/definitions/anyOrExpression"
718
- callbacksOrReferences:
719
- type: object
720
- additionalProperties:
721
- "$ref": "#/definitions/callbackOrReference"
722
- encodings:
723
- type: object
724
- additionalProperties:
725
- "$ref": "#/definitions/encoding"
726
- examplesOrReferences:
727
- type: object
728
- additionalProperties:
729
- "$ref": "#/definitions/exampleOrReference"
730
- headersOrReferences:
731
- type: object
732
- additionalProperties:
733
- "$ref": "#/definitions/headerOrReference"
734
- linksOrReferences:
735
- type: object
736
- additionalProperties:
737
- "$ref": "#/definitions/linkOrReference"
738
- mediaTypes:
739
- type: object
740
- additionalProperties:
741
- "$ref": "#/definitions/mediaType"
742
- parametersOrReferences:
743
- type: object
744
- additionalProperties:
745
- "$ref": "#/definitions/parameterOrReference"
746
- requestBodiesOrReferences:
747
- type: object
748
- additionalProperties:
749
- "$ref": "#/definitions/requestBodyOrReference"
750
- responsesOrReferences:
751
- type: object
752
- additionalProperties:
753
- "$ref": "#/definitions/responseOrReference"
754
- schemasOrReferences:
755
- type: object
756
- additionalProperties:
757
- "$ref": "#/definitions/schemaOrReference"
758
- securitySchemesOrReferences:
759
- type: object
760
- additionalProperties:
761
- "$ref": "#/definitions/securitySchemeOrReference"
762
- serverVariables:
763
- type: object
764
- additionalProperties:
765
- "$ref": "#/definitions/serverVariable"
766
- strings:
767
- type: object
768
- additionalProperties:
769
- type: string
770
- object:
771
- type: object
772
- additionalProperties: true
773
- any:
774
- additionalProperties: true
775
- expression:
776
- type: object
777
- additionalProperties: true
778
- specificationExtension:
779
- description: Any property starting with x- is valid.
780
- oneOf:
781
- - type: 'null'
782
- - type: number
783
- - type: boolean
784
- - type: string
785
- - type: object
786
- - type: array
787
- defaultType:
788
- oneOf:
789
- - type: 'null'
790
- - type: array
791
- - type: object
792
- - type: number
793
- - type: boolean
794
- - type: string