13 lines
		
	
	
		
			454 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			454 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| package aman;
 | |
| 
 | |
| import "Aircraft.proto";
 | |
| 
 | |
| message AircraftSchedule {
 | |
|     Aircraft aircraft          = 1; // aircraft information
 | |
|     string   arrivalRoute      = 2; // planned arrival route
 | |
|     string   arrivalRunway     = 3; // planned arrival runway
 | |
|     string   reachIafAtTime    = 4; // UTC time when the aircraft needs to pass IAF
 | |
|     string   reachRunwayAtTime = 5; // UTC time when the aircraft needs to touch down
 | |
| }
 |