generated from speakeasy-sdks/template-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
441 lines (437 loc) · 12.6 KB
/
openapi.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
openapi: 3.1.0
info:
title: The Speakeasy Bar
version: 1.0.0
summary: A bar that serves drinks.
description: A secret underground bar that serves drinks to those in the know.
contact:
name: Speakeasy Support
url: https://support.speakeasy.bar
email: support@speakeasy.bar
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
termsOfService: https://speakeasy.bar/terms
externalDocs:
url: https://docs.speakeasy.bar
description: The Speakeasy Bar Documentation.
servers:
- url: https://speakeasy.bar
description: The production server.
- url: https://staging.speakeasy.bar
description: The staging server.
- url: https://{organization}.{environment}.speakeasy.bar
description: A per-organization and per-environment API.
variables:
organization:
description: The organization name. Defaults to a generic organization.
default: api
environment:
description: The environment name. Defaults to the production environment.
default: prod
enum:
- prod
- staging
- dev
security:
- apiKey: []
tags:
- name: drinks
description: The drinks endpoints.
- name: ingredients
description: The ingredients endpoints.
- name: orders
description: The orders endpoints.
- name: authentication
description: The authentication endpoints.
- name: config
paths:
/authenticate:
post:
operationId: authenticate
summary: Authenticate with the API by providing a username and password.
security: []
tags:
- authentication
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
username:
type: string
password:
type: string
responses:
"200":
description: The api key to use for authenticated endpoints.
content:
application/json:
schema:
type: object
properties:
token:
type: string
"401":
description: Invalid credentials provided.
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
/drinks:
get:
operationId: listDrinks
summary: Get a list of drinks.
description: Get a list of drinks, if authenticated this will include stock levels and product codes otherwise it will only include public information.
security:
- {}
tags:
- drinks
parameters:
- name: type
in: query
description: The type of drink to filter by. If not provided all drinks will be returned.
required: false
schema:
$ref: "#/components/schemas/DrinkType"
responses:
"200":
description: A list of drinks.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Drink"
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
/drink/{name}: #TODO: this should be by product code and we should have search by name
get:
operationId: getDrink
summary: Get a drink.
description: Get a drink by name, if authenticated this will include stock levels and product codes otherwise it will only include public information.
tags:
- drinks
parameters:
- name: name
in: path
required: true
schema:
type: string
responses:
"200":
description: A drink.
content:
application/json:
schema:
$ref: "#/components/schemas/Drink"
links:
listIngredients:
operationId: listIngredients
parameters:
ingredients: $response.body#/ingredients
description: The list of ingredients returned by the `getDrink` operation can be used as an input to the `listIngredients` operation, to retrieve additional details about the ingredients required to make the drink.
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
/ingredients:
get:
operationId: listIngredients
summary: Get a list of ingredients.
description: Get a list of ingredients, if authenticated this will include stock levels and product codes otherwise it will only include public information.
tags:
- ingredients
parameters:
- name: ingredients
in: query
description: A list of ingredients to filter by. If not provided all ingredients will be returned.
required: false
style: form
explode: false
schema:
type: array
items:
type: string
responses:
"200":
description: A list of ingredients.
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Ingredient"
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
/order:
post:
operationId: createOrder
summary: Create an order.
description: Create an order for a drink.
tags:
- orders
parameters:
- name: callback_url
in: query
description: The url to call when the order is updated.
required: false
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Order"
responses:
"200":
description: The order was created successfully.
content:
application/json:
schema:
$ref: "#/components/schemas/Order"
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
callbacks:
orderUpdate:
"{$request.query.callback_url}":
post:
summary: Receive order updates.
description: Receive order updates from the supplier, this will be called whenever the status of an order changes.
tags:
- orders
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
order:
$ref: "#/components/schemas/Order"
responses:
"200":
description: The order update was received successfully.
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
/webhooks/subscribe:
post:
operationId: subscribeToWebhooks
summary: Subscribe to webhooks.
description: Subscribe to webhooks.
tags:
- configuration
requestBody:
required: true
content:
application/json:
schema:
type: array
items:
type: object
properties:
url:
type: string
webhook:
type: string
enum:
- stockUpdate
responses:
"200":
description: The webhook was subscribed to successfully.
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
webhooks:
stockUpdate:
post:
summary: Receive stock updates.
description: Receive stock updates from the bar, this will be called whenever the stock levels of a drink or ingredient changes.
tags:
- drinks
- ingredients
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
drink:
$ref: "#/components/schemas/Drink"
ingredient:
$ref: "#/components/schemas/Ingredient"
responses:
"200":
description: The stock update was received successfully.
"5XX":
$ref: "#/components/responses/APIError"
default:
$ref: "#/components/responses/UnknownError"
components:
schemas:
APIError:
type: object
properties:
code:
type: string
message:
type: string
details:
type: object
additionalProperties: true
Error:
type: object
properties:
code:
type: string
message:
type: string
Drink:
type: object
properties:
name:
description: The name of the drink.
type: string
examples:
- Old Fashioned
- Manhattan
- Negroni
type:
$ref: "#/components/schemas/DrinkType"
price:
description: The price of one unit of the drink in US cents.
type: number
examples:
- 1000 # $10.00
- 1200 # $12.00
- 1500 # $15.00
stock:
description: The number of units of the drink in stock, only available when authenticated.
type: integer
readOnly: true
productCode:
description: The product code of the drink, only available when authenticated.
type: string
examples:
- "AC-A2DF3"
- "NAC-3F2D1"
- "APM-1F2D3"
required:
- name
- price
DrinkType:
description: The type of drink.
type: string
enum:
- cocktail
- non-alcoholic
- beer
- wine
- spirit
- other
Ingredient:
type: object
properties:
name:
description: The name of the ingredient.
type: string
examples:
- Sugar Syrup
- Angostura Bitters
- Orange Peel
type:
$ref: "#/components/schemas/IngredientType"
stock:
description: The number of units of the ingredient in stock, only available when authenticated.
type: integer
examples:
- 10
- 5
- 0
readOnly: true
productCode:
description: The product code of the ingredient, only available when authenticated.
type: string
examples:
- "AC-A2DF3"
- "NAC-3F2D1"
- "APM-1F2D3"
required:
- name
- type
IngredientType:
description: The type of ingredient.
type: string
enum:
- fresh
- long-life
- packaged
Order:
description: An order for a drink or ingredient.
type: object
properties:
type:
$ref: "#/components/schemas/OrderType"
productCode:
description: The product code of the drink or ingredient.
type: string
examples:
- "AC-A2DF3"
- "NAC-3F2D1"
- "APM-1F2D3"
quantity:
description: The number of units of the drink or ingredient to order.
type: integer
minimum: 1
status:
description: The status of the order.
type: string
enum:
- pending
- processing
- complete
readOnly: true
required:
- type
- productCode
- quantity
- status
OrderType:
description: The type of order.
type: string
enum:
- drink
- ingredient
securitySchemes:
apiKey:
type: apiKey
name: Authorization
in: header
responses:
APIError:
description: An error occurred interacting with the API.
content:
application/json:
schema:
$ref: "#/components/schemas/APIError"
UnknownError:
description: An unknown error occurred interacting with the API.
content:
application/json:
schema:
$ref: "#/components/schemas/Error"