@volant-autonomy/via-sdk 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +67 -0
- package/dist/client.d.ts +7 -0
- package/dist/client.js +21 -0
- package/dist/composite.d.ts +150 -0
- package/dist/composite.js +92 -0
- package/dist/direct.d.ts +967 -0
- package/dist/direct.js +300 -0
- package/dist/docstringTransformer.d.ts +3 -0
- package/dist/docstringTransformer.js +189 -0
- package/dist/fetch.d.ts +123 -0
- package/dist/fetch.js +197 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +22 -0
- package/dist/types.d.ts +54 -0
- package/dist/types.js +19 -0
- package/dist/utils.d.ts +16 -0
- package/dist/utils.js +59 -0
- package/dist/volant-schema.d.ts +4000 -0
- package/dist/volant-schema.js +6 -0
- package/package.json +56 -0
|
@@ -0,0 +1,4000 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by openapi-typescript.
|
|
3
|
+
* Do not make direct changes to the file.
|
|
4
|
+
*/
|
|
5
|
+
export interface paths {
|
|
6
|
+
"/login": {
|
|
7
|
+
parameters: {
|
|
8
|
+
query?: never;
|
|
9
|
+
header?: never;
|
|
10
|
+
path?: never;
|
|
11
|
+
cookie?: never;
|
|
12
|
+
};
|
|
13
|
+
get?: never;
|
|
14
|
+
put?: never;
|
|
15
|
+
/**
|
|
16
|
+
* Retrieve an Authentication Token
|
|
17
|
+
* @description Retrieve a JSON Web Token as defined in RFC 7519 for authentication against all endpoints.
|
|
18
|
+
*/
|
|
19
|
+
post: operations["api_login_v1_login_post"];
|
|
20
|
+
delete?: never;
|
|
21
|
+
options?: never;
|
|
22
|
+
head?: never;
|
|
23
|
+
patch?: never;
|
|
24
|
+
trace?: never;
|
|
25
|
+
};
|
|
26
|
+
"/flightplans/": {
|
|
27
|
+
parameters: {
|
|
28
|
+
query?: never;
|
|
29
|
+
header?: never;
|
|
30
|
+
path?: never;
|
|
31
|
+
cookie?: never;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* List Flightplans
|
|
35
|
+
* @description List user's flightplans, including Flightplan ID and state.
|
|
36
|
+
* The most recent 20 flight plans are returned.
|
|
37
|
+
*/
|
|
38
|
+
get: operations["flightplan_list_v1_flightplans__get"];
|
|
39
|
+
put?: never;
|
|
40
|
+
/**
|
|
41
|
+
* Create a draft Flightplan
|
|
42
|
+
* @description Create a draft flightplan.
|
|
43
|
+
*/
|
|
44
|
+
post: operations["flightplan_create_v1_flightplans__post"];
|
|
45
|
+
delete?: never;
|
|
46
|
+
options?: never;
|
|
47
|
+
head?: never;
|
|
48
|
+
patch?: never;
|
|
49
|
+
trace?: never;
|
|
50
|
+
};
|
|
51
|
+
"/flightplans/{flightplan_id}": {
|
|
52
|
+
parameters: {
|
|
53
|
+
query?: never;
|
|
54
|
+
header?: never;
|
|
55
|
+
path?: never;
|
|
56
|
+
cookie?: never;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Retrieve a Flightplan
|
|
60
|
+
* @description Retrieve the specified flightplan
|
|
61
|
+
*/
|
|
62
|
+
get: operations["flightplan_single_v1_flightplans__flightplan_id__get"];
|
|
63
|
+
/**
|
|
64
|
+
* Modify a Flightplan
|
|
65
|
+
* @description Modify the specified flightplan. This is only permitted while the flightplan state is not
|
|
66
|
+
* `Closed`. If the flightplan is in state: `Accepted`, the flightplan will be subject to conflict
|
|
67
|
+
* checking.
|
|
68
|
+
*/
|
|
69
|
+
put: operations["flightplan_replace_v1_flightplans__flightplan_id__put"];
|
|
70
|
+
post?: never;
|
|
71
|
+
delete?: never;
|
|
72
|
+
options?: never;
|
|
73
|
+
head?: never;
|
|
74
|
+
patch?: never;
|
|
75
|
+
trace?: never;
|
|
76
|
+
};
|
|
77
|
+
"/flightplans/{flightplan_id}/waypoints_detail": {
|
|
78
|
+
parameters: {
|
|
79
|
+
query?: never;
|
|
80
|
+
header?: never;
|
|
81
|
+
path?: never;
|
|
82
|
+
cookie?: never;
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* Retrieve detailed Waypoints
|
|
86
|
+
* @description Retrieve detailed waypoints related to the specified flightplan
|
|
87
|
+
*/
|
|
88
|
+
get: operations["flightplan_waypoints_detail_v1_flightplans__flightplan_id__waypoints_detail_get"];
|
|
89
|
+
put?: never;
|
|
90
|
+
post?: never;
|
|
91
|
+
delete?: never;
|
|
92
|
+
options?: never;
|
|
93
|
+
head?: never;
|
|
94
|
+
patch?: never;
|
|
95
|
+
trace?: never;
|
|
96
|
+
};
|
|
97
|
+
"/flightplans/{flightplan_id}/statistics": {
|
|
98
|
+
parameters: {
|
|
99
|
+
query?: never;
|
|
100
|
+
header?: never;
|
|
101
|
+
path?: never;
|
|
102
|
+
cookie?: never;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Retrieve Flightplan Statistics
|
|
106
|
+
* @description Retrieve statistics for the specified flightplan, including the nominal time and cost.
|
|
107
|
+
*/
|
|
108
|
+
get: operations["flightplan_statistics_v1_flightplans__flightplan_id__statistics_get"];
|
|
109
|
+
put?: never;
|
|
110
|
+
post?: never;
|
|
111
|
+
delete?: never;
|
|
112
|
+
options?: never;
|
|
113
|
+
head?: never;
|
|
114
|
+
patch?: never;
|
|
115
|
+
trace?: never;
|
|
116
|
+
};
|
|
117
|
+
"/flightplans/{flightplan_id}/volumes": {
|
|
118
|
+
parameters: {
|
|
119
|
+
query?: never;
|
|
120
|
+
header?: never;
|
|
121
|
+
path?: never;
|
|
122
|
+
cookie?: never;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Retrieve Flightplan Operational Intent Volumes
|
|
126
|
+
* @description Retrieve Operational Intent Volumes for the specified flightplan
|
|
127
|
+
*
|
|
128
|
+
* Volumes wholly contain the operational intent while being as small as practical. Start and end
|
|
129
|
+
* times, as well as lower and upper altitudes, are required for each volume. The end time may not
|
|
130
|
+
* be in the past. Volumes are generated based on the `LateralParameters` of the flightplan about
|
|
131
|
+
* the mean flightpath as defined in each waypoint.
|
|
132
|
+
*/
|
|
133
|
+
get: operations["flightplan_volumes_v1_flightplans__flightplan_id__volumes_get"];
|
|
134
|
+
put?: never;
|
|
135
|
+
post?: never;
|
|
136
|
+
delete?: never;
|
|
137
|
+
options?: never;
|
|
138
|
+
head?: never;
|
|
139
|
+
patch?: never;
|
|
140
|
+
trace?: never;
|
|
141
|
+
};
|
|
142
|
+
"/flightplans/{flightplan_id}/conflicts": {
|
|
143
|
+
parameters: {
|
|
144
|
+
query?: never;
|
|
145
|
+
header?: never;
|
|
146
|
+
path?: never;
|
|
147
|
+
cookie?: never;
|
|
148
|
+
};
|
|
149
|
+
/**
|
|
150
|
+
* Retrieve Flightplan Conflicts
|
|
151
|
+
* @description Retrieve all the conflicts for the specified flightplan, categorised by their state.
|
|
152
|
+
*
|
|
153
|
+
* Flightplans of state `Closed` are ignored.
|
|
154
|
+
*
|
|
155
|
+
* Note that Flightplans which are in the category `Draft` will not prevent transitioning the
|
|
156
|
+
* specified flightplan in to the `Accepted` state and instead are intended as a warning.
|
|
157
|
+
* Flightplans in the `Accepted` state will prevent transition of the specified flightplan to
|
|
158
|
+
* `Accepted`.
|
|
159
|
+
*/
|
|
160
|
+
get: operations["flightplan_conflicts_v1_flightplans__flightplan_id__conflicts_get"];
|
|
161
|
+
put?: never;
|
|
162
|
+
post?: never;
|
|
163
|
+
delete?: never;
|
|
164
|
+
options?: never;
|
|
165
|
+
head?: never;
|
|
166
|
+
patch?: never;
|
|
167
|
+
trace?: never;
|
|
168
|
+
};
|
|
169
|
+
"/flightplans/{flightplan_id}/start_time_deconflict": {
|
|
170
|
+
parameters: {
|
|
171
|
+
query?: never;
|
|
172
|
+
header?: never;
|
|
173
|
+
path?: never;
|
|
174
|
+
cookie?: never;
|
|
175
|
+
};
|
|
176
|
+
/**
|
|
177
|
+
* Returns the inputted flightplan with an updated start time that does not conflict
|
|
178
|
+
* @description Get a new start time for a draft flightplan which will not conflict with any occupied airspace.
|
|
179
|
+
*
|
|
180
|
+
* The flightplan will be delayed up to 10 minutes after the original start time or 10 minutes from
|
|
181
|
+
* the specified start time if provided as a query parameter.
|
|
182
|
+
*/
|
|
183
|
+
get: operations["flightplan_deconflicted_start_time_v1_flightplans__flightplan_id__start_time_deconflict_get"];
|
|
184
|
+
put?: never;
|
|
185
|
+
post?: never;
|
|
186
|
+
delete?: never;
|
|
187
|
+
options?: never;
|
|
188
|
+
head?: never;
|
|
189
|
+
patch?: never;
|
|
190
|
+
trace?: never;
|
|
191
|
+
};
|
|
192
|
+
"/flightplans/{flightplan_id}/state": {
|
|
193
|
+
parameters: {
|
|
194
|
+
query?: never;
|
|
195
|
+
header?: never;
|
|
196
|
+
path?: never;
|
|
197
|
+
cookie?: never;
|
|
198
|
+
};
|
|
199
|
+
get?: never;
|
|
200
|
+
put?: never;
|
|
201
|
+
/**
|
|
202
|
+
* Change the state of a Flightplan
|
|
203
|
+
* @description Change the state of the specified flightplan
|
|
204
|
+
*/
|
|
205
|
+
post: operations["flightplan_state_v1_flightplans__flightplan_id__state_post"];
|
|
206
|
+
delete?: never;
|
|
207
|
+
options?: never;
|
|
208
|
+
head?: never;
|
|
209
|
+
patch?: never;
|
|
210
|
+
trace?: never;
|
|
211
|
+
};
|
|
212
|
+
"/flightplans/{flightplan_id}/content": {
|
|
213
|
+
parameters: {
|
|
214
|
+
query?: never;
|
|
215
|
+
header?: never;
|
|
216
|
+
path?: never;
|
|
217
|
+
cookie?: never;
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Retrieve a formatted version of a Flightplan
|
|
221
|
+
* @description Retrieve a formatted version of the specified flightplan to download as a file
|
|
222
|
+
*/
|
|
223
|
+
get: operations["flightplan_content_download_v1_flightplans__flightplan_id__content_get"];
|
|
224
|
+
put?: never;
|
|
225
|
+
post?: never;
|
|
226
|
+
delete?: never;
|
|
227
|
+
options?: never;
|
|
228
|
+
head?: never;
|
|
229
|
+
patch?: never;
|
|
230
|
+
trace?: never;
|
|
231
|
+
};
|
|
232
|
+
"/airspace_constraints/": {
|
|
233
|
+
parameters: {
|
|
234
|
+
query?: never;
|
|
235
|
+
header?: never;
|
|
236
|
+
path?: never;
|
|
237
|
+
cookie?: never;
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* List Airspace Constraints
|
|
241
|
+
* @description List Airspace Constraints
|
|
242
|
+
*/
|
|
243
|
+
get: operations["airspace_constraint_list_v1_airspace_constraints__get"];
|
|
244
|
+
put?: never;
|
|
245
|
+
/**
|
|
246
|
+
* Create an Airspace Constraint
|
|
247
|
+
* @description Create an airspace constraint.
|
|
248
|
+
*/
|
|
249
|
+
post: operations["airspace_constraint_create_v1_airspace_constraints__post"];
|
|
250
|
+
delete?: never;
|
|
251
|
+
options?: never;
|
|
252
|
+
head?: never;
|
|
253
|
+
patch?: never;
|
|
254
|
+
trace?: never;
|
|
255
|
+
};
|
|
256
|
+
"/airspace_constraints/{airspace_constraint_id}": {
|
|
257
|
+
parameters: {
|
|
258
|
+
query?: never;
|
|
259
|
+
header?: never;
|
|
260
|
+
path?: never;
|
|
261
|
+
cookie?: never;
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* Retrieve an Airspace Constraint
|
|
265
|
+
* @description Retrieve the specified Airspace Constraint
|
|
266
|
+
*/
|
|
267
|
+
get: operations["airspace_constraint_single_v1_airspace_constraints__airspace_constraint_id__get"];
|
|
268
|
+
/**
|
|
269
|
+
* Modify an Airspace Constraint
|
|
270
|
+
* @description Update an airspace constraint.
|
|
271
|
+
*/
|
|
272
|
+
put: operations["airspace_constraint_update_v1_airspace_constraints__airspace_constraint_id__put"];
|
|
273
|
+
post?: never;
|
|
274
|
+
delete?: never;
|
|
275
|
+
options?: never;
|
|
276
|
+
head?: never;
|
|
277
|
+
patch?: never;
|
|
278
|
+
trace?: never;
|
|
279
|
+
};
|
|
280
|
+
"/airspace_constraints/{airspace_constraints_id}/state": {
|
|
281
|
+
parameters: {
|
|
282
|
+
query?: never;
|
|
283
|
+
header?: never;
|
|
284
|
+
path?: never;
|
|
285
|
+
cookie?: never;
|
|
286
|
+
};
|
|
287
|
+
get?: never;
|
|
288
|
+
put?: never;
|
|
289
|
+
/**
|
|
290
|
+
* Change the state of a Airspace Constraint
|
|
291
|
+
* @description Change the state of the specified Airspace Constraint.
|
|
292
|
+
*/
|
|
293
|
+
post: operations["airspace_constraints_state_v1_airspace_constraints__airspace_constraints_id__state_post"];
|
|
294
|
+
delete?: never;
|
|
295
|
+
options?: never;
|
|
296
|
+
head?: never;
|
|
297
|
+
patch?: never;
|
|
298
|
+
trace?: never;
|
|
299
|
+
};
|
|
300
|
+
"/pathing_tasks/": {
|
|
301
|
+
parameters: {
|
|
302
|
+
query?: never;
|
|
303
|
+
header?: never;
|
|
304
|
+
path?: never;
|
|
305
|
+
cookie?: never;
|
|
306
|
+
};
|
|
307
|
+
get?: never;
|
|
308
|
+
put?: never;
|
|
309
|
+
/**
|
|
310
|
+
* Create a Pathing Task
|
|
311
|
+
* @description Create a pathing task that is added to the queue.
|
|
312
|
+
*
|
|
313
|
+
* Generates a risk-minimised route that travels to all checkpoints supplied. The returned task ID
|
|
314
|
+
* can be used to get the status and result.
|
|
315
|
+
*/
|
|
316
|
+
post: operations["create_pathing_task_v1_pathing_tasks__post"];
|
|
317
|
+
delete?: never;
|
|
318
|
+
options?: never;
|
|
319
|
+
head?: never;
|
|
320
|
+
patch?: never;
|
|
321
|
+
trace?: never;
|
|
322
|
+
};
|
|
323
|
+
"/pathing_tasks/{pathing_task_id}": {
|
|
324
|
+
parameters: {
|
|
325
|
+
query?: never;
|
|
326
|
+
header?: never;
|
|
327
|
+
path?: never;
|
|
328
|
+
cookie?: never;
|
|
329
|
+
};
|
|
330
|
+
/**
|
|
331
|
+
* Retrieve a Pathing Task
|
|
332
|
+
* @description Retrieve the specified Pathing Task.
|
|
333
|
+
*
|
|
334
|
+
* Provides the status of a pathing task. If the task is finished then it will also return the
|
|
335
|
+
* risk minimal and deconflicted route for the flightplan.
|
|
336
|
+
*/
|
|
337
|
+
get: operations["get_pathing_task_v1_pathing_tasks__pathing_task_id__get"];
|
|
338
|
+
put?: never;
|
|
339
|
+
post?: never;
|
|
340
|
+
delete?: never;
|
|
341
|
+
options?: never;
|
|
342
|
+
head?: never;
|
|
343
|
+
patch?: never;
|
|
344
|
+
trace?: never;
|
|
345
|
+
};
|
|
346
|
+
"/aircraft/": {
|
|
347
|
+
parameters: {
|
|
348
|
+
query?: never;
|
|
349
|
+
header?: never;
|
|
350
|
+
path?: never;
|
|
351
|
+
cookie?: never;
|
|
352
|
+
};
|
|
353
|
+
/**
|
|
354
|
+
* List available aircraft
|
|
355
|
+
* @description List available aircraft.
|
|
356
|
+
*/
|
|
357
|
+
get: operations["aircraft_list_v1_aircraft__get"];
|
|
358
|
+
put?: never;
|
|
359
|
+
post?: never;
|
|
360
|
+
delete?: never;
|
|
361
|
+
options?: never;
|
|
362
|
+
head?: never;
|
|
363
|
+
patch?: never;
|
|
364
|
+
trace?: never;
|
|
365
|
+
};
|
|
366
|
+
"/aircraft/{aircraft_id}": {
|
|
367
|
+
parameters: {
|
|
368
|
+
query?: never;
|
|
369
|
+
header?: never;
|
|
370
|
+
path?: never;
|
|
371
|
+
cookie?: never;
|
|
372
|
+
};
|
|
373
|
+
/**
|
|
374
|
+
* Retrieve the specified aircraft
|
|
375
|
+
* @description Retrieve the specified aircraft.
|
|
376
|
+
*/
|
|
377
|
+
get: operations["aircraft_single_v1_aircraft__aircraft_id__get"];
|
|
378
|
+
put?: never;
|
|
379
|
+
post?: never;
|
|
380
|
+
delete?: never;
|
|
381
|
+
options?: never;
|
|
382
|
+
head?: never;
|
|
383
|
+
patch?: never;
|
|
384
|
+
trace?: never;
|
|
385
|
+
};
|
|
386
|
+
"/charts/": {
|
|
387
|
+
parameters: {
|
|
388
|
+
query?: never;
|
|
389
|
+
header?: never;
|
|
390
|
+
path?: never;
|
|
391
|
+
cookie?: never;
|
|
392
|
+
};
|
|
393
|
+
/**
|
|
394
|
+
* List all available Charts
|
|
395
|
+
* @description List user's charts, including chart id and bounds.
|
|
396
|
+
*/
|
|
397
|
+
get: operations["chart_list_v1_charts__get"];
|
|
398
|
+
put?: never;
|
|
399
|
+
post?: never;
|
|
400
|
+
delete?: never;
|
|
401
|
+
options?: never;
|
|
402
|
+
head?: never;
|
|
403
|
+
patch?: never;
|
|
404
|
+
trace?: never;
|
|
405
|
+
};
|
|
406
|
+
"/charts/{chart_id}": {
|
|
407
|
+
parameters: {
|
|
408
|
+
query?: never;
|
|
409
|
+
header?: never;
|
|
410
|
+
path?: never;
|
|
411
|
+
cookie?: never;
|
|
412
|
+
};
|
|
413
|
+
/**
|
|
414
|
+
* Retrieve a specific Chart
|
|
415
|
+
* @description Retrieve a specified Chart
|
|
416
|
+
*/
|
|
417
|
+
get: operations["chart_single_v1_charts__chart_id__get"];
|
|
418
|
+
put?: never;
|
|
419
|
+
post?: never;
|
|
420
|
+
delete?: never;
|
|
421
|
+
options?: never;
|
|
422
|
+
head?: never;
|
|
423
|
+
patch?: never;
|
|
424
|
+
trace?: never;
|
|
425
|
+
};
|
|
426
|
+
"/risk_assessment/sora/v2.5/sail": {
|
|
427
|
+
parameters: {
|
|
428
|
+
query?: never;
|
|
429
|
+
header?: never;
|
|
430
|
+
path?: never;
|
|
431
|
+
cookie?: never;
|
|
432
|
+
};
|
|
433
|
+
/**
|
|
434
|
+
* Calculate SAIL
|
|
435
|
+
* @description Calculate Specific Assurance Integrity Level (SAIL).
|
|
436
|
+
*/
|
|
437
|
+
get: operations["sora_sail_score_v1_risk_assessment_sora_v2_5_sail_get"];
|
|
438
|
+
put?: never;
|
|
439
|
+
post?: never;
|
|
440
|
+
delete?: never;
|
|
441
|
+
options?: never;
|
|
442
|
+
head?: never;
|
|
443
|
+
patch?: never;
|
|
444
|
+
trace?: never;
|
|
445
|
+
};
|
|
446
|
+
"/risk_assessment/sora/v2.5/air_risk_classifications": {
|
|
447
|
+
parameters: {
|
|
448
|
+
query?: never;
|
|
449
|
+
header?: never;
|
|
450
|
+
path?: never;
|
|
451
|
+
cookie?: never;
|
|
452
|
+
};
|
|
453
|
+
/**
|
|
454
|
+
* List available ARCs
|
|
455
|
+
* @description List available ARCs.
|
|
456
|
+
*/
|
|
457
|
+
get: operations["ARCs_list_v1_risk_assessment_sora_v2_5_air_risk_classifications_get"];
|
|
458
|
+
put?: never;
|
|
459
|
+
post?: never;
|
|
460
|
+
delete?: never;
|
|
461
|
+
options?: never;
|
|
462
|
+
head?: never;
|
|
463
|
+
patch?: never;
|
|
464
|
+
trace?: never;
|
|
465
|
+
};
|
|
466
|
+
"/risk_assessment/sora/v2.5/air_risk_classifications/{arc_id}": {
|
|
467
|
+
parameters: {
|
|
468
|
+
query?: never;
|
|
469
|
+
header?: never;
|
|
470
|
+
path?: never;
|
|
471
|
+
cookie?: never;
|
|
472
|
+
};
|
|
473
|
+
/**
|
|
474
|
+
* Retrieve the specified Air Risk Classification
|
|
475
|
+
* @description Retrieve the specified Air Risk Classification.
|
|
476
|
+
*/
|
|
477
|
+
get: operations["arc_single_v1_risk_assessment_sora_v2_5_air_risk_classifications__arc_id__get"];
|
|
478
|
+
put?: never;
|
|
479
|
+
post?: never;
|
|
480
|
+
delete?: never;
|
|
481
|
+
options?: never;
|
|
482
|
+
head?: never;
|
|
483
|
+
patch?: never;
|
|
484
|
+
trace?: never;
|
|
485
|
+
};
|
|
486
|
+
"/risk_assessment/sora/v2.5/report": {
|
|
487
|
+
parameters: {
|
|
488
|
+
query?: never;
|
|
489
|
+
header?: never;
|
|
490
|
+
path?: never;
|
|
491
|
+
cookie?: never;
|
|
492
|
+
};
|
|
493
|
+
get?: never;
|
|
494
|
+
put?: never;
|
|
495
|
+
/**
|
|
496
|
+
* Generate a report containing derived SORA information used for regulatory evidence
|
|
497
|
+
* @description Generate a report containing derived SORA information used for regulatory evidence
|
|
498
|
+
*/
|
|
499
|
+
post: operations["sora_report_v1_risk_assessment_sora_v2_5_report_post"];
|
|
500
|
+
delete?: never;
|
|
501
|
+
options?: never;
|
|
502
|
+
head?: never;
|
|
503
|
+
patch?: never;
|
|
504
|
+
trace?: never;
|
|
505
|
+
};
|
|
506
|
+
"/risk_assessment/sora/v2.5/semantic_model_volumes": {
|
|
507
|
+
parameters: {
|
|
508
|
+
query?: never;
|
|
509
|
+
header?: never;
|
|
510
|
+
path?: never;
|
|
511
|
+
cookie?: never;
|
|
512
|
+
};
|
|
513
|
+
get?: never;
|
|
514
|
+
put?: never;
|
|
515
|
+
/**
|
|
516
|
+
* Generate volumes that correspond to the SORA Semantic Model
|
|
517
|
+
* @description Generate volumes that correspond to the SORA Semantic Model
|
|
518
|
+
*/
|
|
519
|
+
post: operations["semantic_model_volumes_v1_risk_assessment_sora_v2_5_semantic_model_volumes_post"];
|
|
520
|
+
delete?: never;
|
|
521
|
+
options?: never;
|
|
522
|
+
head?: never;
|
|
523
|
+
patch?: never;
|
|
524
|
+
trace?: never;
|
|
525
|
+
};
|
|
526
|
+
"/risk_assessment/sora/classifications": {
|
|
527
|
+
parameters: {
|
|
528
|
+
query?: never;
|
|
529
|
+
header?: never;
|
|
530
|
+
path?: never;
|
|
531
|
+
cookie?: never;
|
|
532
|
+
};
|
|
533
|
+
get?: never;
|
|
534
|
+
put?: never;
|
|
535
|
+
/**
|
|
536
|
+
* Create a SORA Classification
|
|
537
|
+
* @description Create a SORA Classification
|
|
538
|
+
*/
|
|
539
|
+
post: operations["create_sora_classification_v1_risk_assessment_sora_classifications_post"];
|
|
540
|
+
delete?: never;
|
|
541
|
+
options?: never;
|
|
542
|
+
head?: never;
|
|
543
|
+
patch?: never;
|
|
544
|
+
trace?: never;
|
|
545
|
+
};
|
|
546
|
+
"/risk_assessment/sora/classifications/{classification_id}": {
|
|
547
|
+
parameters: {
|
|
548
|
+
query?: never;
|
|
549
|
+
header?: never;
|
|
550
|
+
path?: never;
|
|
551
|
+
cookie?: never;
|
|
552
|
+
};
|
|
553
|
+
/**
|
|
554
|
+
* Get a SORA Classification
|
|
555
|
+
* @description Get a SORA Classification
|
|
556
|
+
*/
|
|
557
|
+
get: operations["get_sora_classification_v1_risk_assessment_sora_classifications__classification_id__get"];
|
|
558
|
+
put?: never;
|
|
559
|
+
post?: never;
|
|
560
|
+
delete?: never;
|
|
561
|
+
options?: never;
|
|
562
|
+
head?: never;
|
|
563
|
+
patch?: never;
|
|
564
|
+
trace?: never;
|
|
565
|
+
};
|
|
566
|
+
"/flight_patterns/raster": {
|
|
567
|
+
parameters: {
|
|
568
|
+
query?: never;
|
|
569
|
+
header?: never;
|
|
570
|
+
path?: never;
|
|
571
|
+
cookie?: never;
|
|
572
|
+
};
|
|
573
|
+
get?: never;
|
|
574
|
+
put?: never;
|
|
575
|
+
/**
|
|
576
|
+
* Generate a raster pattern
|
|
577
|
+
* @description Generate a raster pattern that covers a specified search polygon
|
|
578
|
+
*/
|
|
579
|
+
post: operations["generate_raster_v1_flight_patterns_raster_post"];
|
|
580
|
+
delete?: never;
|
|
581
|
+
options?: never;
|
|
582
|
+
head?: never;
|
|
583
|
+
patch?: never;
|
|
584
|
+
trace?: never;
|
|
585
|
+
};
|
|
586
|
+
}
|
|
587
|
+
export type webhooks = Record<string, never>;
|
|
588
|
+
export interface components {
|
|
589
|
+
schemas: {
|
|
590
|
+
/**
|
|
591
|
+
* ARC
|
|
592
|
+
* @enum {string}
|
|
593
|
+
*/
|
|
594
|
+
ARC: "disabled" | "arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-b2" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-c5" | "arc-c6" | "arc-c7" | "arc-d1" | "arc-d2" | "arc-d3" | "arc-d4";
|
|
595
|
+
/** AircraftAttributes */
|
|
596
|
+
AircraftAttributes: {
|
|
597
|
+
/**
|
|
598
|
+
* Aircraft Name
|
|
599
|
+
* @description Human readable name for an aircraft.
|
|
600
|
+
*/
|
|
601
|
+
name: string;
|
|
602
|
+
/**
|
|
603
|
+
* Characteristic Dimension
|
|
604
|
+
* @description Characteristic dimension refers to either the Wingspan for fixed wing aircraft, Blade diameter for rotorcraft, or Maximum dimension for multicopters. You can find more info at `https://uas.gov.ge/dashboard/pdf/SORA%20methodology%20SAIL%20Step%209.pdf` section 2.3.1b
|
|
605
|
+
*/
|
|
606
|
+
characteristic_dimension: number;
|
|
607
|
+
/**
|
|
608
|
+
* Max Cruise Speed
|
|
609
|
+
* @description Max cruise speed of the aircraft in Metres/second
|
|
610
|
+
*/
|
|
611
|
+
max_cruise_speed: number;
|
|
612
|
+
};
|
|
613
|
+
/** AircraftResponse */
|
|
614
|
+
AircraftResponse: {
|
|
615
|
+
/**
|
|
616
|
+
* Aircraft ID
|
|
617
|
+
* @description Unique identifier for an aircraft.
|
|
618
|
+
*/
|
|
619
|
+
id: string;
|
|
620
|
+
/**
|
|
621
|
+
* Type
|
|
622
|
+
* @default aircraft
|
|
623
|
+
* @constant
|
|
624
|
+
* @enum {string}
|
|
625
|
+
*/
|
|
626
|
+
type?: "aircraft";
|
|
627
|
+
attributes: components["schemas"]["AircraftAttributes"];
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* AirspaceConstraint
|
|
631
|
+
* @description Common attributes for creating, updating and reading Airspace Constraints
|
|
632
|
+
*/
|
|
633
|
+
"AirspaceConstraint-Input": {
|
|
634
|
+
/**
|
|
635
|
+
* Chart ID
|
|
636
|
+
* @description Unique identifier for a chart.
|
|
637
|
+
*/
|
|
638
|
+
chart_id: string;
|
|
639
|
+
/**
|
|
640
|
+
* Volumes
|
|
641
|
+
* @description Start and end times, as well as lower and upper altitudes, are required for each volume. The end time may not be in the past. At least one volume must be provided.
|
|
642
|
+
*/
|
|
643
|
+
volumes: components["schemas"]["Volume4D-Input"][];
|
|
644
|
+
};
|
|
645
|
+
/**
|
|
646
|
+
* AirspaceConstraint
|
|
647
|
+
* @description Common attributes for creating, updating and reading Airspace Constraints
|
|
648
|
+
*/
|
|
649
|
+
"AirspaceConstraint-Output": {
|
|
650
|
+
/**
|
|
651
|
+
* Chart ID
|
|
652
|
+
* @description Unique identifier for a chart.
|
|
653
|
+
*/
|
|
654
|
+
chart_id: string;
|
|
655
|
+
/**
|
|
656
|
+
* Volumes
|
|
657
|
+
* @description Start and end times, as well as lower and upper altitudes, are required for each volume. The end time may not be in the past. At least one volume must be provided.
|
|
658
|
+
*/
|
|
659
|
+
volumes: components["schemas"]["Volume4D-Output"][];
|
|
660
|
+
};
|
|
661
|
+
/**
|
|
662
|
+
* AirspaceConstraintConflictResponse
|
|
663
|
+
* @description Summary of a Conflicting Airspace Constraint Resource.
|
|
664
|
+
*/
|
|
665
|
+
AirspaceConstraintConflictResponse: {
|
|
666
|
+
/**
|
|
667
|
+
* Airspace Constraint ID
|
|
668
|
+
* Format: uuid
|
|
669
|
+
* @description Unique identifier of the Airspace Constraint.
|
|
670
|
+
*/
|
|
671
|
+
id: string;
|
|
672
|
+
/**
|
|
673
|
+
* Type
|
|
674
|
+
* @default airspace_constraint
|
|
675
|
+
* @constant
|
|
676
|
+
* @enum {string}
|
|
677
|
+
*/
|
|
678
|
+
type?: "airspace_constraint";
|
|
679
|
+
meta: components["schemas"]["AirspaceConstraintMeta"];
|
|
680
|
+
};
|
|
681
|
+
/** AirspaceConstraintMeta */
|
|
682
|
+
AirspaceConstraintMeta: {
|
|
683
|
+
/** @description State of an airspace constraint.
|
|
684
|
+
* - 'Accepted' Airspace constraint is validated and is registered as an accepted airspace
|
|
685
|
+
* constraint in the database. Subsequent flight plans will be deconflicted against the
|
|
686
|
+
* volumes associated with this airspace constraint.
|
|
687
|
+
*
|
|
688
|
+
* - 'Closed' Airspace constraint is no longer valid and cannot be modified or submitted for
|
|
689
|
+
* accepted state.
|
|
690
|
+
* */
|
|
691
|
+
state: components["schemas"]["AirspaceConstraintStateBusiness"];
|
|
692
|
+
};
|
|
693
|
+
/** AirspaceConstraintResponse */
|
|
694
|
+
AirspaceConstraintResponse: {
|
|
695
|
+
/**
|
|
696
|
+
* Airspace Constraint ID
|
|
697
|
+
* Format: uuid
|
|
698
|
+
* @description Unique identifier of the Airspace Constraint.
|
|
699
|
+
*/
|
|
700
|
+
id: string;
|
|
701
|
+
/**
|
|
702
|
+
* Type
|
|
703
|
+
* @default airspace_constraint
|
|
704
|
+
* @constant
|
|
705
|
+
* @enum {string}
|
|
706
|
+
*/
|
|
707
|
+
type?: "airspace_constraint";
|
|
708
|
+
meta: components["schemas"]["AirspaceConstraintMeta"];
|
|
709
|
+
attributes: components["schemas"]["AirspaceConstraint-Output"];
|
|
710
|
+
};
|
|
711
|
+
/**
|
|
712
|
+
* AirspaceConstraintStateBusiness
|
|
713
|
+
* @enum {string}
|
|
714
|
+
*/
|
|
715
|
+
AirspaceConstraintStateBusiness: "Accepted" | "Closed";
|
|
716
|
+
/** AirspaceConstraintStateRequest */
|
|
717
|
+
AirspaceConstraintStateRequest: {
|
|
718
|
+
/** @description State of an airspace constraint.
|
|
719
|
+
* - 'Accepted' Airspace constraint is validated and is registered as an accepted airspace
|
|
720
|
+
* constraint in the database. Subsequent flight plans will be deconflicted against the
|
|
721
|
+
* volumes associated with this airspace constraint.
|
|
722
|
+
*
|
|
723
|
+
* - 'Closed' Airspace constraint is no longer valid and cannot be modified or submitted for
|
|
724
|
+
* accepted state.
|
|
725
|
+
* */
|
|
726
|
+
state: components["schemas"]["AirspaceConstraintStateBusiness"];
|
|
727
|
+
};
|
|
728
|
+
/**
|
|
729
|
+
* AirspaceRestrictionState
|
|
730
|
+
* @enum {string}
|
|
731
|
+
*/
|
|
732
|
+
AirspaceRestrictionState: "Accepted" | "Closed" | "Draft" | "Pending";
|
|
733
|
+
/** AoiBounding */
|
|
734
|
+
AoiBounding: {
|
|
735
|
+
/**
|
|
736
|
+
* Min Lon
|
|
737
|
+
* @description Degrees of longitude east of the Prime Meridian, with reference to the WGS84 ellipsoid.
|
|
738
|
+
*/
|
|
739
|
+
min_lon: number;
|
|
740
|
+
/**
|
|
741
|
+
* Min Lat
|
|
742
|
+
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
743
|
+
*/
|
|
744
|
+
min_lat: number;
|
|
745
|
+
/**
|
|
746
|
+
* Max Lon
|
|
747
|
+
* @description Degrees of longitude east of the Prime Meridian, with reference to the WGS84 ellipsoid.
|
|
748
|
+
*/
|
|
749
|
+
max_lon: number;
|
|
750
|
+
/**
|
|
751
|
+
* Max Lat
|
|
752
|
+
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
753
|
+
*/
|
|
754
|
+
max_lat: number;
|
|
755
|
+
};
|
|
756
|
+
/** ArcResponse */
|
|
757
|
+
ArcResponse: {
|
|
758
|
+
/**
|
|
759
|
+
* Residual Air Risk Class (ARC)
|
|
760
|
+
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
761
|
+
*
|
|
762
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
763
|
+
*
|
|
764
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
765
|
+
*
|
|
766
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
767
|
+
*
|
|
768
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
769
|
+
*
|
|
770
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
771
|
+
*
|
|
772
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
773
|
+
*
|
|
774
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
775
|
+
*
|
|
776
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
777
|
+
*
|
|
778
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
779
|
+
*
|
|
780
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
781
|
+
*
|
|
782
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
783
|
+
*
|
|
784
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
785
|
+
*
|
|
786
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
787
|
+
*
|
|
788
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
789
|
+
*
|
|
790
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
791
|
+
*
|
|
792
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
793
|
+
*
|
|
794
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
795
|
+
*
|
|
796
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
797
|
+
*
|
|
798
|
+
*/
|
|
799
|
+
id: components["schemas"]["ARC"];
|
|
800
|
+
/**
|
|
801
|
+
* ARC display name
|
|
802
|
+
* @description ARC sub-category display name
|
|
803
|
+
*/
|
|
804
|
+
name: string;
|
|
805
|
+
/** Implemented */
|
|
806
|
+
implemented: boolean;
|
|
807
|
+
};
|
|
808
|
+
/** ChartAttributes */
|
|
809
|
+
ChartAttributes: {
|
|
810
|
+
aoi_bounding: components["schemas"]["AoiBounding"];
|
|
811
|
+
/**
|
|
812
|
+
* Bounding Polygon
|
|
813
|
+
* @description List of WGS84 coordinates that defines the corners of the Chart
|
|
814
|
+
*/
|
|
815
|
+
bounding_polygon: components["schemas"]["Wgs84Point"][];
|
|
816
|
+
data_sources: components["schemas"]["DataSources"];
|
|
817
|
+
};
|
|
818
|
+
/** ChartResponse */
|
|
819
|
+
ChartResponse: {
|
|
820
|
+
/** Id */
|
|
821
|
+
id: string;
|
|
822
|
+
/**
|
|
823
|
+
* Type
|
|
824
|
+
* @default chart
|
|
825
|
+
* @constant
|
|
826
|
+
* @enum {string}
|
|
827
|
+
*/
|
|
828
|
+
type?: "chart";
|
|
829
|
+
attributes: components["schemas"]["ChartAttributes"];
|
|
830
|
+
};
|
|
831
|
+
/**
|
|
832
|
+
* DataSources
|
|
833
|
+
* @description Available data sources for the chart
|
|
834
|
+
*/
|
|
835
|
+
DataSources: {
|
|
836
|
+
/** Population Density */
|
|
837
|
+
population_density: components["schemas"]["PopulationSource"][];
|
|
838
|
+
};
|
|
839
|
+
/**
|
|
840
|
+
* FinalGRC
|
|
841
|
+
* @enum {integer}
|
|
842
|
+
*/
|
|
843
|
+
FinalGRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
844
|
+
/** FlightParameters */
|
|
845
|
+
FlightParameters: {
|
|
846
|
+
/**
|
|
847
|
+
* Airspeed
|
|
848
|
+
* @description Nominal aircraft airspeed in metres per second.
|
|
849
|
+
*/
|
|
850
|
+
airspeed: number;
|
|
851
|
+
/**
|
|
852
|
+
* Airspeed Error
|
|
853
|
+
* @description Deviation from nominal aircraft `airspeed`, assumed to be symmetrical about the nominal value. Cannot be larger than `airspeed` and must not cause the lower bound of airspeed to be less than the wind speed.
|
|
854
|
+
* @default 0
|
|
855
|
+
*/
|
|
856
|
+
airspeed_error?: number;
|
|
857
|
+
vertical: components["schemas"]["VerticalParameters"];
|
|
858
|
+
lateral: components["schemas"]["LateralParameters"];
|
|
859
|
+
};
|
|
860
|
+
/**
|
|
861
|
+
* Flightplan
|
|
862
|
+
* @description Common attributes for a flightplan.
|
|
863
|
+
*/
|
|
864
|
+
"Flightplan-Input": {
|
|
865
|
+
/**
|
|
866
|
+
* Chart ID
|
|
867
|
+
* @description Unique identifier for a chart.
|
|
868
|
+
*/
|
|
869
|
+
chart_id: string;
|
|
870
|
+
/**
|
|
871
|
+
* Aircraft ID
|
|
872
|
+
* @description Unique identifier for an aircraft.
|
|
873
|
+
*/
|
|
874
|
+
aircraft_id: string;
|
|
875
|
+
/** Sora Classification Id */
|
|
876
|
+
sora_classification_id?: string | null;
|
|
877
|
+
/**
|
|
878
|
+
* Time Start
|
|
879
|
+
* Format: date-time
|
|
880
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
881
|
+
*/
|
|
882
|
+
time_start: string;
|
|
883
|
+
/**
|
|
884
|
+
* Tse Temporal
|
|
885
|
+
* @description Total system error in the time dimension, in seconds. Includes error due to uncertainty in take-off time, speed, and operational parameters. Defined as the 2-sigma/95% error limit. For example, if the tse_temporal is 300 s then on average an aircraft should be less than 5 minutes ahead or behind schedule for at least 95% of its route.
|
|
886
|
+
*/
|
|
887
|
+
tse_temporal: number;
|
|
888
|
+
/**
|
|
889
|
+
* Waypoints
|
|
890
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
891
|
+
*/
|
|
892
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
893
|
+
/**
|
|
894
|
+
* Permitted Airspace Constraints
|
|
895
|
+
* @description Airspace Constraints that are permitted to be operated within. All 4D Volumes associated with these Airspace Constraints will not be deconflicted with the Flightplan. All Airspace Constraints must be in the state: `Accepted`.
|
|
896
|
+
* @default []
|
|
897
|
+
*/
|
|
898
|
+
permitted_airspace_constraint_ids?: string[];
|
|
899
|
+
/** @default {} */
|
|
900
|
+
volume_settings?: components["schemas"]["VolumeSettings"];
|
|
901
|
+
};
|
|
902
|
+
/**
|
|
903
|
+
* Flightplan
|
|
904
|
+
* @description Common attributes for a flightplan.
|
|
905
|
+
*/
|
|
906
|
+
"Flightplan-Output": {
|
|
907
|
+
/**
|
|
908
|
+
* Chart ID
|
|
909
|
+
* @description Unique identifier for a chart.
|
|
910
|
+
*/
|
|
911
|
+
chart_id: string;
|
|
912
|
+
/**
|
|
913
|
+
* Aircraft ID
|
|
914
|
+
* @description Unique identifier for an aircraft.
|
|
915
|
+
*/
|
|
916
|
+
aircraft_id: string;
|
|
917
|
+
/** Sora Classification Id */
|
|
918
|
+
sora_classification_id?: string | null;
|
|
919
|
+
/**
|
|
920
|
+
* Time Start
|
|
921
|
+
* Format: date-time
|
|
922
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
923
|
+
*/
|
|
924
|
+
time_start: string;
|
|
925
|
+
/**
|
|
926
|
+
* Tse Temporal
|
|
927
|
+
* @description Total system error in the time dimension, in seconds. Includes error due to uncertainty in take-off time, speed, and operational parameters. Defined as the 2-sigma/95% error limit. For example, if the tse_temporal is 300 s then on average an aircraft should be less than 5 minutes ahead or behind schedule for at least 95% of its route.
|
|
928
|
+
*/
|
|
929
|
+
tse_temporal: number;
|
|
930
|
+
/**
|
|
931
|
+
* Waypoints
|
|
932
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
933
|
+
*/
|
|
934
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
|
|
935
|
+
/**
|
|
936
|
+
* Permitted Airspace Constraints
|
|
937
|
+
* @description Airspace Constraints that are permitted to be operated within. All 4D Volumes associated with these Airspace Constraints will not be deconflicted with the Flightplan. All Airspace Constraints must be in the state: `Accepted`.
|
|
938
|
+
* @default []
|
|
939
|
+
*/
|
|
940
|
+
permitted_airspace_constraint_ids?: string[];
|
|
941
|
+
/** @default {} */
|
|
942
|
+
volume_settings?: components["schemas"]["VolumeSettings"];
|
|
943
|
+
};
|
|
944
|
+
/**
|
|
945
|
+
* FlightplanConflictResponse
|
|
946
|
+
* @description Summary of a Conflicting Flightplan Resource.
|
|
947
|
+
*/
|
|
948
|
+
FlightplanConflictResponse: {
|
|
949
|
+
/**
|
|
950
|
+
* Flightplan ID
|
|
951
|
+
* Format: uuid
|
|
952
|
+
* @description Unique identifier of the flightplan.
|
|
953
|
+
*/
|
|
954
|
+
id: string;
|
|
955
|
+
/**
|
|
956
|
+
* Type
|
|
957
|
+
* @default flightplan
|
|
958
|
+
* @constant
|
|
959
|
+
* @enum {string}
|
|
960
|
+
*/
|
|
961
|
+
type?: "flightplan";
|
|
962
|
+
meta: components["schemas"]["FlightplanMeta"];
|
|
963
|
+
};
|
|
964
|
+
/** FlightplanMeta */
|
|
965
|
+
FlightplanMeta: {
|
|
966
|
+
/** @description State of a flightplan.
|
|
967
|
+
*
|
|
968
|
+
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and
|
|
969
|
+
* inspections can be made to the flightplan prior to submission for accepted state.
|
|
970
|
+
*
|
|
971
|
+
* - 'Pending' Flightplan draft has been marked as ready for review.
|
|
972
|
+
*
|
|
973
|
+
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted
|
|
974
|
+
* flight in the database. Subsequent flight plans will be deconflicted against the volumes
|
|
975
|
+
* associated with this flightplan.
|
|
976
|
+
*
|
|
977
|
+
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted
|
|
978
|
+
* state.
|
|
979
|
+
* */
|
|
980
|
+
state: components["schemas"]["AirspaceRestrictionState"];
|
|
981
|
+
};
|
|
982
|
+
/**
|
|
983
|
+
* FlightplanResponse
|
|
984
|
+
* @description Flightplan Resource.
|
|
985
|
+
*/
|
|
986
|
+
FlightplanResponse: {
|
|
987
|
+
/**
|
|
988
|
+
* Flightplan ID
|
|
989
|
+
* Format: uuid
|
|
990
|
+
* @description Unique identifier of the flightplan.
|
|
991
|
+
*/
|
|
992
|
+
id: string;
|
|
993
|
+
/**
|
|
994
|
+
* Type
|
|
995
|
+
* @default flightplan
|
|
996
|
+
* @constant
|
|
997
|
+
* @enum {string}
|
|
998
|
+
*/
|
|
999
|
+
type?: "flightplan";
|
|
1000
|
+
meta: components["schemas"]["FlightplanMeta"];
|
|
1001
|
+
attributes: components["schemas"]["Flightplan-Output"];
|
|
1002
|
+
};
|
|
1003
|
+
/**
|
|
1004
|
+
* GRC
|
|
1005
|
+
* @enum {integer}
|
|
1006
|
+
*/
|
|
1007
|
+
GRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
1008
|
+
/** GeoJsonCollection[GeoJsonSoraProperties] */
|
|
1009
|
+
GeoJsonCollection_GeoJsonSoraProperties_: {
|
|
1010
|
+
/**
|
|
1011
|
+
* Type
|
|
1012
|
+
* @constant
|
|
1013
|
+
* @enum {string}
|
|
1014
|
+
*/
|
|
1015
|
+
type: "FeatureCollection";
|
|
1016
|
+
/** Features */
|
|
1017
|
+
features: (components["schemas"]["GeoJsonPolygonFeature_GeoJsonSoraProperties_"] | components["schemas"]["GeoJsonMultiPolygonFeature_GeoJsonSoraProperties_"])[];
|
|
1018
|
+
};
|
|
1019
|
+
/** GeoJsonMultiPolygon */
|
|
1020
|
+
GeoJsonMultiPolygon: {
|
|
1021
|
+
/**
|
|
1022
|
+
* Type
|
|
1023
|
+
* @constant
|
|
1024
|
+
* @enum {string}
|
|
1025
|
+
*/
|
|
1026
|
+
type: "MultiPolygon";
|
|
1027
|
+
/** Coordinates */
|
|
1028
|
+
coordinates: [
|
|
1029
|
+
number,
|
|
1030
|
+
number
|
|
1031
|
+
][][][];
|
|
1032
|
+
};
|
|
1033
|
+
/** GeoJsonMultiPolygonFeature[GeoJsonSoraProperties] */
|
|
1034
|
+
GeoJsonMultiPolygonFeature_GeoJsonSoraProperties_: {
|
|
1035
|
+
/**
|
|
1036
|
+
* Type
|
|
1037
|
+
* @constant
|
|
1038
|
+
* @enum {string}
|
|
1039
|
+
*/
|
|
1040
|
+
type: "Feature";
|
|
1041
|
+
geometry: components["schemas"]["GeoJsonMultiPolygon"];
|
|
1042
|
+
properties: components["schemas"]["GeoJsonSoraProperties"];
|
|
1043
|
+
};
|
|
1044
|
+
/** GeoJsonPolygon */
|
|
1045
|
+
GeoJsonPolygon: {
|
|
1046
|
+
/**
|
|
1047
|
+
* Type
|
|
1048
|
+
* @constant
|
|
1049
|
+
* @enum {string}
|
|
1050
|
+
*/
|
|
1051
|
+
type: "Polygon";
|
|
1052
|
+
/** Coordinates */
|
|
1053
|
+
coordinates: [
|
|
1054
|
+
number,
|
|
1055
|
+
number
|
|
1056
|
+
][][];
|
|
1057
|
+
};
|
|
1058
|
+
/** GeoJsonPolygonFeature[GeoJsonSoraProperties] */
|
|
1059
|
+
GeoJsonPolygonFeature_GeoJsonSoraProperties_: {
|
|
1060
|
+
/**
|
|
1061
|
+
* Type
|
|
1062
|
+
* @constant
|
|
1063
|
+
* @enum {string}
|
|
1064
|
+
*/
|
|
1065
|
+
type: "Feature";
|
|
1066
|
+
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
1067
|
+
properties: components["schemas"]["GeoJsonSoraProperties"];
|
|
1068
|
+
};
|
|
1069
|
+
/** GeoJsonSoraProperties */
|
|
1070
|
+
GeoJsonSoraProperties: {
|
|
1071
|
+
/**
|
|
1072
|
+
* Name
|
|
1073
|
+
* @enum {string}
|
|
1074
|
+
*/
|
|
1075
|
+
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
1076
|
+
};
|
|
1077
|
+
/**
|
|
1078
|
+
* GotoPathingCheckpoint
|
|
1079
|
+
* @description Generate a path to a specified location under given `flight_parameters` accounting for given
|
|
1080
|
+
* `wind_parameters` and `pathing_settings`. All parameters are defined as to be used during the
|
|
1081
|
+
* leg flying towards this checkpoint.
|
|
1082
|
+
*/
|
|
1083
|
+
GotoPathingCheckpoint: {
|
|
1084
|
+
/**
|
|
1085
|
+
* Type
|
|
1086
|
+
* @description The type of a Pathing Checkpoint
|
|
1087
|
+
*
|
|
1088
|
+
* - `START`: The beginning of a Pathing Task
|
|
1089
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1090
|
+
*
|
|
1091
|
+
* @constant
|
|
1092
|
+
* @enum {string}
|
|
1093
|
+
*/
|
|
1094
|
+
type: "goto";
|
|
1095
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1096
|
+
parameters: components["schemas"]["PathingCheckpointParameters"];
|
|
1097
|
+
};
|
|
1098
|
+
/**
|
|
1099
|
+
* GotoWaypoint
|
|
1100
|
+
* @description Fly to a specified location under given `flight_parameters` accounting for given
|
|
1101
|
+
* `wind_parameters`. All parameters are defined as to be used during the leg flying towards this
|
|
1102
|
+
* waypoint.
|
|
1103
|
+
*
|
|
1104
|
+
* Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided
|
|
1105
|
+
* in `flight_parameters`.
|
|
1106
|
+
*/
|
|
1107
|
+
"GotoWaypoint-Input": {
|
|
1108
|
+
/**
|
|
1109
|
+
* Type
|
|
1110
|
+
* @description The type of a `Waypoint`
|
|
1111
|
+
*
|
|
1112
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1113
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1114
|
+
*
|
|
1115
|
+
* @constant
|
|
1116
|
+
* @enum {string}
|
|
1117
|
+
*/
|
|
1118
|
+
type: "goto";
|
|
1119
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1120
|
+
flight_parameters: components["schemas"]["FlightParameters"];
|
|
1121
|
+
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1122
|
+
};
|
|
1123
|
+
/**
|
|
1124
|
+
* GotoWaypoint
|
|
1125
|
+
* @description Fly to a specified location under given `flight_parameters` accounting for given
|
|
1126
|
+
* `wind_parameters`. All parameters are defined as to be used during the leg flying towards this
|
|
1127
|
+
* waypoint.
|
|
1128
|
+
*
|
|
1129
|
+
* Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided
|
|
1130
|
+
* in `flight_parameters`.
|
|
1131
|
+
*/
|
|
1132
|
+
"GotoWaypoint-Output": {
|
|
1133
|
+
/**
|
|
1134
|
+
* Type
|
|
1135
|
+
* @description The type of a `Waypoint`
|
|
1136
|
+
*
|
|
1137
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1138
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1139
|
+
*
|
|
1140
|
+
* @constant
|
|
1141
|
+
* @enum {string}
|
|
1142
|
+
*/
|
|
1143
|
+
type: "goto";
|
|
1144
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1145
|
+
flight_parameters: components["schemas"]["FlightParameters"];
|
|
1146
|
+
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1147
|
+
};
|
|
1148
|
+
/** GotoWaypointDetail */
|
|
1149
|
+
GotoWaypointDetail: {
|
|
1150
|
+
/**
|
|
1151
|
+
* Type
|
|
1152
|
+
* @description The type of a `Waypoint`
|
|
1153
|
+
*
|
|
1154
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1155
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1156
|
+
*
|
|
1157
|
+
* @constant
|
|
1158
|
+
* @enum {string}
|
|
1159
|
+
*/
|
|
1160
|
+
type: "goto";
|
|
1161
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1162
|
+
flight_parameters: components["schemas"]["FlightParameters"];
|
|
1163
|
+
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1164
|
+
/**
|
|
1165
|
+
* Waypoint ID
|
|
1166
|
+
* Format: uuid
|
|
1167
|
+
* @description Unique identifier of the waypoint.
|
|
1168
|
+
* @default {
|
|
1169
|
+
* "strict": false
|
|
1170
|
+
* }
|
|
1171
|
+
*/
|
|
1172
|
+
id?: string;
|
|
1173
|
+
/**
|
|
1174
|
+
* Index
|
|
1175
|
+
* @description The position of the waypoint in the flightplan
|
|
1176
|
+
*/
|
|
1177
|
+
index: number;
|
|
1178
|
+
/**
|
|
1179
|
+
* Time
|
|
1180
|
+
* Format: date-time
|
|
1181
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
1182
|
+
*/
|
|
1183
|
+
time: string;
|
|
1184
|
+
};
|
|
1185
|
+
/** HTTPValidationError */
|
|
1186
|
+
HTTPValidationError: {
|
|
1187
|
+
/** Detail */
|
|
1188
|
+
detail?: components["schemas"]["ValidationError"][];
|
|
1189
|
+
};
|
|
1190
|
+
/**
|
|
1191
|
+
* IntrinsicGRC
|
|
1192
|
+
* @enum {integer}
|
|
1193
|
+
*/
|
|
1194
|
+
IntrinsicGRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1195
|
+
/** JarusV2_5Mitigations */
|
|
1196
|
+
JarusV2_5Mitigations: {
|
|
1197
|
+
/**
|
|
1198
|
+
* Mitigation 1(A)
|
|
1199
|
+
* @description Strategic mitigations for ground risk.
|
|
1200
|
+
* @enum {string}
|
|
1201
|
+
*/
|
|
1202
|
+
m1a: "none" | "low" | "medium";
|
|
1203
|
+
/**
|
|
1204
|
+
* Mitigation 1(B)
|
|
1205
|
+
* @description Visual Line of Sight (VLOS) - avoid flying over people
|
|
1206
|
+
* @enum {string}
|
|
1207
|
+
*/
|
|
1208
|
+
m1b: "none" | "medium" | "high";
|
|
1209
|
+
/**
|
|
1210
|
+
* Mitigation 1(C)
|
|
1211
|
+
* @description Tactical Mitigations - Ground observation
|
|
1212
|
+
* @enum {string}
|
|
1213
|
+
*/
|
|
1214
|
+
m1c: "none" | "low";
|
|
1215
|
+
/**
|
|
1216
|
+
* Mitigation 2
|
|
1217
|
+
* @description Efforts to reduce UA impact dynamics
|
|
1218
|
+
* @enum {string}
|
|
1219
|
+
*/
|
|
1220
|
+
m2: "none" | "medium" | "high";
|
|
1221
|
+
};
|
|
1222
|
+
/** JarusV2_5SoraClassification */
|
|
1223
|
+
JarusV2_5SoraClassification: {
|
|
1224
|
+
/**
|
|
1225
|
+
* Final GRC Determination
|
|
1226
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1227
|
+
*/
|
|
1228
|
+
final_grc: components["schemas"]["FinalGRC"];
|
|
1229
|
+
/**
|
|
1230
|
+
* Residual Air Risk Class (ARC)
|
|
1231
|
+
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
1232
|
+
*
|
|
1233
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
1234
|
+
*
|
|
1235
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
1236
|
+
*
|
|
1237
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
1238
|
+
*
|
|
1239
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
1240
|
+
*
|
|
1241
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
1242
|
+
*
|
|
1243
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
1244
|
+
*
|
|
1245
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
1246
|
+
*
|
|
1247
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
1248
|
+
*
|
|
1249
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
1250
|
+
*
|
|
1251
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
1252
|
+
*
|
|
1253
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
1254
|
+
*
|
|
1255
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
1256
|
+
*
|
|
1257
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
1258
|
+
*
|
|
1259
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
1260
|
+
*
|
|
1261
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
1262
|
+
*
|
|
1263
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
1264
|
+
*
|
|
1265
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
1266
|
+
*
|
|
1267
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
1268
|
+
*
|
|
1269
|
+
*/
|
|
1270
|
+
residual_arc: components["schemas"]["ARC"];
|
|
1271
|
+
mitigations: components["schemas"]["JarusV2_5Mitigations"];
|
|
1272
|
+
/**
|
|
1273
|
+
* Ground Risk Buffer
|
|
1274
|
+
* @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
|
|
1275
|
+
*/
|
|
1276
|
+
ground_risk_buffer: number;
|
|
1277
|
+
/** @description Population Density Data Source. Data has been re-projected and interpolated to a square grid in UTM coordinates to work in the context of VIA's services. The interpolant is constricted by calculating a Delaunay triangulation of the source data grid and applying a linear barycentric interpolation of the source data on each resultant triangle. */
|
|
1278
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
1279
|
+
};
|
|
1280
|
+
/** JsonApiException */
|
|
1281
|
+
JsonApiException: {
|
|
1282
|
+
/**
|
|
1283
|
+
* Detail
|
|
1284
|
+
* @description Human-readable message describing the error that occurred.
|
|
1285
|
+
*/
|
|
1286
|
+
detail: string;
|
|
1287
|
+
/**
|
|
1288
|
+
* Status
|
|
1289
|
+
* @description HTTP status code
|
|
1290
|
+
*/
|
|
1291
|
+
status: number;
|
|
1292
|
+
};
|
|
1293
|
+
/** JsonApiExceptionResponse */
|
|
1294
|
+
JsonApiExceptionResponse: {
|
|
1295
|
+
/** Errors */
|
|
1296
|
+
errors: components["schemas"]["JsonApiException"][];
|
|
1297
|
+
};
|
|
1298
|
+
/** JsonApiListResponse[JsonApiResponse[AircraftResponse]] */
|
|
1299
|
+
JsonApiListResponse_JsonApiResponse_AircraftResponse__: {
|
|
1300
|
+
/** Data */
|
|
1301
|
+
data: components["schemas"]["JsonApiResponse_AircraftResponse_"][];
|
|
1302
|
+
links: components["schemas"]["Links"];
|
|
1303
|
+
};
|
|
1304
|
+
/** JsonApiListResponse[JsonApiResponse[AirspaceConstraintResponse]] */
|
|
1305
|
+
JsonApiListResponse_JsonApiResponse_AirspaceConstraintResponse__: {
|
|
1306
|
+
/** Data */
|
|
1307
|
+
data: components["schemas"]["JsonApiResponse_AirspaceConstraintResponse_"][];
|
|
1308
|
+
links: components["schemas"]["Links"];
|
|
1309
|
+
};
|
|
1310
|
+
/** JsonApiListResponse[JsonApiResponse[ArcResponse]] */
|
|
1311
|
+
JsonApiListResponse_JsonApiResponse_ArcResponse__: {
|
|
1312
|
+
/** Data */
|
|
1313
|
+
data: components["schemas"]["JsonApiResponse_ArcResponse_"][];
|
|
1314
|
+
links: components["schemas"]["Links"];
|
|
1315
|
+
};
|
|
1316
|
+
/** JsonApiListResponse[JsonApiResponse[ChartResponse]] */
|
|
1317
|
+
JsonApiListResponse_JsonApiResponse_ChartResponse__: {
|
|
1318
|
+
/** Data */
|
|
1319
|
+
data: components["schemas"]["JsonApiResponse_ChartResponse_"][];
|
|
1320
|
+
links: components["schemas"]["Links"];
|
|
1321
|
+
};
|
|
1322
|
+
/** JsonApiListResponse[JsonApiResponse[FlightplanResponse]] */
|
|
1323
|
+
JsonApiListResponse_JsonApiResponse_FlightplanResponse__: {
|
|
1324
|
+
/** Data */
|
|
1325
|
+
data: components["schemas"]["JsonApiResponse_FlightplanResponse_"][];
|
|
1326
|
+
links: components["schemas"]["Links"];
|
|
1327
|
+
};
|
|
1328
|
+
/** JsonApiListResponse[JsonApiResponse[Union[FlightplanConflictResponse, AirspaceConstraintConflictResponse]]] */
|
|
1329
|
+
JsonApiListResponse_JsonApiResponse_Union_FlightplanConflictResponse__AirspaceConstraintConflictResponse___: {
|
|
1330
|
+
/** Data */
|
|
1331
|
+
data: components["schemas"]["JsonApiResponse_Union_FlightplanConflictResponse__AirspaceConstraintConflictResponse__"][];
|
|
1332
|
+
links: components["schemas"]["Links"];
|
|
1333
|
+
};
|
|
1334
|
+
/** JsonApiListResponse[JsonApiResponse[VolumeResponse]] */
|
|
1335
|
+
JsonApiListResponse_JsonApiResponse_VolumeResponse__: {
|
|
1336
|
+
/** Data */
|
|
1337
|
+
data: components["schemas"]["JsonApiResponse_VolumeResponse_"][];
|
|
1338
|
+
links: components["schemas"]["Links"];
|
|
1339
|
+
};
|
|
1340
|
+
/** JsonApiResponse[AircraftResponse] */
|
|
1341
|
+
JsonApiResponse_AircraftResponse_: {
|
|
1342
|
+
data: components["schemas"]["AircraftResponse"];
|
|
1343
|
+
links: components["schemas"]["Links"];
|
|
1344
|
+
};
|
|
1345
|
+
/** JsonApiResponse[AirspaceConstraintResponse] */
|
|
1346
|
+
JsonApiResponse_AirspaceConstraintResponse_: {
|
|
1347
|
+
data: components["schemas"]["AirspaceConstraintResponse"];
|
|
1348
|
+
links: components["schemas"]["Links"];
|
|
1349
|
+
};
|
|
1350
|
+
/** JsonApiResponse[ArcResponse] */
|
|
1351
|
+
JsonApiResponse_ArcResponse_: {
|
|
1352
|
+
data: components["schemas"]["ArcResponse"];
|
|
1353
|
+
links: components["schemas"]["Links"];
|
|
1354
|
+
};
|
|
1355
|
+
/** JsonApiResponse[ChartResponse] */
|
|
1356
|
+
JsonApiResponse_ChartResponse_: {
|
|
1357
|
+
data: components["schemas"]["ChartResponse"];
|
|
1358
|
+
links: components["schemas"]["Links"];
|
|
1359
|
+
};
|
|
1360
|
+
/** JsonApiResponse[FlightplanResponse] */
|
|
1361
|
+
JsonApiResponse_FlightplanResponse_: {
|
|
1362
|
+
data: components["schemas"]["FlightplanResponse"];
|
|
1363
|
+
links: components["schemas"]["Links"];
|
|
1364
|
+
};
|
|
1365
|
+
/** JsonApiResponse[GeoJsonCollection[GeoJsonSoraProperties]] */
|
|
1366
|
+
JsonApiResponse_GeoJsonCollection_GeoJsonSoraProperties__: {
|
|
1367
|
+
data: components["schemas"]["GeoJsonCollection_GeoJsonSoraProperties_"];
|
|
1368
|
+
links: components["schemas"]["Links"];
|
|
1369
|
+
};
|
|
1370
|
+
/** JsonApiResponse[PathingTaskResponse] */
|
|
1371
|
+
JsonApiResponse_PathingTaskResponse_: {
|
|
1372
|
+
data: components["schemas"]["PathingTaskResponse"];
|
|
1373
|
+
links: components["schemas"]["Links"];
|
|
1374
|
+
};
|
|
1375
|
+
/** JsonApiResponse[RasterResponse] */
|
|
1376
|
+
JsonApiResponse_RasterResponse_: {
|
|
1377
|
+
data: components["schemas"]["RasterResponse"];
|
|
1378
|
+
links: components["schemas"]["Links"];
|
|
1379
|
+
};
|
|
1380
|
+
/** JsonApiResponse[SailResponse] */
|
|
1381
|
+
JsonApiResponse_SailResponse_: {
|
|
1382
|
+
data: components["schemas"]["SailResponse"];
|
|
1383
|
+
links: components["schemas"]["Links"];
|
|
1384
|
+
};
|
|
1385
|
+
/** JsonApiResponse[SoraClassificationResponse] */
|
|
1386
|
+
JsonApiResponse_SoraClassificationResponse_: {
|
|
1387
|
+
data: components["schemas"]["SoraClassificationResponse"];
|
|
1388
|
+
links: components["schemas"]["Links"];
|
|
1389
|
+
};
|
|
1390
|
+
/** JsonApiResponse[SoraReportResponse] */
|
|
1391
|
+
JsonApiResponse_SoraReportResponse_: {
|
|
1392
|
+
data: components["schemas"]["SoraReportResponse"];
|
|
1393
|
+
links: components["schemas"]["Links"];
|
|
1394
|
+
};
|
|
1395
|
+
/** JsonApiResponse[StatisticsResponse] */
|
|
1396
|
+
JsonApiResponse_StatisticsResponse_: {
|
|
1397
|
+
data: components["schemas"]["StatisticsResponse"];
|
|
1398
|
+
links: components["schemas"]["Links"];
|
|
1399
|
+
};
|
|
1400
|
+
/** JsonApiResponse[Union[FlightplanConflictResponse, AirspaceConstraintConflictResponse]] */
|
|
1401
|
+
JsonApiResponse_Union_FlightplanConflictResponse__AirspaceConstraintConflictResponse__: {
|
|
1402
|
+
/** Data */
|
|
1403
|
+
data: components["schemas"]["FlightplanConflictResponse"] | components["schemas"]["AirspaceConstraintConflictResponse"];
|
|
1404
|
+
links: components["schemas"]["Links"];
|
|
1405
|
+
};
|
|
1406
|
+
/** JsonApiResponse[VolumeResponse] */
|
|
1407
|
+
JsonApiResponse_VolumeResponse_: {
|
|
1408
|
+
data: components["schemas"]["VolumeResponse"];
|
|
1409
|
+
links: components["schemas"]["Links"];
|
|
1410
|
+
};
|
|
1411
|
+
/** JsonApiResponse[WaypointDetailResponse] */
|
|
1412
|
+
JsonApiResponse_WaypointDetailResponse_: {
|
|
1413
|
+
data: components["schemas"]["WaypointDetailResponse"];
|
|
1414
|
+
links: components["schemas"]["Links"];
|
|
1415
|
+
};
|
|
1416
|
+
/**
|
|
1417
|
+
* LateralParameters
|
|
1418
|
+
* @description Aircraft Lateral Movement
|
|
1419
|
+
*
|
|
1420
|
+
* Operational Intent Volumes (OIVs) are generated with the sum of these values either-side of the
|
|
1421
|
+
* mean flightpath.
|
|
1422
|
+
*/
|
|
1423
|
+
LateralParameters: {
|
|
1424
|
+
/**
|
|
1425
|
+
* Tse
|
|
1426
|
+
* @description Total system error in a horizontal plane, in metres. Includes positional error due to pathing, navigation and instrumentation. Defined as the 2-sigma/95% error limit. For example, if the tse_lateral is 30 m then on average an aircraft should be less than 30 metres away from its planned route at least 95% of the time.
|
|
1427
|
+
*/
|
|
1428
|
+
tse: number;
|
|
1429
|
+
/**
|
|
1430
|
+
* Manoeuvre Corridor
|
|
1431
|
+
* @description Distance horizontally either side of the mean flight path reserved for any typical manoeuvre, in metres
|
|
1432
|
+
*/
|
|
1433
|
+
manoeuvre_corridor: number;
|
|
1434
|
+
/**
|
|
1435
|
+
* Contingency Buffer
|
|
1436
|
+
* @description Specific provision outside of manoeuvre corridor to be used during any unexpected and unforeseen emergencies, in metres
|
|
1437
|
+
*/
|
|
1438
|
+
contingency_buffer: number;
|
|
1439
|
+
};
|
|
1440
|
+
/** Links */
|
|
1441
|
+
Links: {
|
|
1442
|
+
/**
|
|
1443
|
+
* Self
|
|
1444
|
+
* @description URL for the resource
|
|
1445
|
+
*/
|
|
1446
|
+
self: string;
|
|
1447
|
+
};
|
|
1448
|
+
/** LoginRequest */
|
|
1449
|
+
LoginRequest: {
|
|
1450
|
+
/** Username */
|
|
1451
|
+
username: string;
|
|
1452
|
+
/** Password */
|
|
1453
|
+
password: string;
|
|
1454
|
+
};
|
|
1455
|
+
/** LoginResponse */
|
|
1456
|
+
LoginResponse: {
|
|
1457
|
+
/**
|
|
1458
|
+
* Access Token
|
|
1459
|
+
* @description JSON Web Token as defined in RFC 7519
|
|
1460
|
+
*/
|
|
1461
|
+
access_token: string;
|
|
1462
|
+
/** @description The type of authorization token */
|
|
1463
|
+
token_type: components["schemas"]["TokenType"];
|
|
1464
|
+
/**
|
|
1465
|
+
* Expires In
|
|
1466
|
+
* @description The time before token expiry in seconds
|
|
1467
|
+
*/
|
|
1468
|
+
expires_in: number;
|
|
1469
|
+
};
|
|
1470
|
+
/**
|
|
1471
|
+
* PathingCheckpointParameters
|
|
1472
|
+
* @description Parameters that are applied to the leg of the journey towards the checkpoint
|
|
1473
|
+
*
|
|
1474
|
+
* Note that the `speed` provided in `wind_parameters` must be less than the `airspeed` provided in
|
|
1475
|
+
* `flight_parameters`.
|
|
1476
|
+
*/
|
|
1477
|
+
PathingCheckpointParameters: {
|
|
1478
|
+
flight_parameters: components["schemas"]["FlightParameters"];
|
|
1479
|
+
pathing_settings: components["schemas"]["PathingSettings"];
|
|
1480
|
+
wind_parameters?: components["schemas"]["WindParameters"];
|
|
1481
|
+
};
|
|
1482
|
+
/** PathingSettings */
|
|
1483
|
+
PathingSettings: {
|
|
1484
|
+
/**
|
|
1485
|
+
* Ground Risk Bias
|
|
1486
|
+
* @description Weighting of Ground Risk. 0: Ignore Ground Risk. 1: Ground Risk Minimised
|
|
1487
|
+
* @default 0.8
|
|
1488
|
+
*/
|
|
1489
|
+
ground_risk_bias?: number;
|
|
1490
|
+
};
|
|
1491
|
+
/** PathingTaskAttributes */
|
|
1492
|
+
PathingTaskAttributes: {
|
|
1493
|
+
/**
|
|
1494
|
+
* Waypoints
|
|
1495
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
1496
|
+
*/
|
|
1497
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Output"])[];
|
|
1498
|
+
};
|
|
1499
|
+
/** PathingTaskMeta */
|
|
1500
|
+
PathingTaskMeta: {
|
|
1501
|
+
/** @description State of a pathing task.
|
|
1502
|
+
*
|
|
1503
|
+
* - 'queued' The pathing task is waiting to be calculated.
|
|
1504
|
+
* - 'in-progress' The pathing task is being calculated.
|
|
1505
|
+
* - 'successful' The pathing task is complete and the waypoints that make up the risk-minimised and de-conflicted path are available.
|
|
1506
|
+
* - 'failed' The pathing task failed, a path is unachievable. */
|
|
1507
|
+
state: components["schemas"]["PathingTaskState"];
|
|
1508
|
+
/**
|
|
1509
|
+
* Error Code
|
|
1510
|
+
* @description Unique error type identifier: 1000-1999: Internal server error. 2000-2999: Bad request
|
|
1511
|
+
*/
|
|
1512
|
+
error_code?: number | null;
|
|
1513
|
+
/**
|
|
1514
|
+
* Error Message
|
|
1515
|
+
* @description Human readable error description
|
|
1516
|
+
*/
|
|
1517
|
+
error_message?: string | null;
|
|
1518
|
+
/**
|
|
1519
|
+
* Checkpoint Indexes
|
|
1520
|
+
* @description Indexes of checkpoints from initial request in returned waypoints, only provided if the pathing task is "successful".
|
|
1521
|
+
*/
|
|
1522
|
+
checkpoint_indexes?: number[] | null;
|
|
1523
|
+
};
|
|
1524
|
+
/** PathingTaskRequest */
|
|
1525
|
+
PathingTaskRequest: {
|
|
1526
|
+
/**
|
|
1527
|
+
* Chart ID
|
|
1528
|
+
* @description Unique identifier for a chart.
|
|
1529
|
+
*/
|
|
1530
|
+
chart_id: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* Aircraft ID
|
|
1533
|
+
* @description Unique identifier for an aircraft.
|
|
1534
|
+
*/
|
|
1535
|
+
aircraft_id: string;
|
|
1536
|
+
/** Sora Classification Id */
|
|
1537
|
+
sora_classification_id?: string | null;
|
|
1538
|
+
/**
|
|
1539
|
+
* Geocage Coordinates
|
|
1540
|
+
* @description The boundary coordinates of a keep-in geocage. Currently geocage is only applied laterally and does not consider altitude.
|
|
1541
|
+
*/
|
|
1542
|
+
geocage?: components["schemas"]["Polygon"] | null;
|
|
1543
|
+
/**
|
|
1544
|
+
* Time Start
|
|
1545
|
+
* Format: date-time
|
|
1546
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
1547
|
+
*/
|
|
1548
|
+
time_start: string;
|
|
1549
|
+
/**
|
|
1550
|
+
* Tse Temporal
|
|
1551
|
+
* @description Total system error in the time dimension, in seconds. Includes error due to uncertainty in take-off time, speed, and operational parameters. Defined as the 2-sigma/95% error limit. For example, if the tse_temporal is 300 s then on average an aircraft should be less than 5 minutes ahead or behind schedule for at least 95% of its route.
|
|
1552
|
+
*/
|
|
1553
|
+
tse_temporal: number;
|
|
1554
|
+
/**
|
|
1555
|
+
* Permitted Airspace Constraints and Flightplans
|
|
1556
|
+
* @description Airspace Constraints and Flightplans that are permitted to be operated within. All 4D Volumes associated with these entities will not be deconflicted against during the pathing operation.
|
|
1557
|
+
* @default []
|
|
1558
|
+
*/
|
|
1559
|
+
permitted_ids?: (string)[];
|
|
1560
|
+
/** @default {} */
|
|
1561
|
+
volume_settings?: components["schemas"]["VolumeSettings"];
|
|
1562
|
+
/**
|
|
1563
|
+
* Checkpoints
|
|
1564
|
+
* @description Points defining the Pathing Task that must be passed through along with flight parameters and settings for pathing. The first checkpoint must be of type: PathingCheckpointType.START and only occur once
|
|
1565
|
+
*/
|
|
1566
|
+
checkpoints: (components["schemas"]["StartPathingCheckpoint"] | components["schemas"]["GotoPathingCheckpoint"])[];
|
|
1567
|
+
};
|
|
1568
|
+
/**
|
|
1569
|
+
* PathingTaskResponse
|
|
1570
|
+
* @description Standard response for pathing task GET endpoint. The attributes with waypoints are included in
|
|
1571
|
+
* the response if the state is "successful".
|
|
1572
|
+
*/
|
|
1573
|
+
PathingTaskResponse: {
|
|
1574
|
+
/**
|
|
1575
|
+
* Pathing Task ID
|
|
1576
|
+
* Format: uuid
|
|
1577
|
+
* @description Unique identifier of the pathing task
|
|
1578
|
+
*/
|
|
1579
|
+
id: string;
|
|
1580
|
+
/**
|
|
1581
|
+
* Type
|
|
1582
|
+
* @default pathing_task
|
|
1583
|
+
* @constant
|
|
1584
|
+
* @enum {string}
|
|
1585
|
+
*/
|
|
1586
|
+
type?: "pathing_task";
|
|
1587
|
+
attributes?: components["schemas"]["PathingTaskAttributes"] | null;
|
|
1588
|
+
meta: components["schemas"]["PathingTaskMeta"];
|
|
1589
|
+
};
|
|
1590
|
+
/**
|
|
1591
|
+
* PathingTaskState
|
|
1592
|
+
* @enum {string}
|
|
1593
|
+
*/
|
|
1594
|
+
PathingTaskState: "queued" | "in-progress" | "successful" | "failed";
|
|
1595
|
+
/**
|
|
1596
|
+
* Polygon
|
|
1597
|
+
* @description An enclosed area on the earth. The bounding edges of this polygon are defined to be the shortest
|
|
1598
|
+
* paths between connected vertices. This means, for instance, that the edge between two points
|
|
1599
|
+
* both defined at a particular latitude is not generally contained at that latitude. The winding
|
|
1600
|
+
* order must be interpreted as the order which produces the smaller area. The path between two
|
|
1601
|
+
* vertices is defined to be the shortest possible path between those vertices. Edges may not
|
|
1602
|
+
* cross. Vertices may not be duplicated. In particular, the final polygon vertex must not be
|
|
1603
|
+
* identical to the first vertex.
|
|
1604
|
+
*/
|
|
1605
|
+
Polygon: {
|
|
1606
|
+
/** Vertices */
|
|
1607
|
+
vertices: components["schemas"]["Wgs84Point"][];
|
|
1608
|
+
};
|
|
1609
|
+
/**
|
|
1610
|
+
* PopulationSource
|
|
1611
|
+
* @enum {string}
|
|
1612
|
+
*/
|
|
1613
|
+
PopulationSource: "GHS_2020_R2023_100" | "EUROSTAT_2021_R2024_1000";
|
|
1614
|
+
/**
|
|
1615
|
+
* Raster
|
|
1616
|
+
* @description Raster Search Pattern
|
|
1617
|
+
*/
|
|
1618
|
+
Raster: {
|
|
1619
|
+
/**
|
|
1620
|
+
* Coordinates
|
|
1621
|
+
* @description Raster pattern coordinates, in expected flight order
|
|
1622
|
+
*/
|
|
1623
|
+
coordinates: components["schemas"]["Wgs84Point"][];
|
|
1624
|
+
};
|
|
1625
|
+
/** RasterRequest */
|
|
1626
|
+
RasterRequest: {
|
|
1627
|
+
/**
|
|
1628
|
+
* Raster Search Area
|
|
1629
|
+
* @description Area to be searched by raster pattern. The bounding edges of this polygon are defined to be the shortest paths between connected vertices. This means, for instance, that the edge between two points both defined at a particular latitude is not generally contained at that latitude. The winding order must be interpreted as the order which produces the smaller area. The path between two vertices is defined to be the shortest possible path between those vertices. Edges may not cross. An unclosed polygon will be automatically closed by duplicating the first vertex.
|
|
1630
|
+
*/
|
|
1631
|
+
polygon: components["schemas"]["Polygon"];
|
|
1632
|
+
/**
|
|
1633
|
+
* Azimuth
|
|
1634
|
+
* @description Intended Azimuth of raster search pattern defined in degrees where 0 is North
|
|
1635
|
+
*/
|
|
1636
|
+
azimuth: number;
|
|
1637
|
+
/**
|
|
1638
|
+
* Spacing
|
|
1639
|
+
* @description Orthogonal distance between any two passes across the polygon in metres
|
|
1640
|
+
*/
|
|
1641
|
+
spacing: number;
|
|
1642
|
+
/**
|
|
1643
|
+
* Invert Raster Pattern
|
|
1644
|
+
* @description Begin raster pattern from the opposite edge
|
|
1645
|
+
* @default false
|
|
1646
|
+
*/
|
|
1647
|
+
invert?: boolean;
|
|
1648
|
+
};
|
|
1649
|
+
/** RasterResponse */
|
|
1650
|
+
RasterResponse: {
|
|
1651
|
+
/**
|
|
1652
|
+
* Type
|
|
1653
|
+
* @default flight_pattern
|
|
1654
|
+
* @constant
|
|
1655
|
+
* @enum {string}
|
|
1656
|
+
*/
|
|
1657
|
+
type?: "flight_pattern";
|
|
1658
|
+
attributes: components["schemas"]["Raster"];
|
|
1659
|
+
};
|
|
1660
|
+
/** SailAttributes */
|
|
1661
|
+
SailAttributes: {
|
|
1662
|
+
/**
|
|
1663
|
+
* Final GRC Determination
|
|
1664
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1665
|
+
*/
|
|
1666
|
+
final_grc: components["schemas"]["GRC"];
|
|
1667
|
+
/**
|
|
1668
|
+
* Residual Air Risk Class (ARC)
|
|
1669
|
+
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
1670
|
+
*
|
|
1671
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
1672
|
+
*
|
|
1673
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
1674
|
+
*
|
|
1675
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
1676
|
+
*
|
|
1677
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
1678
|
+
*
|
|
1679
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
1680
|
+
*
|
|
1681
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
1682
|
+
*
|
|
1683
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
1684
|
+
*
|
|
1685
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
1686
|
+
*
|
|
1687
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
1688
|
+
*
|
|
1689
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
1690
|
+
*
|
|
1691
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
1692
|
+
*
|
|
1693
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
1694
|
+
*
|
|
1695
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
1696
|
+
*
|
|
1697
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
1698
|
+
*
|
|
1699
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
1700
|
+
*
|
|
1701
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
1702
|
+
*
|
|
1703
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
1704
|
+
*
|
|
1705
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
1706
|
+
*
|
|
1707
|
+
*/
|
|
1708
|
+
arc: components["schemas"]["ARC"];
|
|
1709
|
+
/**
|
|
1710
|
+
* SAIL Determination
|
|
1711
|
+
* @description The SAIL represents the level of confidence that the UAS operation will stay under control.
|
|
1712
|
+
*/
|
|
1713
|
+
sail: string;
|
|
1714
|
+
};
|
|
1715
|
+
/** SailResponse */
|
|
1716
|
+
SailResponse: {
|
|
1717
|
+
/** Id */
|
|
1718
|
+
id: number;
|
|
1719
|
+
attributes: components["schemas"]["SailAttributes"];
|
|
1720
|
+
};
|
|
1721
|
+
/** SoraClassification */
|
|
1722
|
+
"SoraClassification-Input": {
|
|
1723
|
+
/** @description The implementation of SORA that is described by `payload` */
|
|
1724
|
+
implementation: components["schemas"]["SoraImplementation"];
|
|
1725
|
+
payload: components["schemas"]["JarusV2_5SoraClassification"];
|
|
1726
|
+
};
|
|
1727
|
+
/** SoraClassification */
|
|
1728
|
+
"SoraClassification-Output": {
|
|
1729
|
+
/** @description The implementation of SORA that is described by `payload` */
|
|
1730
|
+
implementation: components["schemas"]["SoraImplementation"];
|
|
1731
|
+
payload: components["schemas"]["JarusV2_5SoraClassification"];
|
|
1732
|
+
};
|
|
1733
|
+
/** SoraClassificationResponse */
|
|
1734
|
+
SoraClassificationResponse: {
|
|
1735
|
+
/**
|
|
1736
|
+
* SORA Classification ID
|
|
1737
|
+
* Format: uuid
|
|
1738
|
+
* @description A unique identifier representing a specific set of SORA parameters
|
|
1739
|
+
*/
|
|
1740
|
+
id: string;
|
|
1741
|
+
/**
|
|
1742
|
+
* Type
|
|
1743
|
+
* @default sora_classification
|
|
1744
|
+
* @constant
|
|
1745
|
+
* @enum {string}
|
|
1746
|
+
*/
|
|
1747
|
+
type?: "sora_classification";
|
|
1748
|
+
attributes: components["schemas"]["SoraClassification-Output"];
|
|
1749
|
+
};
|
|
1750
|
+
/**
|
|
1751
|
+
* SoraImplementation
|
|
1752
|
+
* @constant
|
|
1753
|
+
* @enum {string}
|
|
1754
|
+
*/
|
|
1755
|
+
SoraImplementation: "jarus_v2.5";
|
|
1756
|
+
/** SoraReportAttributes */
|
|
1757
|
+
SoraReportAttributes: {
|
|
1758
|
+
/**
|
|
1759
|
+
* Final GRC Determination
|
|
1760
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1761
|
+
*/
|
|
1762
|
+
final_grc: components["schemas"]["FinalGRC"];
|
|
1763
|
+
/**
|
|
1764
|
+
* Intrinsic UAS Ground Risk Class (iGRC)
|
|
1765
|
+
* @description The intrinsic UAS ground risk relates to the risk of a person being fatally struck by the UAS (in the case where the UAS operation is out of control) absent of any mitigations being present
|
|
1766
|
+
*/
|
|
1767
|
+
intrinsic_grc: components["schemas"]["IntrinsicGRC"];
|
|
1768
|
+
/**
|
|
1769
|
+
* Max Operational Population Density
|
|
1770
|
+
* @description The maximum population density overflown within the nominal flight operational volume and ground risk buffer, defined in ppl/km². Determined in the assessment of intrinsic ground risk before application of any mitigations.
|
|
1771
|
+
*/
|
|
1772
|
+
max_operational_population_density: number;
|
|
1773
|
+
/**
|
|
1774
|
+
* Avg Adjacent Area Population Density
|
|
1775
|
+
* @description The average population density within the adjacent area used in determining containment requirements, defined in ppl/km². The adjacent area spans from the outer limit of the ground risk buffer up to 3 minutes flight time from the outer limit of the operational volume at max cruise speed of the aircraft. The adjacent area is fixed between a lower limit of 5km and upper limit of 35km.
|
|
1776
|
+
*/
|
|
1777
|
+
avg_adjacent_area_population_density: number;
|
|
1778
|
+
};
|
|
1779
|
+
/** SoraReportRequest */
|
|
1780
|
+
SoraReportRequest: {
|
|
1781
|
+
/**
|
|
1782
|
+
* Chart ID
|
|
1783
|
+
* @description Unique identifier for a chart.
|
|
1784
|
+
*/
|
|
1785
|
+
chart_id: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* Aircraft ID
|
|
1788
|
+
* @description Unique identifier for an aircraft.
|
|
1789
|
+
*/
|
|
1790
|
+
aircraft_id: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* Waypoints
|
|
1793
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
1794
|
+
*/
|
|
1795
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
1796
|
+
mitigations: components["schemas"]["JarusV2_5Mitigations"];
|
|
1797
|
+
/** @description Population Density Data Source. Data has been re-projected and interpolated to a square grid in UTM coordinates to work in the context of VIA's services. The interpolant is constricted by calculating a Delaunay triangulation of the source data grid and applying a linear barycentric interpolation of the source data on each resultant triangle. */
|
|
1798
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
1799
|
+
/**
|
|
1800
|
+
* Ground Risk Buffer
|
|
1801
|
+
* @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
|
|
1802
|
+
*/
|
|
1803
|
+
ground_risk_buffer: number;
|
|
1804
|
+
};
|
|
1805
|
+
/** SoraReportResponse */
|
|
1806
|
+
SoraReportResponse: {
|
|
1807
|
+
attributes: components["schemas"]["SoraReportAttributes"];
|
|
1808
|
+
/**
|
|
1809
|
+
* Type
|
|
1810
|
+
* @default sora_report
|
|
1811
|
+
* @constant
|
|
1812
|
+
* @enum {string}
|
|
1813
|
+
*/
|
|
1814
|
+
type?: "sora_report";
|
|
1815
|
+
};
|
|
1816
|
+
/** SoraSemanticModelVolumesRequest */
|
|
1817
|
+
SoraSemanticModelVolumesRequest: {
|
|
1818
|
+
/**
|
|
1819
|
+
* Chart ID
|
|
1820
|
+
* @description Unique identifier for a chart.
|
|
1821
|
+
*/
|
|
1822
|
+
chart_id: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Aircraft ID
|
|
1825
|
+
* @description Unique identifier for an aircraft.
|
|
1826
|
+
*/
|
|
1827
|
+
aircraft_id: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Waypoints
|
|
1830
|
+
* @description Points defining a Flightplan that must be passed through along with flight parameters. The first waypoint must be of type: WaypointType.START and only occur once
|
|
1831
|
+
*/
|
|
1832
|
+
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
1833
|
+
/**
|
|
1834
|
+
* Ground Risk Buffer
|
|
1835
|
+
* @description The ground risk buffer is an area on the ground that surrounds the footprint of the contingency volume. It is expected that if the flight exits the contingency volume during a loss of control of the operation that the flight will be terminated within this lateral distance.
|
|
1836
|
+
*/
|
|
1837
|
+
ground_risk_buffer: number;
|
|
1838
|
+
};
|
|
1839
|
+
/**
|
|
1840
|
+
* StartPathingCheckpoint
|
|
1841
|
+
* @description The initial start position of a pathing task
|
|
1842
|
+
*/
|
|
1843
|
+
StartPathingCheckpoint: {
|
|
1844
|
+
/**
|
|
1845
|
+
* Type
|
|
1846
|
+
* @description The type of a Pathing Checkpoint
|
|
1847
|
+
*
|
|
1848
|
+
* - `START`: The beginning of a Pathing Task
|
|
1849
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1850
|
+
*
|
|
1851
|
+
* @constant
|
|
1852
|
+
* @enum {string}
|
|
1853
|
+
*/
|
|
1854
|
+
type: "start";
|
|
1855
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1856
|
+
};
|
|
1857
|
+
/**
|
|
1858
|
+
* StartWaypoint
|
|
1859
|
+
* @description The start position on a flightplan
|
|
1860
|
+
*/
|
|
1861
|
+
StartWaypoint: {
|
|
1862
|
+
/**
|
|
1863
|
+
* Type
|
|
1864
|
+
* @description The type of a `Waypoint`
|
|
1865
|
+
*
|
|
1866
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1867
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1868
|
+
*
|
|
1869
|
+
* @constant
|
|
1870
|
+
* @enum {string}
|
|
1871
|
+
*/
|
|
1872
|
+
type: "start";
|
|
1873
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1874
|
+
};
|
|
1875
|
+
/** StartWaypointDetail */
|
|
1876
|
+
StartWaypointDetail: {
|
|
1877
|
+
/**
|
|
1878
|
+
* Type
|
|
1879
|
+
* @description The type of a `Waypoint`
|
|
1880
|
+
*
|
|
1881
|
+
* - `START`: The beginning of a `Flightplan`
|
|
1882
|
+
* - `GOTO` : Fly to and directly pass through a location under certain parameters
|
|
1883
|
+
*
|
|
1884
|
+
* @constant
|
|
1885
|
+
* @enum {string}
|
|
1886
|
+
*/
|
|
1887
|
+
type: "start";
|
|
1888
|
+
position: components["schemas"]["Wgs84Position"];
|
|
1889
|
+
/**
|
|
1890
|
+
* Waypoint ID
|
|
1891
|
+
* Format: uuid
|
|
1892
|
+
* @description Unique identifier of the waypoint.
|
|
1893
|
+
* @default {
|
|
1894
|
+
* "strict": false
|
|
1895
|
+
* }
|
|
1896
|
+
*/
|
|
1897
|
+
id?: string;
|
|
1898
|
+
/**
|
|
1899
|
+
* Index
|
|
1900
|
+
* @description The position of the waypoint in the flightplan
|
|
1901
|
+
*/
|
|
1902
|
+
index: number;
|
|
1903
|
+
/**
|
|
1904
|
+
* Time
|
|
1905
|
+
* Format: date-time
|
|
1906
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
1907
|
+
*/
|
|
1908
|
+
time: string;
|
|
1909
|
+
};
|
|
1910
|
+
/** StateRequest */
|
|
1911
|
+
StateRequest: {
|
|
1912
|
+
/** @description State of a flightplan.
|
|
1913
|
+
*
|
|
1914
|
+
* - 'Draft' Flightplan is in preparation for submission to accepted state. Modifications and
|
|
1915
|
+
* inspections can be made to the flightplan prior to submission for accepted state.
|
|
1916
|
+
*
|
|
1917
|
+
* - 'Pending' Flightplan draft has been marked as ready for review.
|
|
1918
|
+
*
|
|
1919
|
+
* - 'Accepted' Flightplan is validated as deconflicted, and is registered as an accepted
|
|
1920
|
+
* flight in the database. Subsequent flight plans will be deconflicted against the volumes
|
|
1921
|
+
* associated with this flightplan.
|
|
1922
|
+
*
|
|
1923
|
+
* - 'Closed' Flightplan is no longer valid and cannot be modified or submitted for accepted
|
|
1924
|
+
* state.
|
|
1925
|
+
* */
|
|
1926
|
+
state: components["schemas"]["AirspaceRestrictionState"];
|
|
1927
|
+
};
|
|
1928
|
+
/** StatisticsAttributes */
|
|
1929
|
+
StatisticsAttributes: {
|
|
1930
|
+
/**
|
|
1931
|
+
* Duration
|
|
1932
|
+
* @description The nominal time to complete the flightplan, given in seconds
|
|
1933
|
+
*/
|
|
1934
|
+
duration: number;
|
|
1935
|
+
/**
|
|
1936
|
+
* Total Cost
|
|
1937
|
+
* @description The estimated total cost to complete the flightplan, given in GBP
|
|
1938
|
+
*/
|
|
1939
|
+
total_cost: number;
|
|
1940
|
+
};
|
|
1941
|
+
/**
|
|
1942
|
+
* StatisticsResponse
|
|
1943
|
+
* @description The cost and nominal time to complete a flightplan
|
|
1944
|
+
*/
|
|
1945
|
+
StatisticsResponse: {
|
|
1946
|
+
/**
|
|
1947
|
+
* Flightplan ID
|
|
1948
|
+
* Format: uuid
|
|
1949
|
+
* @description Unique identifier of the flightplan.
|
|
1950
|
+
*/
|
|
1951
|
+
id: string;
|
|
1952
|
+
/**
|
|
1953
|
+
* Type
|
|
1954
|
+
* @default statistics
|
|
1955
|
+
* @constant
|
|
1956
|
+
* @enum {string}
|
|
1957
|
+
*/
|
|
1958
|
+
type?: "statistics";
|
|
1959
|
+
attributes: components["schemas"]["StatisticsAttributes"];
|
|
1960
|
+
};
|
|
1961
|
+
/**
|
|
1962
|
+
* TokenType
|
|
1963
|
+
* @constant
|
|
1964
|
+
* @enum {string}
|
|
1965
|
+
*/
|
|
1966
|
+
TokenType: "Bearer";
|
|
1967
|
+
/** ValidationError */
|
|
1968
|
+
ValidationError: {
|
|
1969
|
+
/** Location */
|
|
1970
|
+
loc: (string | number)[];
|
|
1971
|
+
/** Message */
|
|
1972
|
+
msg: string;
|
|
1973
|
+
/** Error Type */
|
|
1974
|
+
type: string;
|
|
1975
|
+
};
|
|
1976
|
+
/** VerticalParameters */
|
|
1977
|
+
VerticalParameters: {
|
|
1978
|
+
/**
|
|
1979
|
+
* Tse
|
|
1980
|
+
* @description Total system error in a vertical plane, in metres. Includes positional error due to pathing, navigation and instrumentation. Defined as the 2-sigma/95% error limit. For example, if the tse_vertical is 30 metres then on average an aircraft should be less than 30 metres away from its planned route at least 95% of the time.
|
|
1981
|
+
*/
|
|
1982
|
+
tse: number;
|
|
1983
|
+
};
|
|
1984
|
+
/**
|
|
1985
|
+
* Volume3D
|
|
1986
|
+
* @description A three-dimensional geographic volume consisting of a vertically-extruded shape.
|
|
1987
|
+
* Exactly one outline must be specified with a `altitude_upper` greater than `altitude_lower`
|
|
1988
|
+
*/
|
|
1989
|
+
"Volume3D-Input": {
|
|
1990
|
+
outline_polygon: components["schemas"]["Polygon"];
|
|
1991
|
+
/** Altitude Lower */
|
|
1992
|
+
altitude_lower: number;
|
|
1993
|
+
/** Altitude Upper */
|
|
1994
|
+
altitude_upper: number;
|
|
1995
|
+
};
|
|
1996
|
+
/**
|
|
1997
|
+
* Volume3D
|
|
1998
|
+
* @description A three-dimensional geographic volume consisting of a vertically-extruded shape.
|
|
1999
|
+
* Exactly one outline must be specified with a `altitude_upper` greater than `altitude_lower`
|
|
2000
|
+
*/
|
|
2001
|
+
"Volume3D-Output": {
|
|
2002
|
+
outline_polygon: components["schemas"]["Polygon"];
|
|
2003
|
+
/** Altitude Lower */
|
|
2004
|
+
altitude_lower: number;
|
|
2005
|
+
/** Altitude Upper */
|
|
2006
|
+
altitude_upper: number;
|
|
2007
|
+
};
|
|
2008
|
+
/** Volume4D */
|
|
2009
|
+
"Volume4D-Input": {
|
|
2010
|
+
volume: components["schemas"]["Volume3D-Input"];
|
|
2011
|
+
/**
|
|
2012
|
+
* Time Start
|
|
2013
|
+
* Format: date-time
|
|
2014
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2015
|
+
*/
|
|
2016
|
+
time_start: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* Time End
|
|
2019
|
+
* Format: date-time
|
|
2020
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2021
|
+
*/
|
|
2022
|
+
time_end: string;
|
|
2023
|
+
};
|
|
2024
|
+
/** Volume4D */
|
|
2025
|
+
"Volume4D-Output": {
|
|
2026
|
+
volume: components["schemas"]["Volume3D-Output"];
|
|
2027
|
+
/**
|
|
2028
|
+
* Time Start
|
|
2029
|
+
* Format: date-time
|
|
2030
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2031
|
+
*/
|
|
2032
|
+
time_start: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* Time End
|
|
2035
|
+
* Format: date-time
|
|
2036
|
+
* @description RFC3339-formatted (section 5.6) and ISO8601-compatible. The date/time separator must be 'T' and the time zone must be 'Z' or '+00:00'. Values must be between '1970-01-01T00:00:00Z' and '2100-01-01T00:00:00Z'.
|
|
2037
|
+
*/
|
|
2038
|
+
time_end: string;
|
|
2039
|
+
};
|
|
2040
|
+
/** VolumeConflicts */
|
|
2041
|
+
VolumeConflicts: {
|
|
2042
|
+
/**
|
|
2043
|
+
* Volume Ids
|
|
2044
|
+
* @description Conflicting volumes that are associated with parent entities in the `Accepted` state and therefore will prevent transition of the entity associated with this volume to the `Accepted` state.
|
|
2045
|
+
*/
|
|
2046
|
+
volume_ids: string[];
|
|
2047
|
+
/**
|
|
2048
|
+
* Flyable Region
|
|
2049
|
+
* @description Whether the volume conflicts with the flyable region constructed from the settings applied to the associated parent entity. For example, the SORA classification.
|
|
2050
|
+
*/
|
|
2051
|
+
flyable_region: boolean;
|
|
2052
|
+
};
|
|
2053
|
+
/** VolumeMeta */
|
|
2054
|
+
VolumeMeta: {
|
|
2055
|
+
/** @description Conflict information, if any, that would prevent transition of the associated parent entity to the `Accepted` state. If no conflicts are present, null is returned. */
|
|
2056
|
+
conflicts: components["schemas"]["VolumeConflicts"] | null;
|
|
2057
|
+
};
|
|
2058
|
+
/**
|
|
2059
|
+
* VolumeResponse
|
|
2060
|
+
* @description Contiguous block of geographic space-time.
|
|
2061
|
+
*/
|
|
2062
|
+
VolumeResponse: {
|
|
2063
|
+
/**
|
|
2064
|
+
* Volume ID
|
|
2065
|
+
* Format: uuid
|
|
2066
|
+
* @description Unique Identifier for a volume
|
|
2067
|
+
*/
|
|
2068
|
+
id: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* Type
|
|
2071
|
+
* @default volumes
|
|
2072
|
+
* @constant
|
|
2073
|
+
* @enum {string}
|
|
2074
|
+
*/
|
|
2075
|
+
type?: "volumes";
|
|
2076
|
+
attributes: components["schemas"]["Volume4D-Output"];
|
|
2077
|
+
meta: components["schemas"]["VolumeMeta"];
|
|
2078
|
+
};
|
|
2079
|
+
/**
|
|
2080
|
+
* VolumeSettings
|
|
2081
|
+
* @description Volume generation settings.
|
|
2082
|
+
*/
|
|
2083
|
+
VolumeSettings: {
|
|
2084
|
+
/**
|
|
2085
|
+
* Maximum Length
|
|
2086
|
+
* @description Maximum 4D volume length prior to application of buffering. Overrides default multiplicative behaviour from 4D Volume width. Omission of this field specifies no maximum, a reasonable multiplier of 4D Volume width will be applied to determine length.
|
|
2087
|
+
*/
|
|
2088
|
+
maximum_length?: number | null;
|
|
2089
|
+
};
|
|
2090
|
+
/** WaypointDetailAttributes */
|
|
2091
|
+
WaypointDetailAttributes: {
|
|
2092
|
+
/**
|
|
2093
|
+
* Waypoints
|
|
2094
|
+
* @description Detailed points defining a Flightplan that must be passed through along with flight parameters, including additional calculated fields.
|
|
2095
|
+
*/
|
|
2096
|
+
waypoints: (components["schemas"]["StartWaypointDetail"] | components["schemas"]["GotoWaypointDetail"])[];
|
|
2097
|
+
};
|
|
2098
|
+
/**
|
|
2099
|
+
* WaypointDetailResponse
|
|
2100
|
+
* @description Detailed Waypoints for a Flightplan
|
|
2101
|
+
*/
|
|
2102
|
+
WaypointDetailResponse: {
|
|
2103
|
+
/**
|
|
2104
|
+
* Flightplan ID
|
|
2105
|
+
* Format: uuid
|
|
2106
|
+
* @description Unique identifier of the flightplan.
|
|
2107
|
+
*/
|
|
2108
|
+
id: string;
|
|
2109
|
+
/**
|
|
2110
|
+
* Type
|
|
2111
|
+
* @default waypoint_detail
|
|
2112
|
+
* @constant
|
|
2113
|
+
* @enum {string}
|
|
2114
|
+
*/
|
|
2115
|
+
type?: "waypoint_detail";
|
|
2116
|
+
attributes: components["schemas"]["WaypointDetailAttributes"];
|
|
2117
|
+
};
|
|
2118
|
+
/**
|
|
2119
|
+
* Wgs84Point
|
|
2120
|
+
* @description Point on the earth's surface.
|
|
2121
|
+
*/
|
|
2122
|
+
Wgs84Point: {
|
|
2123
|
+
/**
|
|
2124
|
+
* Lat
|
|
2125
|
+
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
2126
|
+
*/
|
|
2127
|
+
lat: number;
|
|
2128
|
+
/**
|
|
2129
|
+
* Lng
|
|
2130
|
+
* @description Degrees of longitude east of the Prime Meridian, with reference to the WGS84 ellipsoid.
|
|
2131
|
+
*/
|
|
2132
|
+
lng: number;
|
|
2133
|
+
};
|
|
2134
|
+
/**
|
|
2135
|
+
* Wgs84Position
|
|
2136
|
+
* @description Point defined in WGS84 Coordinates with altitude above ground.
|
|
2137
|
+
*/
|
|
2138
|
+
Wgs84Position: {
|
|
2139
|
+
/**
|
|
2140
|
+
* Lat
|
|
2141
|
+
* @description Degrees of latitude north of the equator, with reference to the WGS84 ellipsoid.
|
|
2142
|
+
*/
|
|
2143
|
+
lat: number;
|
|
2144
|
+
/**
|
|
2145
|
+
* Lng
|
|
2146
|
+
* @description Degrees of longitude east of the Prime Meridian, with reference to the WGS84 ellipsoid.
|
|
2147
|
+
*/
|
|
2148
|
+
lng: number;
|
|
2149
|
+
/** Altitude */
|
|
2150
|
+
altitude: number;
|
|
2151
|
+
};
|
|
2152
|
+
/** WindParameters */
|
|
2153
|
+
WindParameters: {
|
|
2154
|
+
/**
|
|
2155
|
+
* Direction
|
|
2156
|
+
* @description The mean wind direction in degrees from which the wind is coming from.
|
|
2157
|
+
* The heading is defined as clockwise from true north. For example:
|
|
2158
|
+
*
|
|
2159
|
+
* - 0 degrees means that wind is moving from North to South
|
|
2160
|
+
* - 180 degrees means that wind is moving from South to North
|
|
2161
|
+
* - 90 degrees means that wind is moving from East to West
|
|
2162
|
+
* - 270 degrees means that wind is moving West to East
|
|
2163
|
+
* @default 0
|
|
2164
|
+
*/
|
|
2165
|
+
direction?: number;
|
|
2166
|
+
/**
|
|
2167
|
+
* Speed
|
|
2168
|
+
* @description The mean wind speed in metres per second
|
|
2169
|
+
* @default 0
|
|
2170
|
+
*/
|
|
2171
|
+
speed?: number;
|
|
2172
|
+
};
|
|
2173
|
+
};
|
|
2174
|
+
responses: never;
|
|
2175
|
+
parameters: never;
|
|
2176
|
+
requestBodies: never;
|
|
2177
|
+
headers: never;
|
|
2178
|
+
pathItems: never;
|
|
2179
|
+
}
|
|
2180
|
+
export type $defs = Record<string, never>;
|
|
2181
|
+
export interface operations {
|
|
2182
|
+
api_login_v1_login_post: {
|
|
2183
|
+
parameters: {
|
|
2184
|
+
query?: never;
|
|
2185
|
+
header?: never;
|
|
2186
|
+
path?: never;
|
|
2187
|
+
cookie?: never;
|
|
2188
|
+
};
|
|
2189
|
+
requestBody: {
|
|
2190
|
+
content: {
|
|
2191
|
+
"application/json": components["schemas"]["LoginRequest"];
|
|
2192
|
+
};
|
|
2193
|
+
};
|
|
2194
|
+
responses: {
|
|
2195
|
+
/** @description Successful Response */
|
|
2196
|
+
200: {
|
|
2197
|
+
headers: {
|
|
2198
|
+
[name: string]: unknown;
|
|
2199
|
+
};
|
|
2200
|
+
content: {
|
|
2201
|
+
"application/json": components["schemas"]["LoginResponse"];
|
|
2202
|
+
};
|
|
2203
|
+
};
|
|
2204
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2205
|
+
400: {
|
|
2206
|
+
headers: {
|
|
2207
|
+
[name: string]: unknown;
|
|
2208
|
+
};
|
|
2209
|
+
content: {
|
|
2210
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2211
|
+
};
|
|
2212
|
+
};
|
|
2213
|
+
/** @description Username/password combination is not valid. */
|
|
2214
|
+
401: {
|
|
2215
|
+
headers: {
|
|
2216
|
+
[name: string]: unknown;
|
|
2217
|
+
};
|
|
2218
|
+
content: {
|
|
2219
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2220
|
+
};
|
|
2221
|
+
};
|
|
2222
|
+
/** @description Validation Error */
|
|
2223
|
+
422: {
|
|
2224
|
+
headers: {
|
|
2225
|
+
[name: string]: unknown;
|
|
2226
|
+
};
|
|
2227
|
+
content: {
|
|
2228
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2229
|
+
};
|
|
2230
|
+
};
|
|
2231
|
+
};
|
|
2232
|
+
};
|
|
2233
|
+
flightplan_list_v1_flightplans__get: {
|
|
2234
|
+
parameters: {
|
|
2235
|
+
query?: {
|
|
2236
|
+
"filter[state]"?: components["schemas"]["AirspaceRestrictionState"][];
|
|
2237
|
+
};
|
|
2238
|
+
header?: never;
|
|
2239
|
+
path?: never;
|
|
2240
|
+
cookie?: never;
|
|
2241
|
+
};
|
|
2242
|
+
requestBody?: never;
|
|
2243
|
+
responses: {
|
|
2244
|
+
/** @description Successful Response */
|
|
2245
|
+
200: {
|
|
2246
|
+
headers: {
|
|
2247
|
+
[name: string]: unknown;
|
|
2248
|
+
};
|
|
2249
|
+
content: {
|
|
2250
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_FlightplanResponse__"];
|
|
2251
|
+
};
|
|
2252
|
+
};
|
|
2253
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2254
|
+
400: {
|
|
2255
|
+
headers: {
|
|
2256
|
+
[name: string]: unknown;
|
|
2257
|
+
};
|
|
2258
|
+
content: {
|
|
2259
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2260
|
+
};
|
|
2261
|
+
};
|
|
2262
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2263
|
+
401: {
|
|
2264
|
+
headers: {
|
|
2265
|
+
[name: string]: unknown;
|
|
2266
|
+
};
|
|
2267
|
+
content: {
|
|
2268
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2269
|
+
};
|
|
2270
|
+
};
|
|
2271
|
+
/** @description Validation Error */
|
|
2272
|
+
422: {
|
|
2273
|
+
headers: {
|
|
2274
|
+
[name: string]: unknown;
|
|
2275
|
+
};
|
|
2276
|
+
content: {
|
|
2277
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2278
|
+
};
|
|
2279
|
+
};
|
|
2280
|
+
};
|
|
2281
|
+
};
|
|
2282
|
+
flightplan_create_v1_flightplans__post: {
|
|
2283
|
+
parameters: {
|
|
2284
|
+
query?: never;
|
|
2285
|
+
header?: never;
|
|
2286
|
+
path?: never;
|
|
2287
|
+
cookie?: never;
|
|
2288
|
+
};
|
|
2289
|
+
requestBody: {
|
|
2290
|
+
content: {
|
|
2291
|
+
"application/json": components["schemas"]["Flightplan-Input"];
|
|
2292
|
+
};
|
|
2293
|
+
};
|
|
2294
|
+
responses: {
|
|
2295
|
+
/** @description Successful Response */
|
|
2296
|
+
201: {
|
|
2297
|
+
headers: {
|
|
2298
|
+
[name: string]: unknown;
|
|
2299
|
+
};
|
|
2300
|
+
content: {
|
|
2301
|
+
"application/json": components["schemas"]["JsonApiResponse_FlightplanResponse_"];
|
|
2302
|
+
};
|
|
2303
|
+
};
|
|
2304
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2305
|
+
400: {
|
|
2306
|
+
headers: {
|
|
2307
|
+
[name: string]: unknown;
|
|
2308
|
+
};
|
|
2309
|
+
content: {
|
|
2310
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2311
|
+
};
|
|
2312
|
+
};
|
|
2313
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2314
|
+
401: {
|
|
2315
|
+
headers: {
|
|
2316
|
+
[name: string]: unknown;
|
|
2317
|
+
};
|
|
2318
|
+
content: {
|
|
2319
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2320
|
+
};
|
|
2321
|
+
};
|
|
2322
|
+
/** @description Validation Error */
|
|
2323
|
+
422: {
|
|
2324
|
+
headers: {
|
|
2325
|
+
[name: string]: unknown;
|
|
2326
|
+
};
|
|
2327
|
+
content: {
|
|
2328
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2329
|
+
};
|
|
2330
|
+
};
|
|
2331
|
+
};
|
|
2332
|
+
};
|
|
2333
|
+
flightplan_single_v1_flightplans__flightplan_id__get: {
|
|
2334
|
+
parameters: {
|
|
2335
|
+
query?: never;
|
|
2336
|
+
header?: never;
|
|
2337
|
+
path: {
|
|
2338
|
+
/** @description Unique identifier of the flightplan. */
|
|
2339
|
+
flightplan_id: string;
|
|
2340
|
+
};
|
|
2341
|
+
cookie?: never;
|
|
2342
|
+
};
|
|
2343
|
+
requestBody?: never;
|
|
2344
|
+
responses: {
|
|
2345
|
+
/** @description Successful Response */
|
|
2346
|
+
200: {
|
|
2347
|
+
headers: {
|
|
2348
|
+
[name: string]: unknown;
|
|
2349
|
+
};
|
|
2350
|
+
content: {
|
|
2351
|
+
"application/json": components["schemas"]["JsonApiResponse_FlightplanResponse_"];
|
|
2352
|
+
};
|
|
2353
|
+
};
|
|
2354
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2355
|
+
400: {
|
|
2356
|
+
headers: {
|
|
2357
|
+
[name: string]: unknown;
|
|
2358
|
+
};
|
|
2359
|
+
content: {
|
|
2360
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2361
|
+
};
|
|
2362
|
+
};
|
|
2363
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2364
|
+
401: {
|
|
2365
|
+
headers: {
|
|
2366
|
+
[name: string]: unknown;
|
|
2367
|
+
};
|
|
2368
|
+
content: {
|
|
2369
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2370
|
+
};
|
|
2371
|
+
};
|
|
2372
|
+
/** @description The requested resource could not be found */
|
|
2373
|
+
404: {
|
|
2374
|
+
headers: {
|
|
2375
|
+
[name: string]: unknown;
|
|
2376
|
+
};
|
|
2377
|
+
content: {
|
|
2378
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2379
|
+
};
|
|
2380
|
+
};
|
|
2381
|
+
/** @description Validation Error */
|
|
2382
|
+
422: {
|
|
2383
|
+
headers: {
|
|
2384
|
+
[name: string]: unknown;
|
|
2385
|
+
};
|
|
2386
|
+
content: {
|
|
2387
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2388
|
+
};
|
|
2389
|
+
};
|
|
2390
|
+
};
|
|
2391
|
+
};
|
|
2392
|
+
flightplan_replace_v1_flightplans__flightplan_id__put: {
|
|
2393
|
+
parameters: {
|
|
2394
|
+
query?: never;
|
|
2395
|
+
header?: never;
|
|
2396
|
+
path: {
|
|
2397
|
+
/** @description Unique identifier of the flightplan. */
|
|
2398
|
+
flightplan_id: string;
|
|
2399
|
+
};
|
|
2400
|
+
cookie?: never;
|
|
2401
|
+
};
|
|
2402
|
+
requestBody: {
|
|
2403
|
+
content: {
|
|
2404
|
+
"application/json": components["schemas"]["Flightplan-Input"];
|
|
2405
|
+
};
|
|
2406
|
+
};
|
|
2407
|
+
responses: {
|
|
2408
|
+
/** @description Successful Response */
|
|
2409
|
+
200: {
|
|
2410
|
+
headers: {
|
|
2411
|
+
[name: string]: unknown;
|
|
2412
|
+
};
|
|
2413
|
+
content: {
|
|
2414
|
+
"application/json": components["schemas"]["JsonApiResponse_FlightplanResponse_"];
|
|
2415
|
+
};
|
|
2416
|
+
};
|
|
2417
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2418
|
+
400: {
|
|
2419
|
+
headers: {
|
|
2420
|
+
[name: string]: unknown;
|
|
2421
|
+
};
|
|
2422
|
+
content: {
|
|
2423
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2424
|
+
};
|
|
2425
|
+
};
|
|
2426
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2427
|
+
401: {
|
|
2428
|
+
headers: {
|
|
2429
|
+
[name: string]: unknown;
|
|
2430
|
+
};
|
|
2431
|
+
content: {
|
|
2432
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2433
|
+
};
|
|
2434
|
+
};
|
|
2435
|
+
/** @description Attempted request is forbidden */
|
|
2436
|
+
403: {
|
|
2437
|
+
headers: {
|
|
2438
|
+
[name: string]: unknown;
|
|
2439
|
+
};
|
|
2440
|
+
content: {
|
|
2441
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2442
|
+
};
|
|
2443
|
+
};
|
|
2444
|
+
/** @description The requested resource could not be found */
|
|
2445
|
+
404: {
|
|
2446
|
+
headers: {
|
|
2447
|
+
[name: string]: unknown;
|
|
2448
|
+
};
|
|
2449
|
+
content: {
|
|
2450
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2451
|
+
};
|
|
2452
|
+
};
|
|
2453
|
+
/** @description Validation Error */
|
|
2454
|
+
422: {
|
|
2455
|
+
headers: {
|
|
2456
|
+
[name: string]: unknown;
|
|
2457
|
+
};
|
|
2458
|
+
content: {
|
|
2459
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2464
|
+
flightplan_waypoints_detail_v1_flightplans__flightplan_id__waypoints_detail_get: {
|
|
2465
|
+
parameters: {
|
|
2466
|
+
query?: never;
|
|
2467
|
+
header?: never;
|
|
2468
|
+
path: {
|
|
2469
|
+
/** @description Unique identifier of the flightplan. */
|
|
2470
|
+
flightplan_id: string;
|
|
2471
|
+
};
|
|
2472
|
+
cookie?: never;
|
|
2473
|
+
};
|
|
2474
|
+
requestBody?: never;
|
|
2475
|
+
responses: {
|
|
2476
|
+
/** @description Successful Response */
|
|
2477
|
+
200: {
|
|
2478
|
+
headers: {
|
|
2479
|
+
[name: string]: unknown;
|
|
2480
|
+
};
|
|
2481
|
+
content: {
|
|
2482
|
+
"application/json": components["schemas"]["JsonApiResponse_WaypointDetailResponse_"];
|
|
2483
|
+
};
|
|
2484
|
+
};
|
|
2485
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2486
|
+
400: {
|
|
2487
|
+
headers: {
|
|
2488
|
+
[name: string]: unknown;
|
|
2489
|
+
};
|
|
2490
|
+
content: {
|
|
2491
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2492
|
+
};
|
|
2493
|
+
};
|
|
2494
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2495
|
+
401: {
|
|
2496
|
+
headers: {
|
|
2497
|
+
[name: string]: unknown;
|
|
2498
|
+
};
|
|
2499
|
+
content: {
|
|
2500
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2503
|
+
/** @description The requested resource could not be found */
|
|
2504
|
+
404: {
|
|
2505
|
+
headers: {
|
|
2506
|
+
[name: string]: unknown;
|
|
2507
|
+
};
|
|
2508
|
+
content: {
|
|
2509
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2510
|
+
};
|
|
2511
|
+
};
|
|
2512
|
+
/** @description Validation Error */
|
|
2513
|
+
422: {
|
|
2514
|
+
headers: {
|
|
2515
|
+
[name: string]: unknown;
|
|
2516
|
+
};
|
|
2517
|
+
content: {
|
|
2518
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2519
|
+
};
|
|
2520
|
+
};
|
|
2521
|
+
};
|
|
2522
|
+
};
|
|
2523
|
+
flightplan_statistics_v1_flightplans__flightplan_id__statistics_get: {
|
|
2524
|
+
parameters: {
|
|
2525
|
+
query?: never;
|
|
2526
|
+
header?: never;
|
|
2527
|
+
path: {
|
|
2528
|
+
/** @description Unique identifier of the flightplan. */
|
|
2529
|
+
flightplan_id: string;
|
|
2530
|
+
};
|
|
2531
|
+
cookie?: never;
|
|
2532
|
+
};
|
|
2533
|
+
requestBody?: never;
|
|
2534
|
+
responses: {
|
|
2535
|
+
/** @description Successful Response */
|
|
2536
|
+
200: {
|
|
2537
|
+
headers: {
|
|
2538
|
+
[name: string]: unknown;
|
|
2539
|
+
};
|
|
2540
|
+
content: {
|
|
2541
|
+
"application/json": components["schemas"]["JsonApiResponse_StatisticsResponse_"];
|
|
2542
|
+
};
|
|
2543
|
+
};
|
|
2544
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2545
|
+
400: {
|
|
2546
|
+
headers: {
|
|
2547
|
+
[name: string]: unknown;
|
|
2548
|
+
};
|
|
2549
|
+
content: {
|
|
2550
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2551
|
+
};
|
|
2552
|
+
};
|
|
2553
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2554
|
+
401: {
|
|
2555
|
+
headers: {
|
|
2556
|
+
[name: string]: unknown;
|
|
2557
|
+
};
|
|
2558
|
+
content: {
|
|
2559
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
2562
|
+
/** @description The requested resource could not be found */
|
|
2563
|
+
404: {
|
|
2564
|
+
headers: {
|
|
2565
|
+
[name: string]: unknown;
|
|
2566
|
+
};
|
|
2567
|
+
content: {
|
|
2568
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2569
|
+
};
|
|
2570
|
+
};
|
|
2571
|
+
/** @description Validation Error */
|
|
2572
|
+
422: {
|
|
2573
|
+
headers: {
|
|
2574
|
+
[name: string]: unknown;
|
|
2575
|
+
};
|
|
2576
|
+
content: {
|
|
2577
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2578
|
+
};
|
|
2579
|
+
};
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
flightplan_volumes_v1_flightplans__flightplan_id__volumes_get: {
|
|
2583
|
+
parameters: {
|
|
2584
|
+
query?: never;
|
|
2585
|
+
header?: never;
|
|
2586
|
+
path: {
|
|
2587
|
+
/** @description Unique identifier of the flightplan. */
|
|
2588
|
+
flightplan_id: string;
|
|
2589
|
+
};
|
|
2590
|
+
cookie?: never;
|
|
2591
|
+
};
|
|
2592
|
+
requestBody?: never;
|
|
2593
|
+
responses: {
|
|
2594
|
+
/** @description Successful Response */
|
|
2595
|
+
200: {
|
|
2596
|
+
headers: {
|
|
2597
|
+
[name: string]: unknown;
|
|
2598
|
+
};
|
|
2599
|
+
content: {
|
|
2600
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_VolumeResponse__"];
|
|
2601
|
+
};
|
|
2602
|
+
};
|
|
2603
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2604
|
+
400: {
|
|
2605
|
+
headers: {
|
|
2606
|
+
[name: string]: unknown;
|
|
2607
|
+
};
|
|
2608
|
+
content: {
|
|
2609
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2610
|
+
};
|
|
2611
|
+
};
|
|
2612
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2613
|
+
401: {
|
|
2614
|
+
headers: {
|
|
2615
|
+
[name: string]: unknown;
|
|
2616
|
+
};
|
|
2617
|
+
content: {
|
|
2618
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2619
|
+
};
|
|
2620
|
+
};
|
|
2621
|
+
/** @description The requested resource could not be found */
|
|
2622
|
+
404: {
|
|
2623
|
+
headers: {
|
|
2624
|
+
[name: string]: unknown;
|
|
2625
|
+
};
|
|
2626
|
+
content: {
|
|
2627
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
2630
|
+
/** @description Validation Error */
|
|
2631
|
+
422: {
|
|
2632
|
+
headers: {
|
|
2633
|
+
[name: string]: unknown;
|
|
2634
|
+
};
|
|
2635
|
+
content: {
|
|
2636
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2637
|
+
};
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2640
|
+
};
|
|
2641
|
+
flightplan_conflicts_v1_flightplans__flightplan_id__conflicts_get: {
|
|
2642
|
+
parameters: {
|
|
2643
|
+
query?: never;
|
|
2644
|
+
header?: never;
|
|
2645
|
+
path: {
|
|
2646
|
+
/** @description Unique identifier of the flightplan. */
|
|
2647
|
+
flightplan_id: string;
|
|
2648
|
+
};
|
|
2649
|
+
cookie?: never;
|
|
2650
|
+
};
|
|
2651
|
+
requestBody?: never;
|
|
2652
|
+
responses: {
|
|
2653
|
+
/** @description Successful Response */
|
|
2654
|
+
200: {
|
|
2655
|
+
headers: {
|
|
2656
|
+
[name: string]: unknown;
|
|
2657
|
+
};
|
|
2658
|
+
content: {
|
|
2659
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_Union_FlightplanConflictResponse__AirspaceConstraintConflictResponse___"];
|
|
2660
|
+
};
|
|
2661
|
+
};
|
|
2662
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2663
|
+
400: {
|
|
2664
|
+
headers: {
|
|
2665
|
+
[name: string]: unknown;
|
|
2666
|
+
};
|
|
2667
|
+
content: {
|
|
2668
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2669
|
+
};
|
|
2670
|
+
};
|
|
2671
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2672
|
+
401: {
|
|
2673
|
+
headers: {
|
|
2674
|
+
[name: string]: unknown;
|
|
2675
|
+
};
|
|
2676
|
+
content: {
|
|
2677
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2678
|
+
};
|
|
2679
|
+
};
|
|
2680
|
+
/** @description The requested resource could not be found */
|
|
2681
|
+
404: {
|
|
2682
|
+
headers: {
|
|
2683
|
+
[name: string]: unknown;
|
|
2684
|
+
};
|
|
2685
|
+
content: {
|
|
2686
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2687
|
+
};
|
|
2688
|
+
};
|
|
2689
|
+
/** @description Validation Error */
|
|
2690
|
+
422: {
|
|
2691
|
+
headers: {
|
|
2692
|
+
[name: string]: unknown;
|
|
2693
|
+
};
|
|
2694
|
+
content: {
|
|
2695
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2696
|
+
};
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2700
|
+
flightplan_deconflicted_start_time_v1_flightplans__flightplan_id__start_time_deconflict_get: {
|
|
2701
|
+
parameters: {
|
|
2702
|
+
query?: {
|
|
2703
|
+
start_time?: string | null;
|
|
2704
|
+
};
|
|
2705
|
+
header?: never;
|
|
2706
|
+
path: {
|
|
2707
|
+
/** @description Unique identifier of the flightplan. */
|
|
2708
|
+
flightplan_id: string;
|
|
2709
|
+
};
|
|
2710
|
+
cookie?: never;
|
|
2711
|
+
};
|
|
2712
|
+
requestBody?: never;
|
|
2713
|
+
responses: {
|
|
2714
|
+
/** @description Successful Response */
|
|
2715
|
+
200: {
|
|
2716
|
+
headers: {
|
|
2717
|
+
[name: string]: unknown;
|
|
2718
|
+
};
|
|
2719
|
+
content: {
|
|
2720
|
+
"application/json": components["schemas"]["JsonApiResponse_FlightplanResponse_"];
|
|
2721
|
+
};
|
|
2722
|
+
};
|
|
2723
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2724
|
+
400: {
|
|
2725
|
+
headers: {
|
|
2726
|
+
[name: string]: unknown;
|
|
2727
|
+
};
|
|
2728
|
+
content: {
|
|
2729
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2730
|
+
};
|
|
2731
|
+
};
|
|
2732
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2733
|
+
401: {
|
|
2734
|
+
headers: {
|
|
2735
|
+
[name: string]: unknown;
|
|
2736
|
+
};
|
|
2737
|
+
content: {
|
|
2738
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2739
|
+
};
|
|
2740
|
+
};
|
|
2741
|
+
/** @description The requested resource could not be found */
|
|
2742
|
+
404: {
|
|
2743
|
+
headers: {
|
|
2744
|
+
[name: string]: unknown;
|
|
2745
|
+
};
|
|
2746
|
+
content: {
|
|
2747
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2748
|
+
};
|
|
2749
|
+
};
|
|
2750
|
+
/** @description Validation Error */
|
|
2751
|
+
422: {
|
|
2752
|
+
headers: {
|
|
2753
|
+
[name: string]: unknown;
|
|
2754
|
+
};
|
|
2755
|
+
content: {
|
|
2756
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2757
|
+
};
|
|
2758
|
+
};
|
|
2759
|
+
};
|
|
2760
|
+
};
|
|
2761
|
+
flightplan_state_v1_flightplans__flightplan_id__state_post: {
|
|
2762
|
+
parameters: {
|
|
2763
|
+
query?: never;
|
|
2764
|
+
header?: never;
|
|
2765
|
+
path: {
|
|
2766
|
+
/** @description Unique identifier of the flightplan. */
|
|
2767
|
+
flightplan_id: string;
|
|
2768
|
+
};
|
|
2769
|
+
cookie?: never;
|
|
2770
|
+
};
|
|
2771
|
+
requestBody: {
|
|
2772
|
+
content: {
|
|
2773
|
+
"application/json": components["schemas"]["StateRequest"];
|
|
2774
|
+
};
|
|
2775
|
+
};
|
|
2776
|
+
responses: {
|
|
2777
|
+
/** @description Successful Response */
|
|
2778
|
+
204: {
|
|
2779
|
+
headers: {
|
|
2780
|
+
[name: string]: unknown;
|
|
2781
|
+
};
|
|
2782
|
+
content?: never;
|
|
2783
|
+
};
|
|
2784
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2785
|
+
400: {
|
|
2786
|
+
headers: {
|
|
2787
|
+
[name: string]: unknown;
|
|
2788
|
+
};
|
|
2789
|
+
content: {
|
|
2790
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2791
|
+
};
|
|
2792
|
+
};
|
|
2793
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2794
|
+
401: {
|
|
2795
|
+
headers: {
|
|
2796
|
+
[name: string]: unknown;
|
|
2797
|
+
};
|
|
2798
|
+
content: {
|
|
2799
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2800
|
+
};
|
|
2801
|
+
};
|
|
2802
|
+
/** @description The requested resource could not be found */
|
|
2803
|
+
404: {
|
|
2804
|
+
headers: {
|
|
2805
|
+
[name: string]: unknown;
|
|
2806
|
+
};
|
|
2807
|
+
content: {
|
|
2808
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2809
|
+
};
|
|
2810
|
+
};
|
|
2811
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
2812
|
+
409: {
|
|
2813
|
+
headers: {
|
|
2814
|
+
[name: string]: unknown;
|
|
2815
|
+
};
|
|
2816
|
+
content: {
|
|
2817
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2818
|
+
};
|
|
2819
|
+
};
|
|
2820
|
+
/** @description Validation Error */
|
|
2821
|
+
422: {
|
|
2822
|
+
headers: {
|
|
2823
|
+
[name: string]: unknown;
|
|
2824
|
+
};
|
|
2825
|
+
content: {
|
|
2826
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2827
|
+
};
|
|
2828
|
+
};
|
|
2829
|
+
};
|
|
2830
|
+
};
|
|
2831
|
+
flightplan_content_download_v1_flightplans__flightplan_id__content_get: {
|
|
2832
|
+
parameters: {
|
|
2833
|
+
query?: never;
|
|
2834
|
+
header: {
|
|
2835
|
+
/** @description Accept Header */
|
|
2836
|
+
accept: string;
|
|
2837
|
+
};
|
|
2838
|
+
path: {
|
|
2839
|
+
/** @description Unique identifier of the flightplan. */
|
|
2840
|
+
flightplan_id: string;
|
|
2841
|
+
};
|
|
2842
|
+
cookie?: never;
|
|
2843
|
+
};
|
|
2844
|
+
requestBody?: never;
|
|
2845
|
+
responses: {
|
|
2846
|
+
/** @description Successful Response */
|
|
2847
|
+
200: {
|
|
2848
|
+
headers: {
|
|
2849
|
+
[name: string]: unknown;
|
|
2850
|
+
};
|
|
2851
|
+
content: {
|
|
2852
|
+
"application/vnd.google-earth.kml+xml": unknown;
|
|
2853
|
+
};
|
|
2854
|
+
};
|
|
2855
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2856
|
+
400: {
|
|
2857
|
+
headers: {
|
|
2858
|
+
[name: string]: unknown;
|
|
2859
|
+
};
|
|
2860
|
+
content: {
|
|
2861
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2862
|
+
};
|
|
2863
|
+
};
|
|
2864
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2865
|
+
401: {
|
|
2866
|
+
headers: {
|
|
2867
|
+
[name: string]: unknown;
|
|
2868
|
+
};
|
|
2869
|
+
content: {
|
|
2870
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2871
|
+
};
|
|
2872
|
+
};
|
|
2873
|
+
/** @description The requested resource could not be found */
|
|
2874
|
+
404: {
|
|
2875
|
+
headers: {
|
|
2876
|
+
[name: string]: unknown;
|
|
2877
|
+
};
|
|
2878
|
+
content: {
|
|
2879
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2880
|
+
};
|
|
2881
|
+
};
|
|
2882
|
+
/** @description The Accept header type cannot be fulfilled */
|
|
2883
|
+
406: {
|
|
2884
|
+
headers: {
|
|
2885
|
+
[name: string]: unknown;
|
|
2886
|
+
};
|
|
2887
|
+
content: {
|
|
2888
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2889
|
+
};
|
|
2890
|
+
};
|
|
2891
|
+
/** @description Validation Error */
|
|
2892
|
+
422: {
|
|
2893
|
+
headers: {
|
|
2894
|
+
[name: string]: unknown;
|
|
2895
|
+
};
|
|
2896
|
+
content: {
|
|
2897
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2898
|
+
};
|
|
2899
|
+
};
|
|
2900
|
+
};
|
|
2901
|
+
};
|
|
2902
|
+
airspace_constraint_list_v1_airspace_constraints__get: {
|
|
2903
|
+
parameters: {
|
|
2904
|
+
query?: never;
|
|
2905
|
+
header?: never;
|
|
2906
|
+
path?: never;
|
|
2907
|
+
cookie?: never;
|
|
2908
|
+
};
|
|
2909
|
+
requestBody?: never;
|
|
2910
|
+
responses: {
|
|
2911
|
+
/** @description Successful Response */
|
|
2912
|
+
200: {
|
|
2913
|
+
headers: {
|
|
2914
|
+
[name: string]: unknown;
|
|
2915
|
+
};
|
|
2916
|
+
content: {
|
|
2917
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_AirspaceConstraintResponse__"];
|
|
2918
|
+
};
|
|
2919
|
+
};
|
|
2920
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2921
|
+
400: {
|
|
2922
|
+
headers: {
|
|
2923
|
+
[name: string]: unknown;
|
|
2924
|
+
};
|
|
2925
|
+
content: {
|
|
2926
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2927
|
+
};
|
|
2928
|
+
};
|
|
2929
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2930
|
+
401: {
|
|
2931
|
+
headers: {
|
|
2932
|
+
[name: string]: unknown;
|
|
2933
|
+
};
|
|
2934
|
+
content: {
|
|
2935
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2936
|
+
};
|
|
2937
|
+
};
|
|
2938
|
+
};
|
|
2939
|
+
};
|
|
2940
|
+
airspace_constraint_create_v1_airspace_constraints__post: {
|
|
2941
|
+
parameters: {
|
|
2942
|
+
query?: never;
|
|
2943
|
+
header?: never;
|
|
2944
|
+
path?: never;
|
|
2945
|
+
cookie?: never;
|
|
2946
|
+
};
|
|
2947
|
+
requestBody: {
|
|
2948
|
+
content: {
|
|
2949
|
+
"application/json": components["schemas"]["AirspaceConstraint-Input"];
|
|
2950
|
+
};
|
|
2951
|
+
};
|
|
2952
|
+
responses: {
|
|
2953
|
+
/** @description Successful Response */
|
|
2954
|
+
201: {
|
|
2955
|
+
headers: {
|
|
2956
|
+
[name: string]: unknown;
|
|
2957
|
+
};
|
|
2958
|
+
content: {
|
|
2959
|
+
"application/json": components["schemas"]["JsonApiResponse_AirspaceConstraintResponse_"];
|
|
2960
|
+
};
|
|
2961
|
+
};
|
|
2962
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
2963
|
+
400: {
|
|
2964
|
+
headers: {
|
|
2965
|
+
[name: string]: unknown;
|
|
2966
|
+
};
|
|
2967
|
+
content: {
|
|
2968
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2969
|
+
};
|
|
2970
|
+
};
|
|
2971
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
2972
|
+
401: {
|
|
2973
|
+
headers: {
|
|
2974
|
+
[name: string]: unknown;
|
|
2975
|
+
};
|
|
2976
|
+
content: {
|
|
2977
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2978
|
+
};
|
|
2979
|
+
};
|
|
2980
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
2981
|
+
409: {
|
|
2982
|
+
headers: {
|
|
2983
|
+
[name: string]: unknown;
|
|
2984
|
+
};
|
|
2985
|
+
content: {
|
|
2986
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2987
|
+
};
|
|
2988
|
+
};
|
|
2989
|
+
/** @description Validation Error */
|
|
2990
|
+
422: {
|
|
2991
|
+
headers: {
|
|
2992
|
+
[name: string]: unknown;
|
|
2993
|
+
};
|
|
2994
|
+
content: {
|
|
2995
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
2996
|
+
};
|
|
2997
|
+
};
|
|
2998
|
+
};
|
|
2999
|
+
};
|
|
3000
|
+
airspace_constraint_single_v1_airspace_constraints__airspace_constraint_id__get: {
|
|
3001
|
+
parameters: {
|
|
3002
|
+
query?: never;
|
|
3003
|
+
header?: never;
|
|
3004
|
+
path: {
|
|
3005
|
+
/** @description Unique identifier of the Airspace Constraint. */
|
|
3006
|
+
airspace_constraint_id: string;
|
|
3007
|
+
};
|
|
3008
|
+
cookie?: never;
|
|
3009
|
+
};
|
|
3010
|
+
requestBody?: never;
|
|
3011
|
+
responses: {
|
|
3012
|
+
/** @description Successful Response */
|
|
3013
|
+
200: {
|
|
3014
|
+
headers: {
|
|
3015
|
+
[name: string]: unknown;
|
|
3016
|
+
};
|
|
3017
|
+
content: {
|
|
3018
|
+
"application/json": components["schemas"]["JsonApiResponse_AirspaceConstraintResponse_"];
|
|
3019
|
+
};
|
|
3020
|
+
};
|
|
3021
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3022
|
+
400: {
|
|
3023
|
+
headers: {
|
|
3024
|
+
[name: string]: unknown;
|
|
3025
|
+
};
|
|
3026
|
+
content: {
|
|
3027
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3028
|
+
};
|
|
3029
|
+
};
|
|
3030
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3031
|
+
401: {
|
|
3032
|
+
headers: {
|
|
3033
|
+
[name: string]: unknown;
|
|
3034
|
+
};
|
|
3035
|
+
content: {
|
|
3036
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3037
|
+
};
|
|
3038
|
+
};
|
|
3039
|
+
/** @description The requested resource could not be found */
|
|
3040
|
+
404: {
|
|
3041
|
+
headers: {
|
|
3042
|
+
[name: string]: unknown;
|
|
3043
|
+
};
|
|
3044
|
+
content: {
|
|
3045
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3046
|
+
};
|
|
3047
|
+
};
|
|
3048
|
+
/** @description Validation Error */
|
|
3049
|
+
422: {
|
|
3050
|
+
headers: {
|
|
3051
|
+
[name: string]: unknown;
|
|
3052
|
+
};
|
|
3053
|
+
content: {
|
|
3054
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3055
|
+
};
|
|
3056
|
+
};
|
|
3057
|
+
};
|
|
3058
|
+
};
|
|
3059
|
+
airspace_constraint_update_v1_airspace_constraints__airspace_constraint_id__put: {
|
|
3060
|
+
parameters: {
|
|
3061
|
+
query?: never;
|
|
3062
|
+
header?: never;
|
|
3063
|
+
path: {
|
|
3064
|
+
/** @description Unique identifier of the Airspace Constraint. */
|
|
3065
|
+
airspace_constraint_id: string;
|
|
3066
|
+
};
|
|
3067
|
+
cookie?: never;
|
|
3068
|
+
};
|
|
3069
|
+
requestBody: {
|
|
3070
|
+
content: {
|
|
3071
|
+
"application/json": components["schemas"]["AirspaceConstraint-Input"];
|
|
3072
|
+
};
|
|
3073
|
+
};
|
|
3074
|
+
responses: {
|
|
3075
|
+
/** @description Successful Response */
|
|
3076
|
+
200: {
|
|
3077
|
+
headers: {
|
|
3078
|
+
[name: string]: unknown;
|
|
3079
|
+
};
|
|
3080
|
+
content: {
|
|
3081
|
+
"application/json": components["schemas"]["JsonApiResponse_AirspaceConstraintResponse_"];
|
|
3082
|
+
};
|
|
3083
|
+
};
|
|
3084
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3085
|
+
400: {
|
|
3086
|
+
headers: {
|
|
3087
|
+
[name: string]: unknown;
|
|
3088
|
+
};
|
|
3089
|
+
content: {
|
|
3090
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3091
|
+
};
|
|
3092
|
+
};
|
|
3093
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3094
|
+
401: {
|
|
3095
|
+
headers: {
|
|
3096
|
+
[name: string]: unknown;
|
|
3097
|
+
};
|
|
3098
|
+
content: {
|
|
3099
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3100
|
+
};
|
|
3101
|
+
};
|
|
3102
|
+
/** @description Attempted request is forbidden */
|
|
3103
|
+
403: {
|
|
3104
|
+
headers: {
|
|
3105
|
+
[name: string]: unknown;
|
|
3106
|
+
};
|
|
3107
|
+
content: {
|
|
3108
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3109
|
+
};
|
|
3110
|
+
};
|
|
3111
|
+
/** @description The requested resource could not be found */
|
|
3112
|
+
404: {
|
|
3113
|
+
headers: {
|
|
3114
|
+
[name: string]: unknown;
|
|
3115
|
+
};
|
|
3116
|
+
content: {
|
|
3117
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3118
|
+
};
|
|
3119
|
+
};
|
|
3120
|
+
/** @description Validation Error */
|
|
3121
|
+
422: {
|
|
3122
|
+
headers: {
|
|
3123
|
+
[name: string]: unknown;
|
|
3124
|
+
};
|
|
3125
|
+
content: {
|
|
3126
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3127
|
+
};
|
|
3128
|
+
};
|
|
3129
|
+
};
|
|
3130
|
+
};
|
|
3131
|
+
airspace_constraints_state_v1_airspace_constraints__airspace_constraints_id__state_post: {
|
|
3132
|
+
parameters: {
|
|
3133
|
+
query?: never;
|
|
3134
|
+
header?: never;
|
|
3135
|
+
path: {
|
|
3136
|
+
/** @description Unique identifier of the Airspace Constraint. */
|
|
3137
|
+
airspace_constraints_id: string;
|
|
3138
|
+
};
|
|
3139
|
+
cookie?: never;
|
|
3140
|
+
};
|
|
3141
|
+
requestBody: {
|
|
3142
|
+
content: {
|
|
3143
|
+
"application/json": components["schemas"]["AirspaceConstraintStateRequest"];
|
|
3144
|
+
};
|
|
3145
|
+
};
|
|
3146
|
+
responses: {
|
|
3147
|
+
/** @description Successful Response */
|
|
3148
|
+
204: {
|
|
3149
|
+
headers: {
|
|
3150
|
+
[name: string]: unknown;
|
|
3151
|
+
};
|
|
3152
|
+
content?: never;
|
|
3153
|
+
};
|
|
3154
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3155
|
+
400: {
|
|
3156
|
+
headers: {
|
|
3157
|
+
[name: string]: unknown;
|
|
3158
|
+
};
|
|
3159
|
+
content: {
|
|
3160
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3161
|
+
};
|
|
3162
|
+
};
|
|
3163
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3164
|
+
401: {
|
|
3165
|
+
headers: {
|
|
3166
|
+
[name: string]: unknown;
|
|
3167
|
+
};
|
|
3168
|
+
content: {
|
|
3169
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3170
|
+
};
|
|
3171
|
+
};
|
|
3172
|
+
/** @description The requested resource could not be found */
|
|
3173
|
+
404: {
|
|
3174
|
+
headers: {
|
|
3175
|
+
[name: string]: unknown;
|
|
3176
|
+
};
|
|
3177
|
+
content: {
|
|
3178
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3179
|
+
};
|
|
3180
|
+
};
|
|
3181
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
3182
|
+
409: {
|
|
3183
|
+
headers: {
|
|
3184
|
+
[name: string]: unknown;
|
|
3185
|
+
};
|
|
3186
|
+
content: {
|
|
3187
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3188
|
+
};
|
|
3189
|
+
};
|
|
3190
|
+
/** @description Validation Error */
|
|
3191
|
+
422: {
|
|
3192
|
+
headers: {
|
|
3193
|
+
[name: string]: unknown;
|
|
3194
|
+
};
|
|
3195
|
+
content: {
|
|
3196
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3197
|
+
};
|
|
3198
|
+
};
|
|
3199
|
+
};
|
|
3200
|
+
};
|
|
3201
|
+
create_pathing_task_v1_pathing_tasks__post: {
|
|
3202
|
+
parameters: {
|
|
3203
|
+
query?: never;
|
|
3204
|
+
header?: never;
|
|
3205
|
+
path?: never;
|
|
3206
|
+
cookie?: never;
|
|
3207
|
+
};
|
|
3208
|
+
requestBody: {
|
|
3209
|
+
content: {
|
|
3210
|
+
"application/json": components["schemas"]["PathingTaskRequest"];
|
|
3211
|
+
};
|
|
3212
|
+
};
|
|
3213
|
+
responses: {
|
|
3214
|
+
/** @description Successful Response */
|
|
3215
|
+
201: {
|
|
3216
|
+
headers: {
|
|
3217
|
+
[name: string]: unknown;
|
|
3218
|
+
};
|
|
3219
|
+
content: {
|
|
3220
|
+
"application/json": components["schemas"]["JsonApiResponse_PathingTaskResponse_"];
|
|
3221
|
+
};
|
|
3222
|
+
};
|
|
3223
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3224
|
+
400: {
|
|
3225
|
+
headers: {
|
|
3226
|
+
[name: string]: unknown;
|
|
3227
|
+
};
|
|
3228
|
+
content: {
|
|
3229
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3230
|
+
};
|
|
3231
|
+
};
|
|
3232
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3233
|
+
401: {
|
|
3234
|
+
headers: {
|
|
3235
|
+
[name: string]: unknown;
|
|
3236
|
+
};
|
|
3237
|
+
content: {
|
|
3238
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3239
|
+
};
|
|
3240
|
+
};
|
|
3241
|
+
/** @description Validation Error */
|
|
3242
|
+
422: {
|
|
3243
|
+
headers: {
|
|
3244
|
+
[name: string]: unknown;
|
|
3245
|
+
};
|
|
3246
|
+
content: {
|
|
3247
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3248
|
+
};
|
|
3249
|
+
};
|
|
3250
|
+
};
|
|
3251
|
+
};
|
|
3252
|
+
get_pathing_task_v1_pathing_tasks__pathing_task_id__get: {
|
|
3253
|
+
parameters: {
|
|
3254
|
+
query?: never;
|
|
3255
|
+
header?: never;
|
|
3256
|
+
path: {
|
|
3257
|
+
/** @description Unique identifier of the pathing task */
|
|
3258
|
+
pathing_task_id: string;
|
|
3259
|
+
};
|
|
3260
|
+
cookie?: never;
|
|
3261
|
+
};
|
|
3262
|
+
requestBody?: never;
|
|
3263
|
+
responses: {
|
|
3264
|
+
/** @description Successful Response */
|
|
3265
|
+
200: {
|
|
3266
|
+
headers: {
|
|
3267
|
+
[name: string]: unknown;
|
|
3268
|
+
};
|
|
3269
|
+
content: {
|
|
3270
|
+
"application/json": components["schemas"]["JsonApiResponse_PathingTaskResponse_"];
|
|
3271
|
+
};
|
|
3272
|
+
};
|
|
3273
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3274
|
+
400: {
|
|
3275
|
+
headers: {
|
|
3276
|
+
[name: string]: unknown;
|
|
3277
|
+
};
|
|
3278
|
+
content: {
|
|
3279
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3280
|
+
};
|
|
3281
|
+
};
|
|
3282
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3283
|
+
401: {
|
|
3284
|
+
headers: {
|
|
3285
|
+
[name: string]: unknown;
|
|
3286
|
+
};
|
|
3287
|
+
content: {
|
|
3288
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3289
|
+
};
|
|
3290
|
+
};
|
|
3291
|
+
/** @description The requested resource could not be found */
|
|
3292
|
+
404: {
|
|
3293
|
+
headers: {
|
|
3294
|
+
[name: string]: unknown;
|
|
3295
|
+
};
|
|
3296
|
+
content: {
|
|
3297
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3298
|
+
};
|
|
3299
|
+
};
|
|
3300
|
+
/** @description Validation Error */
|
|
3301
|
+
422: {
|
|
3302
|
+
headers: {
|
|
3303
|
+
[name: string]: unknown;
|
|
3304
|
+
};
|
|
3305
|
+
content: {
|
|
3306
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3307
|
+
};
|
|
3308
|
+
};
|
|
3309
|
+
};
|
|
3310
|
+
};
|
|
3311
|
+
aircraft_list_v1_aircraft__get: {
|
|
3312
|
+
parameters: {
|
|
3313
|
+
query?: never;
|
|
3314
|
+
header?: never;
|
|
3315
|
+
path?: never;
|
|
3316
|
+
cookie?: never;
|
|
3317
|
+
};
|
|
3318
|
+
requestBody?: never;
|
|
3319
|
+
responses: {
|
|
3320
|
+
/** @description Successful Response */
|
|
3321
|
+
200: {
|
|
3322
|
+
headers: {
|
|
3323
|
+
[name: string]: unknown;
|
|
3324
|
+
};
|
|
3325
|
+
content: {
|
|
3326
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_AircraftResponse__"];
|
|
3327
|
+
};
|
|
3328
|
+
};
|
|
3329
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3330
|
+
400: {
|
|
3331
|
+
headers: {
|
|
3332
|
+
[name: string]: unknown;
|
|
3333
|
+
};
|
|
3334
|
+
content: {
|
|
3335
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3336
|
+
};
|
|
3337
|
+
};
|
|
3338
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3339
|
+
401: {
|
|
3340
|
+
headers: {
|
|
3341
|
+
[name: string]: unknown;
|
|
3342
|
+
};
|
|
3343
|
+
content: {
|
|
3344
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3345
|
+
};
|
|
3346
|
+
};
|
|
3347
|
+
};
|
|
3348
|
+
};
|
|
3349
|
+
aircraft_single_v1_aircraft__aircraft_id__get: {
|
|
3350
|
+
parameters: {
|
|
3351
|
+
query?: never;
|
|
3352
|
+
header?: never;
|
|
3353
|
+
path: {
|
|
3354
|
+
/** @description Unique identifier for an aircraft. */
|
|
3355
|
+
aircraft_id: string;
|
|
3356
|
+
};
|
|
3357
|
+
cookie?: never;
|
|
3358
|
+
};
|
|
3359
|
+
requestBody?: never;
|
|
3360
|
+
responses: {
|
|
3361
|
+
/** @description Successful Response */
|
|
3362
|
+
200: {
|
|
3363
|
+
headers: {
|
|
3364
|
+
[name: string]: unknown;
|
|
3365
|
+
};
|
|
3366
|
+
content: {
|
|
3367
|
+
"application/json": components["schemas"]["JsonApiResponse_AircraftResponse_"];
|
|
3368
|
+
};
|
|
3369
|
+
};
|
|
3370
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3371
|
+
400: {
|
|
3372
|
+
headers: {
|
|
3373
|
+
[name: string]: unknown;
|
|
3374
|
+
};
|
|
3375
|
+
content: {
|
|
3376
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3377
|
+
};
|
|
3378
|
+
};
|
|
3379
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3380
|
+
401: {
|
|
3381
|
+
headers: {
|
|
3382
|
+
[name: string]: unknown;
|
|
3383
|
+
};
|
|
3384
|
+
content: {
|
|
3385
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3386
|
+
};
|
|
3387
|
+
};
|
|
3388
|
+
/** @description The requested resource could not be found */
|
|
3389
|
+
404: {
|
|
3390
|
+
headers: {
|
|
3391
|
+
[name: string]: unknown;
|
|
3392
|
+
};
|
|
3393
|
+
content: {
|
|
3394
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3395
|
+
};
|
|
3396
|
+
};
|
|
3397
|
+
/** @description Validation Error */
|
|
3398
|
+
422: {
|
|
3399
|
+
headers: {
|
|
3400
|
+
[name: string]: unknown;
|
|
3401
|
+
};
|
|
3402
|
+
content: {
|
|
3403
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3404
|
+
};
|
|
3405
|
+
};
|
|
3406
|
+
};
|
|
3407
|
+
};
|
|
3408
|
+
chart_list_v1_charts__get: {
|
|
3409
|
+
parameters: {
|
|
3410
|
+
query?: never;
|
|
3411
|
+
header?: never;
|
|
3412
|
+
path?: never;
|
|
3413
|
+
cookie?: never;
|
|
3414
|
+
};
|
|
3415
|
+
requestBody?: never;
|
|
3416
|
+
responses: {
|
|
3417
|
+
/** @description Successful Response */
|
|
3418
|
+
200: {
|
|
3419
|
+
headers: {
|
|
3420
|
+
[name: string]: unknown;
|
|
3421
|
+
};
|
|
3422
|
+
content: {
|
|
3423
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_ChartResponse__"];
|
|
3424
|
+
};
|
|
3425
|
+
};
|
|
3426
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3427
|
+
400: {
|
|
3428
|
+
headers: {
|
|
3429
|
+
[name: string]: unknown;
|
|
3430
|
+
};
|
|
3431
|
+
content: {
|
|
3432
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3433
|
+
};
|
|
3434
|
+
};
|
|
3435
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3436
|
+
401: {
|
|
3437
|
+
headers: {
|
|
3438
|
+
[name: string]: unknown;
|
|
3439
|
+
};
|
|
3440
|
+
content: {
|
|
3441
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3442
|
+
};
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
3445
|
+
};
|
|
3446
|
+
chart_single_v1_charts__chart_id__get: {
|
|
3447
|
+
parameters: {
|
|
3448
|
+
query?: never;
|
|
3449
|
+
header?: never;
|
|
3450
|
+
path: {
|
|
3451
|
+
/** @description Unique identifier for a chart. */
|
|
3452
|
+
chart_id: string;
|
|
3453
|
+
};
|
|
3454
|
+
cookie?: never;
|
|
3455
|
+
};
|
|
3456
|
+
requestBody?: never;
|
|
3457
|
+
responses: {
|
|
3458
|
+
/** @description Successful Response */
|
|
3459
|
+
200: {
|
|
3460
|
+
headers: {
|
|
3461
|
+
[name: string]: unknown;
|
|
3462
|
+
};
|
|
3463
|
+
content: {
|
|
3464
|
+
"application/json": components["schemas"]["JsonApiResponse_ChartResponse_"];
|
|
3465
|
+
};
|
|
3466
|
+
};
|
|
3467
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3468
|
+
400: {
|
|
3469
|
+
headers: {
|
|
3470
|
+
[name: string]: unknown;
|
|
3471
|
+
};
|
|
3472
|
+
content: {
|
|
3473
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3474
|
+
};
|
|
3475
|
+
};
|
|
3476
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3477
|
+
401: {
|
|
3478
|
+
headers: {
|
|
3479
|
+
[name: string]: unknown;
|
|
3480
|
+
};
|
|
3481
|
+
content: {
|
|
3482
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3483
|
+
};
|
|
3484
|
+
};
|
|
3485
|
+
/** @description The requested resource could not be found */
|
|
3486
|
+
404: {
|
|
3487
|
+
headers: {
|
|
3488
|
+
[name: string]: unknown;
|
|
3489
|
+
};
|
|
3490
|
+
content: {
|
|
3491
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3492
|
+
};
|
|
3493
|
+
};
|
|
3494
|
+
/** @description Validation Error */
|
|
3495
|
+
422: {
|
|
3496
|
+
headers: {
|
|
3497
|
+
[name: string]: unknown;
|
|
3498
|
+
};
|
|
3499
|
+
content: {
|
|
3500
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3501
|
+
};
|
|
3502
|
+
};
|
|
3503
|
+
};
|
|
3504
|
+
};
|
|
3505
|
+
sora_sail_score_v1_risk_assessment_sora_v2_5_sail_get: {
|
|
3506
|
+
parameters: {
|
|
3507
|
+
query: {
|
|
3508
|
+
/** @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC. */
|
|
3509
|
+
final_grc: components["schemas"]["GRC"];
|
|
3510
|
+
/** @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
3511
|
+
*
|
|
3512
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
3513
|
+
*
|
|
3514
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
3515
|
+
*
|
|
3516
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
3517
|
+
*
|
|
3518
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
3519
|
+
*
|
|
3520
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
3521
|
+
*
|
|
3522
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
3523
|
+
*
|
|
3524
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
3525
|
+
*
|
|
3526
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
3527
|
+
*
|
|
3528
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
3529
|
+
*
|
|
3530
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
3531
|
+
*
|
|
3532
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
3533
|
+
*
|
|
3534
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
3535
|
+
*
|
|
3536
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
3537
|
+
*
|
|
3538
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
3539
|
+
*
|
|
3540
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
3541
|
+
*
|
|
3542
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
3543
|
+
*
|
|
3544
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
3545
|
+
*
|
|
3546
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
3547
|
+
* */
|
|
3548
|
+
arc: components["schemas"]["ARC"];
|
|
3549
|
+
};
|
|
3550
|
+
header?: never;
|
|
3551
|
+
path?: never;
|
|
3552
|
+
cookie?: never;
|
|
3553
|
+
};
|
|
3554
|
+
requestBody?: never;
|
|
3555
|
+
responses: {
|
|
3556
|
+
/** @description Successful Response */
|
|
3557
|
+
200: {
|
|
3558
|
+
headers: {
|
|
3559
|
+
[name: string]: unknown;
|
|
3560
|
+
};
|
|
3561
|
+
content: {
|
|
3562
|
+
"application/json": components["schemas"]["JsonApiResponse_SailResponse_"];
|
|
3563
|
+
};
|
|
3564
|
+
};
|
|
3565
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3566
|
+
400: {
|
|
3567
|
+
headers: {
|
|
3568
|
+
[name: string]: unknown;
|
|
3569
|
+
};
|
|
3570
|
+
content: {
|
|
3571
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3572
|
+
};
|
|
3573
|
+
};
|
|
3574
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3575
|
+
401: {
|
|
3576
|
+
headers: {
|
|
3577
|
+
[name: string]: unknown;
|
|
3578
|
+
};
|
|
3579
|
+
content: {
|
|
3580
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3581
|
+
};
|
|
3582
|
+
};
|
|
3583
|
+
/** @description Validation Error */
|
|
3584
|
+
422: {
|
|
3585
|
+
headers: {
|
|
3586
|
+
[name: string]: unknown;
|
|
3587
|
+
};
|
|
3588
|
+
content: {
|
|
3589
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3590
|
+
};
|
|
3591
|
+
};
|
|
3592
|
+
};
|
|
3593
|
+
};
|
|
3594
|
+
ARCs_list_v1_risk_assessment_sora_v2_5_air_risk_classifications_get: {
|
|
3595
|
+
parameters: {
|
|
3596
|
+
query?: never;
|
|
3597
|
+
header?: never;
|
|
3598
|
+
path?: never;
|
|
3599
|
+
cookie?: never;
|
|
3600
|
+
};
|
|
3601
|
+
requestBody?: never;
|
|
3602
|
+
responses: {
|
|
3603
|
+
/** @description Successful Response */
|
|
3604
|
+
200: {
|
|
3605
|
+
headers: {
|
|
3606
|
+
[name: string]: unknown;
|
|
3607
|
+
};
|
|
3608
|
+
content: {
|
|
3609
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_ArcResponse__"];
|
|
3610
|
+
};
|
|
3611
|
+
};
|
|
3612
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3613
|
+
400: {
|
|
3614
|
+
headers: {
|
|
3615
|
+
[name: string]: unknown;
|
|
3616
|
+
};
|
|
3617
|
+
content: {
|
|
3618
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3619
|
+
};
|
|
3620
|
+
};
|
|
3621
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3622
|
+
401: {
|
|
3623
|
+
headers: {
|
|
3624
|
+
[name: string]: unknown;
|
|
3625
|
+
};
|
|
3626
|
+
content: {
|
|
3627
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3628
|
+
};
|
|
3629
|
+
};
|
|
3630
|
+
};
|
|
3631
|
+
};
|
|
3632
|
+
arc_single_v1_risk_assessment_sora_v2_5_air_risk_classifications__arc_id__get: {
|
|
3633
|
+
parameters: {
|
|
3634
|
+
query?: never;
|
|
3635
|
+
header?: never;
|
|
3636
|
+
path: {
|
|
3637
|
+
/** @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
3638
|
+
*
|
|
3639
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
3640
|
+
*
|
|
3641
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
3642
|
+
*
|
|
3643
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
3644
|
+
*
|
|
3645
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
3646
|
+
*
|
|
3647
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
3648
|
+
*
|
|
3649
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
3650
|
+
*
|
|
3651
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
3652
|
+
*
|
|
3653
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
3654
|
+
*
|
|
3655
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
3656
|
+
*
|
|
3657
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
3658
|
+
*
|
|
3659
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
3660
|
+
*
|
|
3661
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
3662
|
+
*
|
|
3663
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
3664
|
+
*
|
|
3665
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
3666
|
+
*
|
|
3667
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
3668
|
+
*
|
|
3669
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
3670
|
+
*
|
|
3671
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
3672
|
+
*
|
|
3673
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
3674
|
+
* */
|
|
3675
|
+
arc_id: string;
|
|
3676
|
+
};
|
|
3677
|
+
cookie?: never;
|
|
3678
|
+
};
|
|
3679
|
+
requestBody?: never;
|
|
3680
|
+
responses: {
|
|
3681
|
+
/** @description Successful Response */
|
|
3682
|
+
200: {
|
|
3683
|
+
headers: {
|
|
3684
|
+
[name: string]: unknown;
|
|
3685
|
+
};
|
|
3686
|
+
content: {
|
|
3687
|
+
"application/json": components["schemas"]["JsonApiResponse_ArcResponse_"];
|
|
3688
|
+
};
|
|
3689
|
+
};
|
|
3690
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3691
|
+
400: {
|
|
3692
|
+
headers: {
|
|
3693
|
+
[name: string]: unknown;
|
|
3694
|
+
};
|
|
3695
|
+
content: {
|
|
3696
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3697
|
+
};
|
|
3698
|
+
};
|
|
3699
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3700
|
+
401: {
|
|
3701
|
+
headers: {
|
|
3702
|
+
[name: string]: unknown;
|
|
3703
|
+
};
|
|
3704
|
+
content: {
|
|
3705
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3706
|
+
};
|
|
3707
|
+
};
|
|
3708
|
+
/** @description The requested resource could not be found */
|
|
3709
|
+
404: {
|
|
3710
|
+
headers: {
|
|
3711
|
+
[name: string]: unknown;
|
|
3712
|
+
};
|
|
3713
|
+
content: {
|
|
3714
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3715
|
+
};
|
|
3716
|
+
};
|
|
3717
|
+
/** @description Validation Error */
|
|
3718
|
+
422: {
|
|
3719
|
+
headers: {
|
|
3720
|
+
[name: string]: unknown;
|
|
3721
|
+
};
|
|
3722
|
+
content: {
|
|
3723
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3724
|
+
};
|
|
3725
|
+
};
|
|
3726
|
+
};
|
|
3727
|
+
};
|
|
3728
|
+
sora_report_v1_risk_assessment_sora_v2_5_report_post: {
|
|
3729
|
+
parameters: {
|
|
3730
|
+
query?: never;
|
|
3731
|
+
header?: never;
|
|
3732
|
+
path?: never;
|
|
3733
|
+
cookie?: never;
|
|
3734
|
+
};
|
|
3735
|
+
requestBody: {
|
|
3736
|
+
content: {
|
|
3737
|
+
"application/json": components["schemas"]["SoraReportRequest"];
|
|
3738
|
+
};
|
|
3739
|
+
};
|
|
3740
|
+
responses: {
|
|
3741
|
+
/** @description Successful Response */
|
|
3742
|
+
200: {
|
|
3743
|
+
headers: {
|
|
3744
|
+
[name: string]: unknown;
|
|
3745
|
+
};
|
|
3746
|
+
content: {
|
|
3747
|
+
"application/json": components["schemas"]["JsonApiResponse_SoraReportResponse_"];
|
|
3748
|
+
};
|
|
3749
|
+
};
|
|
3750
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3751
|
+
400: {
|
|
3752
|
+
headers: {
|
|
3753
|
+
[name: string]: unknown;
|
|
3754
|
+
};
|
|
3755
|
+
content: {
|
|
3756
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3757
|
+
};
|
|
3758
|
+
};
|
|
3759
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3760
|
+
401: {
|
|
3761
|
+
headers: {
|
|
3762
|
+
[name: string]: unknown;
|
|
3763
|
+
};
|
|
3764
|
+
content: {
|
|
3765
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3766
|
+
};
|
|
3767
|
+
};
|
|
3768
|
+
/** @description Validation Error */
|
|
3769
|
+
422: {
|
|
3770
|
+
headers: {
|
|
3771
|
+
[name: string]: unknown;
|
|
3772
|
+
};
|
|
3773
|
+
content: {
|
|
3774
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3775
|
+
};
|
|
3776
|
+
};
|
|
3777
|
+
};
|
|
3778
|
+
};
|
|
3779
|
+
semantic_model_volumes_v1_risk_assessment_sora_v2_5_semantic_model_volumes_post: {
|
|
3780
|
+
parameters: {
|
|
3781
|
+
query?: never;
|
|
3782
|
+
header?: never;
|
|
3783
|
+
path?: never;
|
|
3784
|
+
cookie?: never;
|
|
3785
|
+
};
|
|
3786
|
+
requestBody: {
|
|
3787
|
+
content: {
|
|
3788
|
+
"application/json": components["schemas"]["SoraSemanticModelVolumesRequest"];
|
|
3789
|
+
};
|
|
3790
|
+
};
|
|
3791
|
+
responses: {
|
|
3792
|
+
/** @description Successful Response */
|
|
3793
|
+
200: {
|
|
3794
|
+
headers: {
|
|
3795
|
+
[name: string]: unknown;
|
|
3796
|
+
};
|
|
3797
|
+
content: {
|
|
3798
|
+
"application/json": components["schemas"]["JsonApiResponse_GeoJsonCollection_GeoJsonSoraProperties__"];
|
|
3799
|
+
};
|
|
3800
|
+
};
|
|
3801
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3802
|
+
400: {
|
|
3803
|
+
headers: {
|
|
3804
|
+
[name: string]: unknown;
|
|
3805
|
+
};
|
|
3806
|
+
content: {
|
|
3807
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3808
|
+
};
|
|
3809
|
+
};
|
|
3810
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3811
|
+
401: {
|
|
3812
|
+
headers: {
|
|
3813
|
+
[name: string]: unknown;
|
|
3814
|
+
};
|
|
3815
|
+
content: {
|
|
3816
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3817
|
+
};
|
|
3818
|
+
};
|
|
3819
|
+
/** @description Validation Error */
|
|
3820
|
+
422: {
|
|
3821
|
+
headers: {
|
|
3822
|
+
[name: string]: unknown;
|
|
3823
|
+
};
|
|
3824
|
+
content: {
|
|
3825
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3826
|
+
};
|
|
3827
|
+
};
|
|
3828
|
+
};
|
|
3829
|
+
};
|
|
3830
|
+
create_sora_classification_v1_risk_assessment_sora_classifications_post: {
|
|
3831
|
+
parameters: {
|
|
3832
|
+
query?: never;
|
|
3833
|
+
header?: never;
|
|
3834
|
+
path?: never;
|
|
3835
|
+
cookie?: never;
|
|
3836
|
+
};
|
|
3837
|
+
requestBody: {
|
|
3838
|
+
content: {
|
|
3839
|
+
"application/json": components["schemas"]["SoraClassification-Input"];
|
|
3840
|
+
};
|
|
3841
|
+
};
|
|
3842
|
+
responses: {
|
|
3843
|
+
/** @description Successful Response */
|
|
3844
|
+
200: {
|
|
3845
|
+
headers: {
|
|
3846
|
+
[name: string]: unknown;
|
|
3847
|
+
};
|
|
3848
|
+
content: {
|
|
3849
|
+
"application/json": components["schemas"]["JsonApiResponse_SoraClassificationResponse_"];
|
|
3850
|
+
};
|
|
3851
|
+
};
|
|
3852
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3853
|
+
400: {
|
|
3854
|
+
headers: {
|
|
3855
|
+
[name: string]: unknown;
|
|
3856
|
+
};
|
|
3857
|
+
content: {
|
|
3858
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3859
|
+
};
|
|
3860
|
+
};
|
|
3861
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3862
|
+
401: {
|
|
3863
|
+
headers: {
|
|
3864
|
+
[name: string]: unknown;
|
|
3865
|
+
};
|
|
3866
|
+
content: {
|
|
3867
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3868
|
+
};
|
|
3869
|
+
};
|
|
3870
|
+
/** @description The requested resource could not be found */
|
|
3871
|
+
404: {
|
|
3872
|
+
headers: {
|
|
3873
|
+
[name: string]: unknown;
|
|
3874
|
+
};
|
|
3875
|
+
content: {
|
|
3876
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3877
|
+
};
|
|
3878
|
+
};
|
|
3879
|
+
/** @description Validation Error */
|
|
3880
|
+
422: {
|
|
3881
|
+
headers: {
|
|
3882
|
+
[name: string]: unknown;
|
|
3883
|
+
};
|
|
3884
|
+
content: {
|
|
3885
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3886
|
+
};
|
|
3887
|
+
};
|
|
3888
|
+
};
|
|
3889
|
+
};
|
|
3890
|
+
get_sora_classification_v1_risk_assessment_sora_classifications__classification_id__get: {
|
|
3891
|
+
parameters: {
|
|
3892
|
+
query?: never;
|
|
3893
|
+
header?: never;
|
|
3894
|
+
path: {
|
|
3895
|
+
/** @description A unique identifier representing a specific set of SORA parameters */
|
|
3896
|
+
classification_id: string;
|
|
3897
|
+
};
|
|
3898
|
+
cookie?: never;
|
|
3899
|
+
};
|
|
3900
|
+
requestBody?: never;
|
|
3901
|
+
responses: {
|
|
3902
|
+
/** @description Successful Response */
|
|
3903
|
+
200: {
|
|
3904
|
+
headers: {
|
|
3905
|
+
[name: string]: unknown;
|
|
3906
|
+
};
|
|
3907
|
+
content: {
|
|
3908
|
+
"application/json": components["schemas"]["JsonApiResponse_SoraClassificationResponse_"];
|
|
3909
|
+
};
|
|
3910
|
+
};
|
|
3911
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3912
|
+
400: {
|
|
3913
|
+
headers: {
|
|
3914
|
+
[name: string]: unknown;
|
|
3915
|
+
};
|
|
3916
|
+
content: {
|
|
3917
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3918
|
+
};
|
|
3919
|
+
};
|
|
3920
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3921
|
+
401: {
|
|
3922
|
+
headers: {
|
|
3923
|
+
[name: string]: unknown;
|
|
3924
|
+
};
|
|
3925
|
+
content: {
|
|
3926
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3927
|
+
};
|
|
3928
|
+
};
|
|
3929
|
+
/** @description The requested resource could not be found */
|
|
3930
|
+
404: {
|
|
3931
|
+
headers: {
|
|
3932
|
+
[name: string]: unknown;
|
|
3933
|
+
};
|
|
3934
|
+
content: {
|
|
3935
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3936
|
+
};
|
|
3937
|
+
};
|
|
3938
|
+
/** @description Validation Error */
|
|
3939
|
+
422: {
|
|
3940
|
+
headers: {
|
|
3941
|
+
[name: string]: unknown;
|
|
3942
|
+
};
|
|
3943
|
+
content: {
|
|
3944
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3945
|
+
};
|
|
3946
|
+
};
|
|
3947
|
+
};
|
|
3948
|
+
};
|
|
3949
|
+
generate_raster_v1_flight_patterns_raster_post: {
|
|
3950
|
+
parameters: {
|
|
3951
|
+
query?: never;
|
|
3952
|
+
header?: never;
|
|
3953
|
+
path?: never;
|
|
3954
|
+
cookie?: never;
|
|
3955
|
+
};
|
|
3956
|
+
requestBody: {
|
|
3957
|
+
content: {
|
|
3958
|
+
"application/json": components["schemas"]["RasterRequest"];
|
|
3959
|
+
};
|
|
3960
|
+
};
|
|
3961
|
+
responses: {
|
|
3962
|
+
/** @description Successful Response */
|
|
3963
|
+
200: {
|
|
3964
|
+
headers: {
|
|
3965
|
+
[name: string]: unknown;
|
|
3966
|
+
};
|
|
3967
|
+
content: {
|
|
3968
|
+
"application/json": components["schemas"]["JsonApiResponse_RasterResponse_"];
|
|
3969
|
+
};
|
|
3970
|
+
};
|
|
3971
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3972
|
+
400: {
|
|
3973
|
+
headers: {
|
|
3974
|
+
[name: string]: unknown;
|
|
3975
|
+
};
|
|
3976
|
+
content: {
|
|
3977
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3978
|
+
};
|
|
3979
|
+
};
|
|
3980
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3981
|
+
401: {
|
|
3982
|
+
headers: {
|
|
3983
|
+
[name: string]: unknown;
|
|
3984
|
+
};
|
|
3985
|
+
content: {
|
|
3986
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3987
|
+
};
|
|
3988
|
+
};
|
|
3989
|
+
/** @description Validation Error */
|
|
3990
|
+
422: {
|
|
3991
|
+
headers: {
|
|
3992
|
+
[name: string]: unknown;
|
|
3993
|
+
};
|
|
3994
|
+
content: {
|
|
3995
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3996
|
+
};
|
|
3997
|
+
};
|
|
3998
|
+
};
|
|
3999
|
+
};
|
|
4000
|
+
}
|