1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
openapi: 3.1.0
info:
title: Test
description: "Test API"
version: 0.0.0
paths:
/item:
get:
responses:
'200':
description: "Item"
content:
application/json:
schema:
$ref: "#/components/schemas/ItemContainer"
components:
schemas:
ItemContainer:
type: object
required:
- item
properties:
item:
$ref: "#/components/schemas/BaseItem"
BaseItem:
type: object
required:
- itemType
properties:
itemType:
type: string
discriminator:
propertyName: itemType
FooItem:
allOf:
- $ref: "#/components/schemas/BaseItem"
- type: object
properties:
fooValue:
type: string
BarItem:
allOf:
- $ref: "#/components/schemas/BaseItem"
- type: object
properties:
barValue:
type: integer
|