2019-08-02 07:30:09 -04:00
|
|
|
include "route.fbs";
|
|
|
|
include "table.fbs";
|
|
|
|
|
|
|
|
namespace osrm.engine.api.fbresult;
|
|
|
|
|
2019-08-08 04:46:25 -04:00
|
|
|
table Error {
|
|
|
|
code: string;
|
|
|
|
message: string;
|
2019-08-02 07:30:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
table FBResult {
|
2019-08-08 04:46:25 -04:00
|
|
|
error: bool = false;
|
|
|
|
code: Error;
|
2019-08-07 04:50:59 -04:00
|
|
|
data_version: string;
|
2019-08-08 11:46:32 -04:00
|
|
|
waypoints: [Waypoint]; //Used as 'sources' waypoints for a 'Table' service
|
|
|
|
routes: [RouteObject];
|
2024-07-10 14:44:36 -04:00
|
|
|
table: TableResult;
|
2019-08-12 07:26:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
root_type FBResult;
|