Skip to main content

Discriminator with AllOf without Mapping

GET 

/discriminator-allof

Schema:

type: object
discriminator:
propertyName: type
properties:
type:
type: string
allOf:
- oneOf:
- $ref: '#/components/schemas/TypeA'
- $ref: '#/components/schemas/TypeB'
- type: object
properties:
sharedProp:
type: string

Responses

Successful response

Schema

    type

    oneOf

    type stringrequired

    Possible values: [typeA]

    propA string
    sharedProp string
Loading...