AircraftSchedule.proto 355 B

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