AircraftSchedule.proto 472 B

12345678910111213
  1. syntax = "proto3";
  2. package aman;
  3. import "Aircraft.proto";
  4. import "BaseTypes.proto";
  5. message AircraftSchedule {
  6. string callsign = 1; // aircraft's callsign
  7. bool fixed = 2; // indicates if the sequence is fixed
  8. string arrivalRoute = 3; // planned arrival route
  9. string arrivalRunway = 4; // planned arrival runway
  10. repeated Waypoint waypoints = 5; // contains the planned waypoints with the PTA
  11. }