15 lines
298 B
Plaintext
15 lines
298 B
Plaintext
include "waypoint.fbs";
|
|
namespace osrm.engine.api.fbresult;
|
|
|
|
table VectorUint {
|
|
column: [uint];
|
|
}
|
|
|
|
table Table {
|
|
waypoints: [Waypoint];
|
|
durations: [VectorUint];
|
|
distances: [VectorUint];
|
|
sources: [Waypoint];
|
|
destinations: [Waypoint];
|
|
fallback_speed_cells: [VectorUint];
|
|
} |