Files
aman-com/AircraftSchedule.proto
2021-08-08 20:50:50 +02:00

13 lines
389 B
Protocol Buffer

syntax = "proto3";
package vatger.aman;
import "Aircraft.proto";
import "BaseTypes.proto";
message AircraftSchedule {
Aircraft aircraft = 1; // aircraft information
string arrivalRoute = 2; // planned arrival route
string arrivalRunway = 3; // planned arrival runway
Time reachIafAtTime = 4; // UTC time when the aircraft needs to pass IAF
}