include "match.fbs"; include "nearest.fbs"; include "route.fbs"; include "table.fbs"; include "trip.fbs"; namespace osrm.engine.api.fbresult; table Error { code: string; message: string; } table FBResult { error: bool = false; code: Error; data_version: string; match: Match; nearest: Nearest; route: Route; table: Table; trip: Trip; }