-
Notifications
You must be signed in to change notification settings - Fork 1
/
openapi.yml
384 lines (380 loc) · 9.88 KB
/
openapi.yml
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
swagger: '2.0'
info:
description: This is a API documentation for i'm uber
version: 1.0.0
title: I'm Uber
# tags are used for organizing operations
tags:
- name: users
description: called by users after logged in
- name: admins
description: Operations available to regular administrations
paths:
/users/me/tickets:
post:
tags:
- users
summary: join a ride
parameters:
- in: body
name: inventoryItem
description: Inventory item to add
schema:
$ref: '#/definitions/Ticket'
responses:
201:
description: item created
400:
description: invalid input, object invalid
409:
description: an existing item already exists
get:
tags:
- users
summary: get my tickets
responses:
200:
description: search results matching criteria
schema:
type: array
items:
$ref: '#/definitions/Ticket'
400:
description: invalid input, object invalid
409:
description: an existing item already exists
/users/me/tickets/{ticketId}:
delete:
tags:
- users
summary: quit a ride
parameters:
- in: path
name: ticketId
type: string
format: uuid
required: true
description: the ticket user want to delete
responses:
200:
description: OK
/rides/{rideId}:
get:
tags:
- users
summary: driver get a ride
operationId: getARide
description: |
Get a ride
produces:
- application/json
parameters:
- in: path
name: rideId
type: string
format: uuid
required: true
description: Numeric ID of the user to get
responses:
200:
description: result of a ride
schema:
type: array
items:
$ref: '#/definitions/Ride'
example:
- departure_time: '2023-06-26T06:42:51.800Z'
stops:
- name: "臺積電五廠"
latitude: 24.774451062456148
longitude: 120.99816376901293
id: 0
- name: "交大門口土地公廟"
latitude: 24.78709056239894
longitude: 120.99749874432568
id: 1
- name: "新竹市立動物園"
latitude: 24.80044826523704
longitude: 120.97987888212046
id: 2
- name: "新竹轉運站"
latitude: 24.801285760203864
longitude: 120.97241441651721
id: 3
driver:
id: d290f1ee-6c54-4b01-90e6-d701748f0851
name: Peter
phone: '0900000000'
tickets:
- user:
id: d290f1ee-6c54-4b01-90e6-d701748fqwer
name: Alice
phone: '0900000000'
from:
name: "臺積電五廠"
latitude: 24.774451062456148
longitude: 120.99816376901293
id: 0
to:
name: "新竹轉運站"
latitude: 24.801285760203864
longitude: 120.97241441651721
id: 3
departure_time: '2023-05-26T06:42:51.801Z'
arrival_time: '2023-05-26T06:42:51.801Z'
price: 200
- user:
id: d290f1ee-6c54-4b01-90e6-d701748fuiop
name: Bob
phone: '0900000000'
ride: string
from:
name: "臺積電五廠"
latitude: 24.774451062456148
longitude: 120.99816376901293
id: 0
to:
name: "交大門口土地公廟"
latitude: 24.78709056239894
longitude: 120.99749874432568
id: 1
departure_time: '2023-05-26T06:42:51.801Z'
arrival_time: '2023-05-26T06:42:51.801Z'
price: 100
vehicle:
driver:
id: d290f1ee-6c54-4b01-90e6-d701748f0851
name: Peter
phone: '0900000000'
license_plate: ABC-1122
seats: 5
status: 0
/rides:
get:
tags:
- users
summary: search for available rides
parameters:
- in: query
name: departure_time
description: user expected depature time
type: string
format: datetime
- in: query
name: from
description: user expected depature stop
type: string
format: uuid
- in: query
name: to
description: user expected arrival stop
type: string
format: uuid
- in: query
name: offset
type: integer
description: The number of items to skip before starting to collect the result set
- in: query
name: limit
type: integer
description: The numbers of items to return
responses:
200:
description: item created
schema:
type: array
items:
$ref: '#/definitions/Ticket'
example:
- departure_time: '2023-06-26T06:42:51.800Z'
stops:
- name: "臺積電五廠"
put:
tags:
- users
summary: update a ride
operationId: putARide
description: |
Get a ride
responses:
200:
description: result of a ride
post:
tags:
- users
summary: create a ride
operationId: postARide
description: |
Get a ride
responses:
200:
description: result of a ride
/stops:
get:
tags:
- users
summary: all available stops a driver can pickup or drop off passengers
parameters:
- in: query
name: searchString
description: pass an optional search string for looking up inventory
required: false
type: string
- in: query
name: skip
description: number of records to skip for pagination
type: integer
format: int32
minimum: 0
- in: query
name: limit
description: maximum number of records to return
type: integer
format: int32
minimum: 0
maximum: 50
responses:
200:
description: search results matching criteria
schema:
type: array
items:
$ref: '#/definitions/Stop'
example:
- name: "新竹高鐵站"
latitude: 24.807282359338483
longitude: 121.04050172232557
- name: "臺積電五廠"
latitude: 24.774451062456148
longitude: 120.99816376901293
- name: "金山街塔"
latitude: 24.777044600209447
longitude: 121.02514493860002
- name: "新竹市立動物園"
latitude: 24.80044826523704
longitude: 120.97987888212046
- name: "交大門口土地公廟"
latitude: 24.78709056239894
longitude: 120.99749874432568
- name: "新竹轉運站"
latitude: 24.801285760203864
longitude: 120.97241441651721
post:
tags:
- admins
summary: adds an inventory item
operationId: addInventory
description: Adds an item to the system
consumes:
- application/json
produces:
- application/json
parameters:
- in: body
name: inventoryItem
description: Inventory item to add
schema:
$ref: '#/definitions/Stop'
responses:
201:
description: item created
400:
description: invalid input, object invalid
409:
description: an existing item already exists
definitions:
User:
type: object
required:
- id
- name
- phone
- email
properties:
id:
type: string
format: uuid
example: d290f1ee-6c54-4b01-90e6-d701748f0851
name:
type: string
example: Peter
phone:
type: string
example: '0900000000'
Vehicle:
required:
- driver
- license_plate
- seats
properties:
driver:
$ref: '#/definitions/User'
license_plate:
type: string
example: 'ABC-1122'
seats:
type: number
example: 5
Stop:
required:
- name
- latitude
- longitude
properties:
name:
type: string
example: "新竹高鐵站"
latitude:
type: number
example: 100.2
longitude:
type: number
example: 10.5
Ticket:
properties:
user:
$ref: '#/definitions/User'
ride:
$ref: '#/definitions/Ride'
from:
$ref: '#/definitions/Stop'
to:
$ref: '#/definitions/Stop'
departure_time:
type: string
format: date-time
arrival_time:
type: string
format: date-time
price:
type: number
example: 100
Ride:
required:
- tickets
- stops
- vehicle
- departure_time
- status
properties:
departure_time:
type: string
format: date-time
stops:
type: array
items:
$ref: '#/definitions/Stop'
tickets:
type: array
items:
$ref: '#/definitions/Ticket'
vehicle:
$ref: '#/definitions/Vehicle'
status:
type: integer
description: "0: to_be_done, 1: in_progress, 2: finished"
# Added by API Auto Mocking Plugin
host: virtserver.swaggerhub.com
basePath: /MONEY678678/im_uber/1.0.0
schemes:
- https