Some checks failed
Generate and Release Protos / release (push) Failing after 23s
16 lines
344 B
Protocol Buffer
16 lines
344 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package 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;
|
|
} |