/srv/osrm/osrm-backend/include/engine/api/flatbuffers
NameSizeModeActions
fbresult.fbs3670644editdlrm
fbresult_generated.h1014880644editdlrm
position.fbs1000644editdlrm
route.fbs18930644editdlrm
table.fbs2240644editdlrm
waypoint.fbs5140644editdlrm
Edit: /srv/osrm/osrm-backend/include/engine/api/flatbuffers/fbresult.fbs (367B)
include "route.fbs"; include "table.fbs"; namespace osrm.engine.api.fbresult; table Error { code: string; message: string; } 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;