-
Notifications
You must be signed in to change notification settings - Fork 2
/
swagger.json
500 lines (499 loc) · 17.7 KB
/
swagger.json
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
{
"swagger": "2.0",
"info": {
"title": "Tour Optimization API",
"description": "Our Tour Optimization API solves the so called vehicle routing problem fast. It calculates an optimal tour for a set of vehicles, services and constraints",
"version": "1.0"
},
"host": "graphhopper.com",
"basePath": "/api/1/vrp",
"schemes": [
"https"
],
"produces": [
"application/json"
],
"security": [{
"api_key": []
}],
"securityDefinitions": {
"api_key": {
"type": "apiKey",
"name": "key",
"in": "query"
}
},
"paths": {
"/optimize": {
"post": {
"summary": "Solves large routing problems",
"description": "This endpoint solves large problems, i.e. traveling salesman or vehicle routing problems, and returns the solution.\n",
"operationId": "postVrp",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [{
"in": "query",
"name": "key",
"description": "your API key",
"required": true,
"type": "string"
}, {
"in": "body",
"name": "body",
"description": "Request object that contains the problem to be solved",
"required": true,
"schema": {
"$ref": "#/definitions/Request"
}
}
],
"tags": [
"vrp"
],
"responses": {
"200": {
"description": "A jobId you can use to retrieve your solution from server - see solution endpoint.",
"schema": {
"$ref": "#/definitions/JobId"
}
},
"400": {
"description": "Error occurred when reading client request. Request is invalid."
},
"500": {
"description": "Error occurred on server side."
}
}
}
},
"/solution/{jobId}": {
"get": {
"summary": "Return the solution associated to the jobId",
"description": "This endpoint returns the solution of a large problems. You can fetch it with the job_id, you have been sent.\n",
"operationId": "getSolution",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [{
"in": "query",
"name": "key",
"description": "your API key",
"required": true,
"type": "string"
}, {
"in": "path",
"name": "jobId",
"description": "Request solution with jobId",
"required": true,
"type": "string"
}
],
"tags": [
"solution"
],
"responses": {
"200": {
"description": "A response containing the solution",
"schema": {
"$ref": "#/definitions/LargeResponse"
}
},
"400": {
"description": "Error occurred on client side such as invalid input."
},
"500": {
"description": "Error occurred on server side."
}
}
}
}
},
"definitions": {
"JobId": {
"properties": {
"job_id": {
"type": "string",
"description": "unique id for your job/request with which you can fetch your solution"
}
}
},
"Request": {
"properties": {
"vehicles": {
"type": "array",
"description": "An array of vehicles that can be employed",
"items": {
"$ref": "#/definitions/Vehicle"
}
},
"vehicle_types": {
"type": "array",
"description": "An array of vehicle types",
"items": {
"$ref": "#/definitions/VehicleType"
}
},
"services": {
"type": "array",
"description": "An array of services",
"items": {
"$ref": "#/definitions/Service"
}
},
"shipments": {
"type": "array",
"description": "An array of shipments",
"items": {
"$ref": "#/definitions/Shipment"
}
}
}
},
"Vehicle": {
"properties": {
"vehicle_id": {
"type": "string",
"description": "Unique identifier of vehicle"
},
"type_id": {
"type": "string",
"description": "Unique identifier referring to the available vehicle types"
},
"start_address": {
"$ref": "#/definitions/Address"
},
"end_address": {
"$ref": "#/definitions/Address"
},
"return_to_depot": {
"type": "boolean",
"description": "Indicates whether vehicle should return to start address or not. If not, it can end at any service activity."
},
"earliest_start": {
"type": "integer",
"format": "int64",
"description": "earliest start of vehicle at its start location"
},
"latest_end": {
"type": "integer",
"format": "int64",
"description": "latest end of vehicle at its end location"
},
"skills": {
"type": "array",
"items": {
"type": "string"
},
"description": "array of skills"
}
}
},
"Address": {
"type": "object",
"properties": {
"location_id": {
"type": "string",
"description": "Unique identifier of location"
},
"lon": {
"format": "double",
"type": "number",
"description": "longitude"
},
"lat": {
"format": "double",
"type": "number",
"description": "latitude"
}
}
},
"VehicleType": {
"properties": {
"type_id": {
"type": "string",
"description": "Unique identifier for the vehicle type"
},
"profile": {
"type": "string",
"description": "Profile of vehicle type",
"example": "car",
"enum": [
"car",
"bike",
"foot"
]
},
"distance_dependent_costs": {
"type": "number",
"format": "double",
"description": "cost factor of distance"
},
"time_dependent_costs": {
"type": "number",
"format": "double",
"description": "cost factor of time"
},
"capacity": {
"type" : "array",
"description" : "array of capacity dimensions",
"items": {
"type": "integer",
"format": "int32"
}
}
}
},
"Service": {
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of service"
},
"type": {
"type": "string",
"description": "type of service",
"enum": [
"service"
]
},
"name": {
"type": "string",
"description": "name of service"
},
"address": {
"$ref": "#/definitions/Address"
},
"duration": {
"type": "integer",
"format": "int64",
"description": "duration of service, i.e. time in ms the corresponding activity takes"
},
"time_windows": {
"type": "array",
"items": {
"$ref": "#/definitions/TimeWindow"
},
"description": "array of time windows. currently, only a single time window is allowed"
},
"size": {
"type" : "array",
"description" : "array of capacity dimensions",
"items": {
"type": "integer",
"format": "int32"
}
},
"required_skills": {
"type": "array",
"items": {
"type": "string"
},
"description": "array of required skills"
}
}
},
"Shipment": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of service"
},
"name": {
"type": "string",
"description": "name of shipment"
},
"pickup" : {
"$ref": "#/definitions/Stop"
},
"delivery" : {
"$ref": "#/definitions/Stop"
},
"size": {
"type" : "array",
"description" : "array of capacity dimensions",
"items": {
"type": "integer",
"format": "int32"
}
},
"required_skills": {
"type": "array",
"items": {
"type": "string"
},
"description": "array of required skills"
}
}
},
"Stop": {
"properties": {
"address": {
"$ref": "#/definitions/Address"
},
"duration": {
"type": "integer",
"format": "int64",
"description": "duration of stop, i.e. time in ms the corresponding activity takes"
},
"time_windows": {
"type": "array",
"items": {
"$ref": "#/definitions/TimeWindow"
},
"description": "array of time windows. currently, only a single time window is allowed"
}
}
},
"TimeWindow": {
"properties": {
"earliest": {
"type": "integer",
"format": "int64",
"description": "earliest start time of corresponding activity"
},
"latest": {
"type": "integer",
"format": "int64",
"description": "latest start time of corresponding activity"
}
}
},
"LargeResponse": {
"properties": {
"job_id": {
"type": "string",
"description": "unique identify of job - which you get when posting your request to the large problem solver"
},
"status": {
"type": "string",
"enum": [
"waiting_in_queue",
"processing",
"finished"
],
"description": "indicates the current status of the job"
},
"waiting_in_queue": {
"type": "integer",
"format": "int64",
"description": "waiting time in ms"
},
"processing_time": {
"type": "integer",
"format": "int64",
"description": "processing time in ms. if job is still waiting in queue, processing_time is 0"
},
"solution": {
"$ref": "#/definitions/Solution",
"description": "the solution. only available if status field indicates finished"
}
}
},
"Solution": {
"properties": {
"costs": {
"type": "integer",
"format": "int32",
"description": "overall costs of solution"
},
"distance": {
"type": "integer",
"format": "int32",
"description": "overall travel distance in meters"
},
"time": {
"type": "integer",
"format": "int64",
"description": "overall travel time in ms"
},
"no_unassigned": {
"type": "integer",
"format": "int32",
"description": "number of jobs that could not be assigned to final solution"
},
"routes": {
"type": "array",
"description": "An array of routes",
"items": {
"$ref": "#/definitions/Route"
}
},
"unassigned": {
"type": "object",
"properties": {
"services": {
"type": "array",
"description": "An array of ids of unassigned services",
"items": {
"type": "string",
"description": "id of unassigned service"
}
},
"shipments": {
"type": "array",
"description": "An array of ids of unassigned shipments",
"items": {
"type": "string",
"description": "id of unassigned shipments"
}
}
}
}
}
},
"Route": {
"properties": {
"vehicle_id": {
"type": "string",
"description": "id of vehicle that operates route"
},
"activities": {
"type": "array",
"description": "array of activities",
"items": {
"$ref": "#/definitions/Activity"
}
}
}
},
"Activity": {
"properties": {
"type": {
"type": "string",
"description": "type of activity",
"enum": [
"start",
"end",
"service"
]
},
"id": {
"type": "string",
"description": "id referring to the underlying service or shipment, i.e. the shipment or service this activity belongs to"
},
"location_id": {
"type": "string",
"description": "id that refers to address"
},
"arr_time": {
"type": "integer",
"format": "int64",
"description": "arrival time at this activity in ms"
},
"end_time": {
"type": "integer",
"format": "int64",
"description": "end time of and thus departure time at this activity"
}
}
}
}
}