forked from cjbooms/fabrikt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.yaml
46 lines (46 loc) · 925 Bytes
/
api.yaml
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
openapi: 3.0.0
info:
paths:
components:
schemas:
SomeObj:
type: object
required:
- state
properties:
state:
$ref: '#/components/schemas/State'
State:
oneOf:
- $ref: '#/components/schemas/StateA'
- $ref: '#/components/schemas/StateB'
discriminator:
propertyName: status
mapping:
a: '#/components/schemas/StateA'
b: '#/components/schemas/StateB'
Status:
type: string
enum:
- a
- b
StateA:
type: object
required:
- status
properties:
status:
$ref: '#/components/schemas/Status'
StateB:
type: object
required:
- status
- mode
properties:
status:
$ref: '#/components/schemas/Status'
mode:
type: string
enum:
- mode1
- mode2