-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontrol.json
74 lines (74 loc) · 1.76 KB
/
control.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"getFlightsByAirline": {
"url": "/airlines/:airlinePrefix/flights?:status",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|airlinePrefix": "$!airlinePrefix",
"String|status": "status"
}
},
"getFlightsByAerodrome": {
"url": "/aerodromes/:aerodromeICAO/arrivals?:status",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|aerodromeICAO": "$!aerodromeICAO",
"String|status": "status"
}
},
"getDeparturesByAerodrome": {
"url": "/aerodromes/:aerodromeICAO/departures?:status",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|aerodromeICAO": "$!aerodromeICAO",
"String|status": "status"
}
},
"getFlightDataFirLoad": {
"url": "/icao-prefixes/:icaoPrefix/firs/:firIcao/flights?:status",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|icaoPrefix": "$!icaoPrefix",
"String|firIcao": "$!firIcao",
"String|status": "status"
}
},
"getFlightDetailByGUFI": {
"url": "/flights/:gufi",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|gufi": "$!gufi"
}
},
"getFlightDelayByGUFI": {
"url": "/flights/:gufi/delay",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|gufi": "$!gufi"
}
},
"getFlightsByTile": {
"url": "/tiles/3/:x/:y/flights",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"Number|xCoordinate": "$!x",
"Number|yCoordinate": "$!y"
}
},
"flightsByAerodromePair": {
"url": "/aerodromes/:originIcao/destinations/:destinationIcao/flights?:status",
"method": "GET",
"args": {
"credentials|userKey": "$user_key",
"String|originIcao": "$!originIcao",
"String|destinationIcao": "$!destinationIcao",
"String|status": "status"
}
}
}