forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
using-traits.yaml
122 lines (122 loc) · 2.96 KB
/
using-traits.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
openapi: 3.0.0
info:
title: 'Example of using traits in swagger-php'
version: 1.0.0
paths:
'/entities/{id}':
delete:
tags:
- Entities
operationId: 372df3207489872fd3c775f623f8340f
parameters:
-
name: id
in: path
description: 'ID of entity to delete'
required: true
schema:
type: string
responses:
default:
description: 'successful operation'
'/products/{product_id}':
get:
tags:
- Products
operationId: 569395beea865794cbde04d55c0ba4a2
parameters:
-
name: product_id
in: path
description: 'ID of product to return'
required: true
schema:
type: string
responses:
default:
description: 'successful operation'
components:
schemas:
BellsAndWhistles:
title: 'Bells and Whistles trait'
allOf:
-
$ref: '#/components/schemas/Bells'
-
$ref: '#/components/schemas/Whistles'
-
properties:
plating:
description: 'The plating.'
example: gold
CustomName/Blink:
title: 'Blink trait'
properties:
frequency:
description: 'The frequency.'
example: 1
type: object
Colour:
title: 'Colour trait'
properties:
colour:
description: 'The colour.'
example: red
type: object
Bells:
title: 'Bells trait'
properties:
bell:
description: 'The bell.'
example: chime
type: object
Whistles:
title: 'Whistles trait'
properties:
whistle:
description: 'The bell.'
example: 'bone whistle'
type: object
DeleteEntity:
title: 'Delete entity trait'
Product:
title: 'Product model'
allOf:
-
$ref: '#/components/schemas/Colour'
-
$ref: '#/components/schemas/BellsAndWhistles'
-
properties:
id:
description: 'The unique identifier of a product in our catalog.'
type: integer
format: int64
example: 1
bell:
description: 'The product bell.'
example: gong
SimpleProduct:
title: 'SimpleProduct model'
allOf:
-
$ref: '#/components/schemas/Bells'
-
properties:
id:
description: 'The unique identifier of a simple product in our catalog.'
type: integer
format: int64
example: 1
TrickyProduct:
title: 'TrickyProduct model'
allOf:
-
$ref: '#/components/schemas/SimpleProduct'
-
$ref: '#/components/schemas/CustomName~1Blink'
-
properties:
trick:
description: 'The trick.'
example: 'recite poem'