18 lines
601 B
Protocol Buffer
18 lines
601 B
Protocol Buffer
syntax = "proto3";
|
|
package aman;
|
|
|
|
import "AircraftReport.proto";
|
|
import "AircraftSchedule.proto";
|
|
import "BaseTypes.proto";
|
|
|
|
message AircraftUpdate {
|
|
string airport = 1; // Contains the updated airport
|
|
repeated AircraftReport reports = 2; // Contains all updated aircrafts
|
|
}
|
|
|
|
message AircraftSequence {
|
|
string airport = 1; // Contains the airport ICAO for an easy filter
|
|
repeated WindData windData = 2; // Contains the wind information
|
|
repeated AircraftSchedule sequence = 3; // Contains the sequence for the airport
|
|
}
|