Skip to main content

allOf with Deep Merging

GET 

/allof-deep-merging

Schema:

allOf:
- type: object
properties:
deepProp:
type: object
properties:
innerProp1:
type: string
- type: object
properties:
deepProp:
type: object
properties:
innerProp2:
type: number

Responses

Successful response

Schema

    deepProp

    object

    innerProp1 string
    innerProp2 number
Loading...