- syntax = "proto3";
- package aman;
- import "BaseTypes.proto";
- message AircraftSchedule {
- string callsign = 1; // aircraft's callsign
- bool fixed = 2; // indicates if the sequence is fixed
- string arrivalRoute = 3; // planned arrival route
- string arrivalRunway = 4; // planned arrival runway
- PerformanceData performance = 5; // used performance data
- repeated Waypoint waypoints = 6; // contains the planned waypoints with the PTA
- }
|