Files
backend-data-contracts/protos/rail_backend/v1/pis_schema.proto
Fred Boniface 2068a4335b
Some checks failed
Generate and Release Protos / release (push) Failing after 23s
Update directory name to cover the correct package name
2026-01-07 13:17:02 +00:00

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;
}