17 lines
417 B
Protocol Buffer
17 lines
417 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package rail-backend.v1;
|
|
option go_package = "git.fjla.uk/owlboard/generated/go/rail-backend/v1";
|
|
|
|
message PisReferenceList {
|
|
repeated PisMapping entries = 1;
|
|
}
|
|
|
|
message PisMapping {
|
|
string code = 1;
|
|
string toc = 2;
|
|
repeated string crsStops = 3;
|
|
fixed64 crsHash = 4; // XXH4 Hash for fast lookup of exact match
|
|
repeated string tiplocStops = 5;
|
|
fixed64 tiplocHash = 6;
|
|
} |