30 lines
622 B
Protocol Buffer
30 lines
622 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
option optimize_for = LITE_RUNTIME;
|
||
|
option go_package = "git.coopgo.io/coopgo-platform/routing-service/proto/valhalla";
|
||
|
package valhalla;
|
||
|
|
||
|
message Status {
|
||
|
oneof has_has_tiles {
|
||
|
bool has_tiles = 1;
|
||
|
}
|
||
|
oneof has_has_admins {
|
||
|
bool has_admins = 2;
|
||
|
}
|
||
|
oneof has_has_timezones {
|
||
|
bool has_timezones = 3;
|
||
|
}
|
||
|
oneof has_has_live_traffic {
|
||
|
bool has_live_traffic = 4;
|
||
|
}
|
||
|
oneof has_bbox {
|
||
|
string bbox = 5;
|
||
|
}
|
||
|
oneof has_version {
|
||
|
string version = 6;
|
||
|
}
|
||
|
oneof has_tileset_last_modified {
|
||
|
uint32 tileset_last_modified = 7;
|
||
|
}
|
||
|
repeated string available_actions = 8;
|
||
|
}
|