Communication.proto 527 B

12345678910111213141516
  1. syntax = "proto3";
  2. package aman;
  3. import "AircraftReport.proto";
  4. import "AircraftSchedule.proto";
  5. import "BaseTypes.proto";
  6. message AircraftUpdate {
  7. repeated AircraftReport reports = 1; // Contains all updated aircrafts
  8. }
  9. message AircraftSequence {
  10. string airport = 1; // Contains the airport ICAO for an easy filter
  11. repeated WindData windData = 2; // Contains the wind information
  12. repeated AircraftSchedule sequence = 3; // Contains the sequence for the airport
  13. }