osrm-backend/include/engine/api/flatbuffers/fbresult.fbs

20 lines
367 B
Plaintext
Raw Normal View History

2019-08-02 07:30:09 -04:00
include "route.fbs";
include "table.fbs";
namespace osrm.engine.api.fbresult;
table Error {
code: string;
message: string;
2019-08-02 07:30:09 -04:00
}
table FBResult {
error: bool = false;
code: Error;
data_version: string;
waypoints: [Waypoint]; //Used as 'sources' waypoints for a 'Table' service
routes: [RouteObject];
table: Table;
}
root_type FBResult;