AircraftSchedule.proto 397 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. repeated Waypoint waypoints = 4; // contains the planned waypoints with the PTA
  10. }