-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
723 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,264 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: OneOf Variations API | ||
description: Demonstrates various oneOf schema combinations. | ||
version: 1.0.0 | ||
tags: | ||
- name: oneOf | ||
description: oneOf tests | ||
paths: | ||
/oneof-primitive-types: | ||
get: | ||
tags: | ||
- oneOf | ||
summary: oneOf with Primitive Types | ||
description: | | ||
Schema: | ||
```yaml | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: string | ||
- type: number | ||
- type: boolean | ||
``` | ||
responses: | ||
"200": | ||
description: Successful response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: string | ||
- type: number | ||
- type: boolean | ||
|
||
/oneof-complex-types: | ||
get: | ||
tags: | ||
- oneOf | ||
summary: oneOf with Complex Types | ||
description: | | ||
Schema: | ||
```yaml | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
objectProp: | ||
type: string | ||
- type: array | ||
items: | ||
type: number | ||
``` | ||
responses: | ||
"200": | ||
description: Successful response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
objectProp: | ||
type: string | ||
- type: array | ||
items: | ||
type: number | ||
|
||
/oneof-nested: | ||
get: | ||
tags: | ||
- oneOf | ||
summary: oneOf with Nested oneOf | ||
description: | | ||
Schema: | ||
```yaml | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
nestedOneOfProp: | ||
oneOf: | ||
- type: string | ||
- type: number | ||
- type: boolean | ||
``` | ||
responses: | ||
"200": | ||
description: Successful response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
nestedOneOfProp: | ||
oneOf: | ||
- type: string | ||
- type: number | ||
- type: boolean | ||
|
||
# /oneof-discriminator: | ||
# get: | ||
# tags: | ||
# - oneOf | ||
# summary: oneOf with Discriminator | ||
# description: | | ||
# Schema: | ||
# ```yaml | ||
# type: object | ||
# discriminator: | ||
# propertyName: type | ||
# properties: | ||
# type: | ||
# type: string | ||
# oneOf: | ||
# - type: object | ||
# properties: | ||
# type: | ||
# type: string | ||
# enum: ["typeA"] | ||
# propA: | ||
# type: string | ||
# required: ["type"] | ||
# - type: object | ||
# properties: | ||
# type: | ||
# type: string | ||
# enum: ["typeB"] | ||
# propB: | ||
# type: number | ||
# required: ["type"] | ||
# ``` | ||
# responses: | ||
# '200': | ||
# description: Successful response | ||
# content: | ||
# application/json: | ||
# schema: | ||
# type: object | ||
# discriminator: | ||
# propertyName: type | ||
# properties: | ||
# type: | ||
# type: string | ||
# oneOf: | ||
# - type: object | ||
# properties: | ||
# type: | ||
# type: string | ||
# enum: ["typeA"] | ||
# propA: | ||
# type: string | ||
# required: ["type"] | ||
# - type: object | ||
# properties: | ||
# type: | ||
# type: string | ||
# enum: ["typeB"] | ||
# propB: | ||
# type: number | ||
# required: ["type"] | ||
|
||
/oneof-shared-properties: | ||
get: | ||
tags: | ||
- oneOf | ||
summary: oneOf with Shared Properties | ||
description: | | ||
Schema: | ||
```yaml | ||
type: object | ||
properties: | ||
sharedProp: | ||
type: string | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
specificPropA: | ||
type: string | ||
- type: object | ||
properties: | ||
specificPropB: | ||
type: number | ||
``` | ||
responses: | ||
"200": | ||
description: Successful response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
sharedProp: | ||
type: string | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
specificPropA: | ||
type: string | ||
- type: object | ||
properties: | ||
specificPropB: | ||
type: number | ||
|
||
/oneof-required-properties: | ||
get: | ||
tags: | ||
- oneOf | ||
summary: oneOf with Required Properties | ||
description: | | ||
Schema: | ||
```yaml | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
requiredPropA: | ||
type: string | ||
required: ["requiredPropA"] | ||
- type: object | ||
properties: | ||
requiredPropB: | ||
type: number | ||
required: ["requiredPropB"] | ||
``` | ||
responses: | ||
"200": | ||
description: Successful response | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
oneOfProperty: | ||
oneOf: | ||
- type: object | ||
properties: | ||
requiredPropA: | ||
type: string | ||
required: ["requiredPropA"] | ||
- type: object | ||
properties: | ||
requiredPropB: | ||
type: number | ||
required: ["requiredPropB"] |
Oops, something went wrong.