Skip to main content

allOf with Shared Required Properties

GET 

/allof-shared-required

Schema:

allOf:
- type: object
properties:
sharedProp:
type: string
required: [sharedProp]
- type: object
properties:
anotherProp:
type: number
required: [anotherProp]

Responses

Successful response

Schema

    sharedProp stringrequired
    anotherProp numberrequired
Loading...