-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAircraft-Asset-Scheduler.yaml
318 lines (318 loc) · 9.73 KB
/
Aircraft-Asset-Scheduler.yaml
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
---
components:
schemas:
FlightPlan:
description: "This event represents a flight plan to be filed with an ANSP"
type: "object"
title: "The Root Schema"
properties:
wakeTurbulenceCategory:
default: ""
examples:
- "H"
pattern: "^(.*)$"
type: "string"
title: "The Waketurbulencecategory Schema"
routeDefinition:
type: "object"
title: "The Routedefinition Schema"
properties:
initialLevel:
default: ""
examples:
- "String"
pattern: "^(.*)$"
type: "string"
title: "The Initiallevel Schema"
routeDescription:
type: "object"
title: "The Routedescription Schema"
properties:
point:
type: "object"
title: "The Point Schema"
properties:
refPoint:
type: "object"
title: "The Refpoint Schema"
properties:
reference:
default: ""
examples:
- "00"
pattern: "^(.*)$"
type: "string"
title: "The Reference Schema"
distance:
default: ""
examples:
- "0"
pattern: "^(.*)$"
type: "string"
title: "The Distance Schema"
bearing:
default: ""
examples:
- "0"
pattern: "^(.*)$"
type: "string"
title: "The Bearing Schema"
initialSpeed:
default: ""
examples:
- "0"
pattern: "^(.*)$"
type: "string"
title: "The Initialspeed Schema"
flightKey:
type: "object"
title: "The Flightkey Schema"
properties:
pod:
type: "object"
title: "The Pod Schema"
required:
- "iata"
properties:
iata:
default: ""
examples:
- "SLC"
pattern: "^(.*)$"
type: "string"
title: "The Iata Schema"
flightIdentifier:
type: "object"
title: "The Flightidentifier Schema"
properties:
flightOriginDate:
default: ""
examples:
- "2019-05-28"
pattern: "^(.*)$"
type: "string"
title: "The Flightorigindate Schema"
airlineCode:
type: "object"
title: "The Airlinecode Schema"
properties:
iata:
default: ""
examples:
- "FX"
pattern: "^(.*)$"
type: "string"
title: "The Iata Schema"
flightNumber:
default: ""
examples:
- "FX876"
pattern: "^(.*)$"
type: "string"
title: "The Flightnumber Schema"
aircraftIdentifier:
type: "object"
title: "The Aircraftidentifier Schema"
properties:
registrationMark:
default: ""
examples:
- "FE"
pattern: "^(.*)$"
type: "string"
title: "The Registrationmark Schema"
aircraftIdCode:
default: ""
examples:
- "N624FE"
pattern: "^(.*)$"
type: "string"
title: "The Aircraftidcode Schema"
totalEstimatedElapsedTime:
default: ""
examples:
- "120"
pattern: "^(.*)$"
type: "string"
title: "The Totalestimatedelapsedtime Schema"
eetsToLocations:
default: ""
examples:
- "a"
pattern: "^(.*)$"
type: "string"
title: "The Eetstolocations Schema"
messageType:
default: ""
examples:
- "CNL"
pattern: "^(.*)$"
type: "string"
title: "The Messagetype Schema"
etd:
default: ""
examples:
- "2019-05-28T09:30:47Z"
pattern: "^(.*)$"
type: "string"
title: "The Etd Schema"
aerodromeOfDestination:
type: "object"
title: "The Aerodromeofdestination Schema"
properties:
icaoId:
default: ""
examples:
- "KMEM"
pattern: "^(.*)$"
type: "string"
title: "The Icaoid Schema"
flightCategory:
default: ""
examples:
- "S"
pattern: "^(.*)$"
type: "string"
title: "The Flightcategory Schema"
aircraftEquipmentCode:
type: "object"
title: "The Aircraftequipmentcode Schema"
properties:
icaoId:
default: ""
examples:
- "MD11"
pattern: "^(.*)$"
type: "string"
title: "The Icaoid Schema"
estimatedOffBlockTime:
default: ""
examples:
- "2001-12-17T09:30:47Z"
pattern: "^(.*)$"
type: "string"
title: "The Estimatedoffblocktime Schema"
flightRules:
default: ""
examples:
- "I"
pattern: "^(.*)$"
type: "string"
title: "The Flightrules Schema"
aerodromeOfDeparture:
type: "object"
title: "The Aerodromeofdeparture Schema"
properties:
icaoId:
default: ""
examples:
- "KSLC"
pattern: "^(.*)$"
type: "string"
title: "The Icaoid Schema"
ExpressAircraftLoad:
description: "Fedex express packages grouped into a flight which must be flown\
\ by express"
type: "object"
title: "The Root Schema"
definitions: {}
properties:
truckID:
default: ""
examples:
- "jbfejbf"
pattern: "^(.*)$"
type: "string"
title: "The Truckid Schema"
destination:
default: ""
examples:
- "san diego"
pattern: "^(.*)$"
type: "string"
title: "The Destination Schema"
departure:
default: ""
examples:
- "ottawa"
pattern: "^(.*)$"
type: "string"
title: "The Departure Schema"
packages:
type: "array"
title: "The Packages Schema"
items:
type: "object"
title: "The Items Schema"
properties:
weight:
default: 0
examples:
- 10
type: "integer"
title: "The Weight Schema"
trackingNumber:
default: ""
examples:
- "ABCDEFG"
pattern: "^(.*)$"
type: "string"
title: "The Trackingnumber Schema"
dimensions:
type: "object"
title: "The Dimensions Schema"
properties:
width:
default: 0
examples:
- 5
type: "integer"
title: "The Width Schema"
height:
default: 0
examples:
- 10
type: "integer"
title: "The Height Schema"
messages:
ExpressLoadCreated:
headers: {}
payload:
$ref: "#/components/schemas/ExpressAircraftLoad"
name: "AcmeLogistics_ExpressLoadCreated"
description: "Represents a set of packages to be flown by a fedex aircraft"
title: "Acme-Logistics.ExpressLoadCreated"
FlightPlanFiled:
headers: {}
payload:
$ref: "#/components/schemas/FlightPlan"
name: "FlightPlanFiled"
description: "FlightPlan successfully filed with ANSP"
title: "FlightPlanFiled"
channels:
fedex/logistics/expressload/created/orgin/destination/daterequired:
subscribe:
message:
$ref: "#/components/messages/ExpressLoadCreated"
fedex/exp/aviation/ops/flightplan/filed/id:
publish:
message:
$ref: "#/components/messages/FlightPlanFiled"
asyncapi: "2.0.0-rc1"
id: "urn:qho6wzcekz"
info:
description: "consumes loads, maps to physical aircraft and files flight plans with\
\ ANSP"
title: "AircraftAssetScheduler"
version: "1"
servers:
url: vmr-mr8v6yiwieih.messaging.solace.cloud:20160
protocol: smf
description: Test broker
baseChannel:
variables:
port:
description: Secure connection (TLS) is available through port 8883.
default: '20160'
enum:
- '20160'