Skip to main content

Basic Discriminator with Mapping

GET 

/discriminator-basic-mapping

Schema:

type: object
discriminator:
propertyName: type
mapping:
typeA: "#/components/schemas/TypeA"
typeB: "#/components/schemas/TypeB"
properties:
type:
type: string
oneOf:
- $ref: '#/components/schemas/TypeA'
- $ref: '#/components/schemas/TypeB'

Responses

Successful response

Schema

    oneOf

    type stringrequired

    Possible values: [typeA]

    propA string

    type

    string

    Possible values: [typeA, typeB]

    type stringrequired

    Possible values: [typeA]

    propA string
Loading...