AircraftSchedule.proto 382 B

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