Files
backend-data-contracts/protos/rail/v1/pis_schema.proto
Fred Boniface 9ebf62e2c6
Some checks failed
Generate and Release Protos / release (push) Failing after 43s
Add automation
2025-12-16 21:42:16 +00:00

15 lines
343 B
Protocol Buffer

syntax = "proto3";
package rail.v1;
option go_package = "git.fjla.uk/owlboard/backend-data-contracts";
message PisReferenceList {
repeated PisMapping entries = 1;
}
message PisMapping {
string code = 1;
string operator = 2;
repeated string stops = 3;
fixed64 stops_xxh4 = 4; // XXH4 Hash for fast lookup of exact match
}