2019-08-02 07:30:09 -04:00
|
|
|
include "match.fbs";
|
|
|
|
include "nearest.fbs";
|
|
|
|
include "route.fbs";
|
|
|
|
include "table.fbs";
|
|
|
|
include "trip.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 04:46:25 -04:00
|
|
|
match: Match;
|
|
|
|
nearest: Nearest;
|
|
|
|
route: Route;
|
|
|
|
table: Table;
|
|
|
|
trip: Trip;
|
2019-08-02 07:30:09 -04:00
|
|
|
}
|