-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-documentation.yaml
281 lines (281 loc) · 7.39 KB
/
example-documentation.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
asyncapi: 3.0.0
info:
title: Example APP
version: 2.2.0
contact:
name: Anna Bocharova
url: https://robintail.cz
email: [email protected]
license:
name: MIT
description: AsyncAPI documentation example
id: urn:example:com:socket.io
defaultContentType: text/plain
servers:
example:
host: example.com
pathname: /socket.io
protocol: https
channels:
Root:
address: /
title: Namespace /
bindings:
ws:
bindingVersion: 0.1.0
method: GET
headers:
type: object
properties:
connection:
type: string
const: Upgrade
upgrade:
type: string
const: websocket
query:
type: object
properties:
EIO:
type: string
const: "4"
description: The version of the protocol
transport:
type: string
enum:
- polling
- websocket
description: The name of the transport
sid:
type: string
description: The session identifier
required:
- EIO
- transport
externalDocs:
description: Engine.IO Protocol
url: https://socket.io/docs/v4/engine-io-protocol/
messages:
rootOutgoingTime:
name: time
title: time
payload:
type: array
items:
- type: string
description: current ISO time
examples:
- 2024-03-28T21:13:15.084Z
additionalItems: false
examples:
- payload:
- 2024-03-28T21:13:15.084Z
rootOutgoingChat:
name: chat
title: chat
payload:
type: array
items:
- type: string
description: message
examples:
- Hello there!
- type: object
properties:
from:
type: string
description: the ID of author
required:
- from
description: extra info
examples:
- &a1
from: 123abc
additionalItems: false
examples:
- payload:
- Hello there!
- *a1
rootOutgoingRooms:
name: rooms
title: rooms
payload:
type: array
items:
- type: array
items:
type: string
description: room IDs
examples:
- &a2
- room1
- room2
- &a3
- room3
- room4
- room5
additionalItems: false
examples:
- payload:
- *a2
- payload:
- *a3
rootOutgoingError:
name: error
title: error
payload:
type: array
items:
- type: string
description: name
examples:
- InputValidationError
- type: string
description: message
examples:
- "1: Required"
additionalItems: false
examples:
- payload:
- InputValidationError
- "1: Required"
rootIncomingChat:
name: chat
title: chat
payload:
type: array
items:
- type: string
description: message
examples:
- Hello there
additionalItems: false
examples:
- payload:
- Hello there
rootIncomingPing:
name: ping
title: ping
payload:
type: array
additionalItems:
format: any
description: Anything
examples:
- payload:
- something
rootAckForIncomingPing:
title: Acknowledgement for ping
payload:
type: array
items:
- type: string
const: pong
description: literally
examples:
- pong
additionalItems:
format: any
description: echo
examples:
- payload:
- pong
- something
rootIncomingSubscribe:
name: subscribe
title: subscribe
payload:
type: array
additionalItems:
format: any
description: Does not matter
rootIncomingUnsubscribe:
name: unsubscribe
title: unsubscribe
payload:
type: array
additionalItems:
format: any
description: Does not matter
components: {}
operations:
RootSendOperationTime:
action: send
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootOutgoingTime"
title: time
summary: Outgoing event time
description: The message produced by the application within the / namespace
RootSendOperationChat:
action: send
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootOutgoingChat"
title: chat
summary: Outgoing event chat
description: The message produced by the application within the / namespace
RootSendOperationRooms:
action: send
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootOutgoingRooms"
title: rooms
summary: Outgoing event rooms
description: The message produced by the application within the / namespace
RootSendOperationError:
action: send
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootOutgoingError"
title: error
summary: Outgoing event error
description: The message produced by the application within the / namespace
RootRecvOperationChat:
action: receive
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootIncomingChat"
title: chat
summary: Incoming event chat
description: The message consumed by the application within the / namespace
RootRecvOperationPing:
action: receive
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootIncomingPing"
title: ping
summary: Incoming event ping
description: The message consumed by the application within the / namespace
reply:
address:
location: $message.payload#
description: "Last argument: acknowledgement handler"
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootAckForIncomingPing"
RootRecvOperationSubscribe:
action: receive
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootIncomingSubscribe"
title: subscribe
summary: Incoming event subscribe
description: The message consumed by the application within the / namespace
RootRecvOperationUnsubscribe:
action: receive
channel:
$ref: "#/channels/Root"
messages:
- $ref: "#/channels/Root/messages/rootIncomingUnsubscribe"
title: unsubscribe
summary: Incoming event unsubscribe
description: The message consumed by the application within the / namespace