@volant-autonomy/via-sdk 1.0.1 → 1.2773.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/README.md +16 -1
- package/dist/composite.d.ts +30 -0
- package/dist/composite.js +12 -0
- package/dist/direct.d.ts +330 -15
- package/dist/direct.js +97 -1
- package/dist/fetch.js +3 -1
- package/dist/types.d.ts +3 -3
- package/dist/volant-schema.d.ts +1122 -120
- package/package.json +2 -1
package/dist/volant-schema.d.ts
CHANGED
|
@@ -62,9 +62,8 @@ export interface paths {
|
|
|
62
62
|
get: operations["flightplan_single_v1_flightplans__flightplan_id__get"];
|
|
63
63
|
/**
|
|
64
64
|
* Modify a Flightplan
|
|
65
|
-
* @description Modify the specified flightplan. This is only permitted while the flightplan state is not
|
|
66
|
-
*
|
|
67
|
-
* checking.
|
|
65
|
+
* @description Modify the specified flightplan. This is only permitted while the flightplan state is not `Closed`. If the
|
|
66
|
+
* flightplan is in state: `Accepted`, the flightplan will be subject to conflict checking.
|
|
68
67
|
*/
|
|
69
68
|
put: operations["flightplan_replace_v1_flightplans__flightplan_id__put"];
|
|
70
69
|
post?: never;
|
|
@@ -74,6 +73,26 @@ export interface paths {
|
|
|
74
73
|
patch?: never;
|
|
75
74
|
trace?: never;
|
|
76
75
|
};
|
|
76
|
+
"/flightplans/{flightplan_id}/state": {
|
|
77
|
+
parameters: {
|
|
78
|
+
query?: never;
|
|
79
|
+
header?: never;
|
|
80
|
+
path?: never;
|
|
81
|
+
cookie?: never;
|
|
82
|
+
};
|
|
83
|
+
get?: never;
|
|
84
|
+
put?: never;
|
|
85
|
+
/**
|
|
86
|
+
* Change the state of a Flightplan
|
|
87
|
+
* @description Change the state of the specified flightplan
|
|
88
|
+
*/
|
|
89
|
+
post: operations["flightplan_state_v1_flightplans__flightplan_id__state_post"];
|
|
90
|
+
delete?: never;
|
|
91
|
+
options?: never;
|
|
92
|
+
head?: never;
|
|
93
|
+
patch?: never;
|
|
94
|
+
trace?: never;
|
|
95
|
+
};
|
|
77
96
|
"/flightplans/{flightplan_id}/waypoints_detail": {
|
|
78
97
|
parameters: {
|
|
79
98
|
query?: never;
|
|
@@ -125,10 +144,9 @@ export interface paths {
|
|
|
125
144
|
* Retrieve Flightplan Operational Intent Volumes
|
|
126
145
|
* @description Retrieve Operational Intent Volumes for the specified flightplan
|
|
127
146
|
*
|
|
128
|
-
* Volumes wholly contain the operational intent while being as small as practical. Start and end
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
* the mean flightpath as defined in each waypoint.
|
|
147
|
+
* Volumes wholly contain the operational intent while being as small as practical. Start and end times, as well as
|
|
148
|
+
* lower and upper altitudes, are required for each volume. The end time may not be in the past. Volumes are generated
|
|
149
|
+
* based on the `LateralParameters` of the flightplan about the mean flightpath as defined in each waypoint.
|
|
132
150
|
*/
|
|
133
151
|
get: operations["flightplan_volumes_v1_flightplans__flightplan_id__volumes_get"];
|
|
134
152
|
put?: never;
|
|
@@ -148,14 +166,14 @@ export interface paths {
|
|
|
148
166
|
};
|
|
149
167
|
/**
|
|
150
168
|
* Retrieve Flightplan Conflicts
|
|
169
|
+
* @deprecated
|
|
151
170
|
* @description Retrieve all the conflicts for the specified flightplan, categorised by their state.
|
|
152
171
|
*
|
|
153
172
|
* Flightplans of state `Closed` are ignored.
|
|
154
173
|
*
|
|
155
|
-
* Note that Flightplans which are in the category `Draft` will not prevent transitioning the
|
|
156
|
-
*
|
|
157
|
-
*
|
|
158
|
-
* `Accepted`.
|
|
174
|
+
* Note that Flightplans which are in the category `Draft` will not prevent transitioning the specified flightplan in
|
|
175
|
+
* to the `Accepted` state and instead are intended as a warning. Flightplans in the `Accepted` state will prevent
|
|
176
|
+
* transition of the specified flightplan to `Accepted`.
|
|
159
177
|
*/
|
|
160
178
|
get: operations["flightplan_conflicts_v1_flightplans__flightplan_id__conflicts_get"];
|
|
161
179
|
put?: never;
|
|
@@ -189,26 +207,6 @@ export interface paths {
|
|
|
189
207
|
patch?: never;
|
|
190
208
|
trace?: never;
|
|
191
209
|
};
|
|
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
210
|
"/flightplans/{flightplan_id}/content": {
|
|
213
211
|
parameters: {
|
|
214
212
|
query?: never;
|
|
@@ -352,6 +350,7 @@ export interface paths {
|
|
|
352
350
|
};
|
|
353
351
|
/**
|
|
354
352
|
* List available aircraft
|
|
353
|
+
* @deprecated
|
|
355
354
|
* @description List available aircraft.
|
|
356
355
|
*/
|
|
357
356
|
get: operations["aircraft_list_v1_aircraft__get"];
|
|
@@ -372,6 +371,7 @@ export interface paths {
|
|
|
372
371
|
};
|
|
373
372
|
/**
|
|
374
373
|
* Retrieve the specified aircraft
|
|
374
|
+
* @deprecated
|
|
375
375
|
* @description Retrieve the specified aircraft.
|
|
376
376
|
*/
|
|
377
377
|
get: operations["aircraft_single_v1_aircraft__aircraft_id__get"];
|
|
@@ -423,6 +423,116 @@ export interface paths {
|
|
|
423
423
|
patch?: never;
|
|
424
424
|
trace?: never;
|
|
425
425
|
};
|
|
426
|
+
"/risk_assessment/sora/controlled_ground_areas/": {
|
|
427
|
+
parameters: {
|
|
428
|
+
query?: never;
|
|
429
|
+
header?: never;
|
|
430
|
+
path?: never;
|
|
431
|
+
cookie?: never;
|
|
432
|
+
};
|
|
433
|
+
/**
|
|
434
|
+
* List Controlled Ground Areas
|
|
435
|
+
* @description Get a list of Controlled Ground Areas, ordered by last time updated
|
|
436
|
+
*/
|
|
437
|
+
get: operations["list_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__get"];
|
|
438
|
+
put?: never;
|
|
439
|
+
/**
|
|
440
|
+
* Create a Controlled Ground Area
|
|
441
|
+
* @description Create a Controlled Ground Area from GeoJSON
|
|
442
|
+
*/
|
|
443
|
+
post: operations["create_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__post"];
|
|
444
|
+
delete?: never;
|
|
445
|
+
options?: never;
|
|
446
|
+
head?: never;
|
|
447
|
+
patch?: never;
|
|
448
|
+
trace?: never;
|
|
449
|
+
};
|
|
450
|
+
"/risk_assessment/sora/controlled_ground_areas/{controlled_ground_area_id}": {
|
|
451
|
+
parameters: {
|
|
452
|
+
query?: never;
|
|
453
|
+
header?: never;
|
|
454
|
+
path?: never;
|
|
455
|
+
cookie?: never;
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Get a Controlled Ground Area
|
|
459
|
+
* @description Get a Controlled Ground Area
|
|
460
|
+
*/
|
|
461
|
+
get: operations["get_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__get"];
|
|
462
|
+
/**
|
|
463
|
+
* Update a Controlled Ground Area
|
|
464
|
+
* @description Modify an existing Controlled Ground Area. This cannot be performed when it is referenced by a flightplan in state
|
|
465
|
+
* `Accepted`.
|
|
466
|
+
*/
|
|
467
|
+
put: operations["update_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__put"];
|
|
468
|
+
post?: never;
|
|
469
|
+
/**
|
|
470
|
+
* Delete a Controlled Ground Area
|
|
471
|
+
* @description Delete a Controlled Ground Area.
|
|
472
|
+
*
|
|
473
|
+
* A Controlled Ground Area cannot be deleted if it is referenced by a SORA Classification
|
|
474
|
+
*/
|
|
475
|
+
delete: operations["delete_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__delete"];
|
|
476
|
+
options?: never;
|
|
477
|
+
head?: never;
|
|
478
|
+
patch?: never;
|
|
479
|
+
trace?: never;
|
|
480
|
+
};
|
|
481
|
+
"/risk_assessment/sora/atypical_airspaces/": {
|
|
482
|
+
parameters: {
|
|
483
|
+
query?: never;
|
|
484
|
+
header?: never;
|
|
485
|
+
path?: never;
|
|
486
|
+
cookie?: never;
|
|
487
|
+
};
|
|
488
|
+
/**
|
|
489
|
+
* List Controlled Ground Areas
|
|
490
|
+
* @description Get a list of Atypical Airspaces, ordered by last time updated
|
|
491
|
+
*/
|
|
492
|
+
get: operations["list_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__get"];
|
|
493
|
+
put?: never;
|
|
494
|
+
/**
|
|
495
|
+
* Create an Atypical Airspace
|
|
496
|
+
* @description Create an Atypical Airspace
|
|
497
|
+
*/
|
|
498
|
+
post: operations["create_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__post"];
|
|
499
|
+
delete?: never;
|
|
500
|
+
options?: never;
|
|
501
|
+
head?: never;
|
|
502
|
+
patch?: never;
|
|
503
|
+
trace?: never;
|
|
504
|
+
};
|
|
505
|
+
"/risk_assessment/sora/atypical_airspaces/{atypical_airspace_id}": {
|
|
506
|
+
parameters: {
|
|
507
|
+
query?: never;
|
|
508
|
+
header?: never;
|
|
509
|
+
path?: never;
|
|
510
|
+
cookie?: never;
|
|
511
|
+
};
|
|
512
|
+
/**
|
|
513
|
+
* Get an Atypical Airspace
|
|
514
|
+
* @description Get an Atypical Airspace
|
|
515
|
+
*/
|
|
516
|
+
get: operations["get_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__get"];
|
|
517
|
+
/**
|
|
518
|
+
* Update an Atypical Airspace
|
|
519
|
+
* @description Modify an existing Atypical Airspace. This cannot be performed when it is referenced by a flightplan in state
|
|
520
|
+
* `Accepted`.
|
|
521
|
+
*/
|
|
522
|
+
put: operations["update_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__put"];
|
|
523
|
+
post?: never;
|
|
524
|
+
/**
|
|
525
|
+
* Delete an Atypical Airspace
|
|
526
|
+
* @description Delete an Atypical Airspace.
|
|
527
|
+
*
|
|
528
|
+
* A Atypical Airspace cannot be deleted if it is referenced by a SORA Classification
|
|
529
|
+
*/
|
|
530
|
+
delete: operations["delete_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__delete"];
|
|
531
|
+
options?: never;
|
|
532
|
+
head?: never;
|
|
533
|
+
patch?: never;
|
|
534
|
+
trace?: never;
|
|
535
|
+
};
|
|
426
536
|
"/risk_assessment/sora/v2.5/sail": {
|
|
427
537
|
parameters: {
|
|
428
538
|
query?: never;
|
|
@@ -494,7 +604,13 @@ export interface paths {
|
|
|
494
604
|
put?: never;
|
|
495
605
|
/**
|
|
496
606
|
* Generate a report containing derived SORA information used for regulatory evidence
|
|
497
|
-
* @description Generate a report containing derived SORA information used for regulatory evidence
|
|
607
|
+
* @description Generate a report containing derived SORA information used for regulatory evidence.
|
|
608
|
+
*
|
|
609
|
+
*
|
|
610
|
+
* GRC and ARC determination is considered across the entire operational volume as determined by the supplied
|
|
611
|
+
* `waypoints`. Where the operational environment differs across the volume, the worst case is taken, i.e. the highest
|
|
612
|
+
* Intrinsic GRC determined and the highest likelihood to encounter another aircraft (as defined by Airspace Encounter
|
|
613
|
+
* Class) determining the ARC.
|
|
498
614
|
*/
|
|
499
615
|
post: operations["sora_report_v1_risk_assessment_sora_v2_5_report_post"];
|
|
500
616
|
delete?: never;
|
|
@@ -592,6 +708,26 @@ export interface components {
|
|
|
592
708
|
* @enum {string}
|
|
593
709
|
*/
|
|
594
710
|
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";
|
|
711
|
+
/**
|
|
712
|
+
* Aircraft
|
|
713
|
+
* @description Characteristics that define an aircraft for SORA calculations.
|
|
714
|
+
*/
|
|
715
|
+
Aircraft: {
|
|
716
|
+
/**
|
|
717
|
+
* Max Cruise Speed
|
|
718
|
+
* @description Maximum cruise speed capable for the aircraft defined in metres per second. Note that this is the cruise speed the aircraft is capable of achieving and not the cruise speed of intended operation
|
|
719
|
+
*/
|
|
720
|
+
max_cruise_speed: number;
|
|
721
|
+
/**
|
|
722
|
+
* Characteristic Dimension
|
|
723
|
+
* @description Characteristic dimension of the aircraft defined in metres.
|
|
724
|
+
* Characteristic dimension refers to:
|
|
725
|
+
* - Wingspan for fixed wing aircraft
|
|
726
|
+
* - Blade diameter for rotorcraft
|
|
727
|
+
* - Maximum dimension for multicopters
|
|
728
|
+
*/
|
|
729
|
+
characteristic_dimension: number;
|
|
730
|
+
};
|
|
595
731
|
/** AircraftAttributes */
|
|
596
732
|
AircraftAttributes: {
|
|
597
733
|
/**
|
|
@@ -805,6 +941,62 @@ export interface components {
|
|
|
805
941
|
/** Implemented */
|
|
806
942
|
implemented: boolean;
|
|
807
943
|
};
|
|
944
|
+
/**
|
|
945
|
+
* AtypicalAirspace
|
|
946
|
+
* @description A volume of airspace that the operator is permitted to enter that may be characterised as either restricted
|
|
947
|
+
* airspace, segregated areas, or airspace where normally manned aircraft should not go
|
|
948
|
+
* (e.g., at a height low enough or close to an obstacle)
|
|
949
|
+
*/
|
|
950
|
+
"AtypicalAirspace-Input": {
|
|
951
|
+
/**
|
|
952
|
+
* Type
|
|
953
|
+
* @constant
|
|
954
|
+
* @enum {string}
|
|
955
|
+
*/
|
|
956
|
+
type: "FeatureCollection";
|
|
957
|
+
/** Features */
|
|
958
|
+
features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_"][];
|
|
959
|
+
};
|
|
960
|
+
/**
|
|
961
|
+
* AtypicalAirspace
|
|
962
|
+
* @description A volume of airspace that the operator is permitted to enter that may be characterised as either restricted
|
|
963
|
+
* airspace, segregated areas, or airspace where normally manned aircraft should not go
|
|
964
|
+
* (e.g., at a height low enough or close to an obstacle)
|
|
965
|
+
*/
|
|
966
|
+
"AtypicalAirspace-Output": {
|
|
967
|
+
/**
|
|
968
|
+
* Type
|
|
969
|
+
* @constant
|
|
970
|
+
* @enum {string}
|
|
971
|
+
*/
|
|
972
|
+
type: "FeatureCollection";
|
|
973
|
+
/** Features */
|
|
974
|
+
features: components["schemas"]["GeoJsonPolygonFeature_AtypicalAirspaceProperties_"][];
|
|
975
|
+
};
|
|
976
|
+
/** AtypicalAirspaceProperties */
|
|
977
|
+
AtypicalAirspaceProperties: {
|
|
978
|
+
/** Altitude Upper */
|
|
979
|
+
altitude_upper: number;
|
|
980
|
+
/** Altitude Lower */
|
|
981
|
+
altitude_lower: number;
|
|
982
|
+
};
|
|
983
|
+
/** AtypicalAirspaceResponse */
|
|
984
|
+
AtypicalAirspaceResponse: {
|
|
985
|
+
/**
|
|
986
|
+
* Atypical Airspace ID
|
|
987
|
+
* Format: uuid
|
|
988
|
+
* @description Unique identifier of the atypical airspace.
|
|
989
|
+
*/
|
|
990
|
+
id: string;
|
|
991
|
+
/**
|
|
992
|
+
* Type
|
|
993
|
+
* @default atypical_airspace
|
|
994
|
+
* @constant
|
|
995
|
+
* @enum {string}
|
|
996
|
+
*/
|
|
997
|
+
type?: "atypical_airspace";
|
|
998
|
+
attributes: components["schemas"]["AtypicalAirspace-Output"];
|
|
999
|
+
};
|
|
808
1000
|
/** ChartAttributes */
|
|
809
1001
|
ChartAttributes: {
|
|
810
1002
|
aoi_bounding: components["schemas"]["AoiBounding"];
|
|
@@ -828,6 +1020,92 @@ export interface components {
|
|
|
828
1020
|
type?: "chart";
|
|
829
1021
|
attributes: components["schemas"]["ChartAttributes"];
|
|
830
1022
|
};
|
|
1023
|
+
/**
|
|
1024
|
+
* ContainmentRequirements
|
|
1025
|
+
* @description The containment requirements ensure that the target level of safety can be met for both ground and air risk in the
|
|
1026
|
+
* adjacent area, they encompass a set of operational limits and a derived level of robustness. Each level of
|
|
1027
|
+
* robustness comes with a set of safety requirements.
|
|
1028
|
+
*/
|
|
1029
|
+
ContainmentRequirements: {
|
|
1030
|
+
/**
|
|
1031
|
+
* Robustness
|
|
1032
|
+
* @description The combination of level of integrity (how good the mitigation is at reducing risk) and level of assurance (the degree of certainty to which the level of integrity is ensured) in ensuring the target level of safety can be met in the adjacent area. 'out of scope' indicates that the operation cannot be conducted in the specific category.
|
|
1033
|
+
*/
|
|
1034
|
+
robustness: ("low" | "medium" | "high" | "out of scope") | "Category C";
|
|
1035
|
+
/**
|
|
1036
|
+
* Adjacent Area Average Population Density Operational Limit
|
|
1037
|
+
* @description The limit of population density in the adjacent area permissible to keep the same level of containment robustness, defined in people/km².
|
|
1038
|
+
* @enum {string}
|
|
1039
|
+
*/
|
|
1040
|
+
adjacent_area_average_population_density_operational_limit: "<50" | "<500" | "<5000" | "<50000" | "none";
|
|
1041
|
+
/**
|
|
1042
|
+
* Outdoor Assembly Size Operational Limit
|
|
1043
|
+
* @description The maximum size of outdoor assemblies permissible within 1km of the operational volume to to keep the same level of containment robustness, defined in people.
|
|
1044
|
+
* @enum {string}
|
|
1045
|
+
*/
|
|
1046
|
+
outdoor_assembly_size_operational_limit: "<40000" | "<=400000" | "none";
|
|
1047
|
+
/**
|
|
1048
|
+
* Adjacent Area Average Population Density
|
|
1049
|
+
* @description The average population density within the adjacent area used in determining containment requirements, defined in people/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.
|
|
1050
|
+
*/
|
|
1051
|
+
adjacent_area_average_population_density: number;
|
|
1052
|
+
/**
|
|
1053
|
+
* Sheltering Applied
|
|
1054
|
+
* @description Whether the assumption of sheltering was applied in the determination of the containment robustness level and operational limits.
|
|
1055
|
+
*/
|
|
1056
|
+
sheltering_applied: boolean;
|
|
1057
|
+
};
|
|
1058
|
+
/**
|
|
1059
|
+
* ControlledGroundArea
|
|
1060
|
+
* @description An area under full responsibility of the operator with assurance that no unauthorised personnel may be present
|
|
1061
|
+
* during the operation. A Controlled Ground Area may be composed of 1 or more polygons, unclosed polygons will be
|
|
1062
|
+
* automatically closed by setting the final coordinate equal to the first coordinate.
|
|
1063
|
+
*/
|
|
1064
|
+
"ControlledGroundArea-Input": {
|
|
1065
|
+
/**
|
|
1066
|
+
* Type
|
|
1067
|
+
* @constant
|
|
1068
|
+
* @enum {string}
|
|
1069
|
+
*/
|
|
1070
|
+
type: "FeatureCollection";
|
|
1071
|
+
/** Features */
|
|
1072
|
+
features: components["schemas"]["GeoJsonPolygonFeature_ControlledGroundAreaProperties_"][];
|
|
1073
|
+
};
|
|
1074
|
+
/**
|
|
1075
|
+
* ControlledGroundArea
|
|
1076
|
+
* @description An area under full responsibility of the operator with assurance that no unauthorised personnel may be present
|
|
1077
|
+
* during the operation. A Controlled Ground Area may be composed of 1 or more polygons, unclosed polygons will be
|
|
1078
|
+
* automatically closed by setting the final coordinate equal to the first coordinate.
|
|
1079
|
+
*/
|
|
1080
|
+
"ControlledGroundArea-Output": {
|
|
1081
|
+
/**
|
|
1082
|
+
* Type
|
|
1083
|
+
* @constant
|
|
1084
|
+
* @enum {string}
|
|
1085
|
+
*/
|
|
1086
|
+
type: "FeatureCollection";
|
|
1087
|
+
/** Features */
|
|
1088
|
+
features: components["schemas"]["GeoJsonPolygonFeature_ControlledGroundAreaProperties_"][];
|
|
1089
|
+
};
|
|
1090
|
+
/** ControlledGroundAreaProperties */
|
|
1091
|
+
ControlledGroundAreaProperties: Record<string, never>;
|
|
1092
|
+
/** ControlledGroundAreaResponse */
|
|
1093
|
+
ControlledGroundAreaResponse: {
|
|
1094
|
+
/**
|
|
1095
|
+
* Controlled Ground Area ID
|
|
1096
|
+
* Format: uuid
|
|
1097
|
+
* @description Unique identifier of the controlled ground area.
|
|
1098
|
+
*/
|
|
1099
|
+
id: string;
|
|
1100
|
+
/**
|
|
1101
|
+
* Type
|
|
1102
|
+
* @default controlled_ground_area
|
|
1103
|
+
* @constant
|
|
1104
|
+
* @enum {string}
|
|
1105
|
+
*/
|
|
1106
|
+
type?: "controlled_ground_area";
|
|
1107
|
+
attributes: components["schemas"]["ControlledGroundArea-Output"];
|
|
1108
|
+
};
|
|
831
1109
|
/**
|
|
832
1110
|
* DataSources
|
|
833
1111
|
* @description Available data sources for the chart
|
|
@@ -835,12 +1113,14 @@ export interface components {
|
|
|
835
1113
|
DataSources: {
|
|
836
1114
|
/** Population Density */
|
|
837
1115
|
population_density: components["schemas"]["PopulationSource"][];
|
|
1116
|
+
/** Terrain Elevation */
|
|
1117
|
+
terrain_elevation: components["schemas"]["TerrainSource"][];
|
|
838
1118
|
};
|
|
839
1119
|
/**
|
|
840
1120
|
* FinalGRC
|
|
841
1121
|
* @enum {integer}
|
|
842
1122
|
*/
|
|
843
|
-
FinalGRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1123
|
+
FinalGRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
844
1124
|
/** FlightParameters */
|
|
845
1125
|
FlightParameters: {
|
|
846
1126
|
/**
|
|
@@ -869,9 +1149,11 @@ export interface components {
|
|
|
869
1149
|
chart_id: string;
|
|
870
1150
|
/**
|
|
871
1151
|
* Aircraft ID
|
|
1152
|
+
* @deprecated
|
|
872
1153
|
* @description Unique identifier for an aircraft.
|
|
1154
|
+
* @default phantom
|
|
873
1155
|
*/
|
|
874
|
-
aircraft_id
|
|
1156
|
+
aircraft_id?: string;
|
|
875
1157
|
/** Sora Classification Id */
|
|
876
1158
|
sora_classification_id?: string | null;
|
|
877
1159
|
/**
|
|
@@ -911,9 +1193,11 @@ export interface components {
|
|
|
911
1193
|
chart_id: string;
|
|
912
1194
|
/**
|
|
913
1195
|
* Aircraft ID
|
|
1196
|
+
* @deprecated
|
|
914
1197
|
* @description Unique identifier for an aircraft.
|
|
1198
|
+
* @default phantom
|
|
915
1199
|
*/
|
|
916
|
-
aircraft_id
|
|
1200
|
+
aircraft_id?: string;
|
|
917
1201
|
/** Sora Classification Id */
|
|
918
1202
|
sora_classification_id?: string | null;
|
|
919
1203
|
/**
|
|
@@ -1000,13 +1284,8 @@ export interface components {
|
|
|
1000
1284
|
meta: components["schemas"]["FlightplanMeta"];
|
|
1001
1285
|
attributes: components["schemas"]["Flightplan-Output"];
|
|
1002
1286
|
};
|
|
1003
|
-
/**
|
|
1004
|
-
|
|
1005
|
-
* @enum {integer}
|
|
1006
|
-
*/
|
|
1007
|
-
GRC: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;
|
|
1008
|
-
/** GeoJsonCollection[GeoJsonSoraProperties] */
|
|
1009
|
-
GeoJsonCollection_GeoJsonSoraProperties_: {
|
|
1287
|
+
/** GeoJsonCollection[GeoJsonSemanticModelProperties] */
|
|
1288
|
+
GeoJsonCollection_GeoJsonSemanticModelProperties_: {
|
|
1010
1289
|
/**
|
|
1011
1290
|
* Type
|
|
1012
1291
|
* @constant
|
|
@@ -1014,7 +1293,7 @@ export interface components {
|
|
|
1014
1293
|
*/
|
|
1015
1294
|
type: "FeatureCollection";
|
|
1016
1295
|
/** Features */
|
|
1017
|
-
features: (components["schemas"]["
|
|
1296
|
+
features: (components["schemas"]["GeoJsonPolygonFeature_GeoJsonSemanticModelProperties_"] | components["schemas"]["GeoJsonMultiPolygonFeature_GeoJsonSemanticModelProperties_"])[];
|
|
1018
1297
|
};
|
|
1019
1298
|
/** GeoJsonMultiPolygon */
|
|
1020
1299
|
GeoJsonMultiPolygon: {
|
|
@@ -1030,8 +1309,8 @@ export interface components {
|
|
|
1030
1309
|
number
|
|
1031
1310
|
][][][];
|
|
1032
1311
|
};
|
|
1033
|
-
/** GeoJsonMultiPolygonFeature[
|
|
1034
|
-
|
|
1312
|
+
/** GeoJsonMultiPolygonFeature[GeoJsonSemanticModelProperties] */
|
|
1313
|
+
GeoJsonMultiPolygonFeature_GeoJsonSemanticModelProperties_: {
|
|
1035
1314
|
/**
|
|
1036
1315
|
* Type
|
|
1037
1316
|
* @constant
|
|
@@ -1039,7 +1318,7 @@ export interface components {
|
|
|
1039
1318
|
*/
|
|
1040
1319
|
type: "Feature";
|
|
1041
1320
|
geometry: components["schemas"]["GeoJsonMultiPolygon"];
|
|
1042
|
-
properties: components["schemas"]["
|
|
1321
|
+
properties: components["schemas"]["GeoJsonSemanticModelProperties"];
|
|
1043
1322
|
};
|
|
1044
1323
|
/** GeoJsonPolygon */
|
|
1045
1324
|
GeoJsonPolygon: {
|
|
@@ -1055,8 +1334,30 @@ export interface components {
|
|
|
1055
1334
|
number
|
|
1056
1335
|
][][];
|
|
1057
1336
|
};
|
|
1058
|
-
/** GeoJsonPolygonFeature[
|
|
1059
|
-
|
|
1337
|
+
/** GeoJsonPolygonFeature[AtypicalAirspaceProperties] */
|
|
1338
|
+
GeoJsonPolygonFeature_AtypicalAirspaceProperties_: {
|
|
1339
|
+
/**
|
|
1340
|
+
* Type
|
|
1341
|
+
* @constant
|
|
1342
|
+
* @enum {string}
|
|
1343
|
+
*/
|
|
1344
|
+
type: "Feature";
|
|
1345
|
+
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
1346
|
+
properties: components["schemas"]["AtypicalAirspaceProperties"];
|
|
1347
|
+
};
|
|
1348
|
+
/** GeoJsonPolygonFeature[ControlledGroundAreaProperties] */
|
|
1349
|
+
GeoJsonPolygonFeature_ControlledGroundAreaProperties_: {
|
|
1350
|
+
/**
|
|
1351
|
+
* Type
|
|
1352
|
+
* @constant
|
|
1353
|
+
* @enum {string}
|
|
1354
|
+
*/
|
|
1355
|
+
type: "Feature";
|
|
1356
|
+
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
1357
|
+
properties: components["schemas"]["ControlledGroundAreaProperties"];
|
|
1358
|
+
};
|
|
1359
|
+
/** GeoJsonPolygonFeature[GeoJsonSemanticModelProperties] */
|
|
1360
|
+
GeoJsonPolygonFeature_GeoJsonSemanticModelProperties_: {
|
|
1060
1361
|
/**
|
|
1061
1362
|
* Type
|
|
1062
1363
|
* @constant
|
|
@@ -1064,12 +1365,13 @@ export interface components {
|
|
|
1064
1365
|
*/
|
|
1065
1366
|
type: "Feature";
|
|
1066
1367
|
geometry: components["schemas"]["GeoJsonPolygon"];
|
|
1067
|
-
properties: components["schemas"]["
|
|
1368
|
+
properties: components["schemas"]["GeoJsonSemanticModelProperties"];
|
|
1068
1369
|
};
|
|
1069
|
-
/**
|
|
1070
|
-
|
|
1370
|
+
/** GeoJsonSemanticModelProperties */
|
|
1371
|
+
GeoJsonSemanticModelProperties: {
|
|
1071
1372
|
/**
|
|
1072
1373
|
* Name
|
|
1374
|
+
* @description Identifier for the type of volume related to the semantic model
|
|
1073
1375
|
* @enum {string}
|
|
1074
1376
|
*/
|
|
1075
1377
|
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
@@ -1224,8 +1526,9 @@ export interface components {
|
|
|
1224
1526
|
/**
|
|
1225
1527
|
* Final GRC Determination
|
|
1226
1528
|
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1529
|
+
* @enum {integer}
|
|
1227
1530
|
*/
|
|
1228
|
-
final_grc:
|
|
1531
|
+
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1229
1532
|
/**
|
|
1230
1533
|
* Residual Air Risk Class (ARC)
|
|
1231
1534
|
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
@@ -1274,8 +1577,17 @@ export interface components {
|
|
|
1274
1577
|
* @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
1578
|
*/
|
|
1276
1579
|
ground_risk_buffer: number;
|
|
1277
|
-
/** @description Population Density Data Source. Data has been re-projected and
|
|
1580
|
+
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
1278
1581
|
population_density_source: components["schemas"]["PopulationSource"];
|
|
1582
|
+
/** Controlled Ground Area Id */
|
|
1583
|
+
controlled_ground_area_id?: string | null;
|
|
1584
|
+
/** Atypical Airspace Id */
|
|
1585
|
+
atypical_airspace_id?: string | null;
|
|
1586
|
+
/** @default {
|
|
1587
|
+
* "max_cruise_speed": 20,
|
|
1588
|
+
* "characteristic_dimension": 0.5
|
|
1589
|
+
* } */
|
|
1590
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
1279
1591
|
};
|
|
1280
1592
|
/** JsonApiException */
|
|
1281
1593
|
JsonApiException: {
|
|
@@ -1313,12 +1625,24 @@ export interface components {
|
|
|
1313
1625
|
data: components["schemas"]["JsonApiResponse_ArcResponse_"][];
|
|
1314
1626
|
links: components["schemas"]["Links"];
|
|
1315
1627
|
};
|
|
1628
|
+
/** JsonApiListResponse[JsonApiResponse[AtypicalAirspaceResponse]] */
|
|
1629
|
+
JsonApiListResponse_JsonApiResponse_AtypicalAirspaceResponse__: {
|
|
1630
|
+
/** Data */
|
|
1631
|
+
data: components["schemas"]["JsonApiResponse_AtypicalAirspaceResponse_"][];
|
|
1632
|
+
links: components["schemas"]["Links"];
|
|
1633
|
+
};
|
|
1316
1634
|
/** JsonApiListResponse[JsonApiResponse[ChartResponse]] */
|
|
1317
1635
|
JsonApiListResponse_JsonApiResponse_ChartResponse__: {
|
|
1318
1636
|
/** Data */
|
|
1319
1637
|
data: components["schemas"]["JsonApiResponse_ChartResponse_"][];
|
|
1320
1638
|
links: components["schemas"]["Links"];
|
|
1321
1639
|
};
|
|
1640
|
+
/** JsonApiListResponse[JsonApiResponse[ControlledGroundAreaResponse]] */
|
|
1641
|
+
JsonApiListResponse_JsonApiResponse_ControlledGroundAreaResponse__: {
|
|
1642
|
+
/** Data */
|
|
1643
|
+
data: components["schemas"]["JsonApiResponse_ControlledGroundAreaResponse_"][];
|
|
1644
|
+
links: components["schemas"]["Links"];
|
|
1645
|
+
};
|
|
1322
1646
|
/** JsonApiListResponse[JsonApiResponse[FlightplanResponse]] */
|
|
1323
1647
|
JsonApiListResponse_JsonApiResponse_FlightplanResponse__: {
|
|
1324
1648
|
/** Data */
|
|
@@ -1352,19 +1676,29 @@ export interface components {
|
|
|
1352
1676
|
data: components["schemas"]["ArcResponse"];
|
|
1353
1677
|
links: components["schemas"]["Links"];
|
|
1354
1678
|
};
|
|
1679
|
+
/** JsonApiResponse[AtypicalAirspaceResponse] */
|
|
1680
|
+
JsonApiResponse_AtypicalAirspaceResponse_: {
|
|
1681
|
+
data: components["schemas"]["AtypicalAirspaceResponse"];
|
|
1682
|
+
links: components["schemas"]["Links"];
|
|
1683
|
+
};
|
|
1355
1684
|
/** JsonApiResponse[ChartResponse] */
|
|
1356
1685
|
JsonApiResponse_ChartResponse_: {
|
|
1357
1686
|
data: components["schemas"]["ChartResponse"];
|
|
1358
1687
|
links: components["schemas"]["Links"];
|
|
1359
1688
|
};
|
|
1689
|
+
/** JsonApiResponse[ControlledGroundAreaResponse] */
|
|
1690
|
+
JsonApiResponse_ControlledGroundAreaResponse_: {
|
|
1691
|
+
data: components["schemas"]["ControlledGroundAreaResponse"];
|
|
1692
|
+
links: components["schemas"]["Links"];
|
|
1693
|
+
};
|
|
1360
1694
|
/** JsonApiResponse[FlightplanResponse] */
|
|
1361
1695
|
JsonApiResponse_FlightplanResponse_: {
|
|
1362
1696
|
data: components["schemas"]["FlightplanResponse"];
|
|
1363
1697
|
links: components["schemas"]["Links"];
|
|
1364
1698
|
};
|
|
1365
|
-
/** JsonApiResponse[GeoJsonCollection[
|
|
1366
|
-
|
|
1367
|
-
data: components["schemas"]["
|
|
1699
|
+
/** JsonApiResponse[GeoJsonCollection[GeoJsonSemanticModelProperties]] */
|
|
1700
|
+
JsonApiResponse_GeoJsonCollection_GeoJsonSemanticModelProperties__: {
|
|
1701
|
+
data: components["schemas"]["GeoJsonCollection_GeoJsonSemanticModelProperties_"];
|
|
1368
1702
|
links: components["schemas"]["Links"];
|
|
1369
1703
|
};
|
|
1370
1704
|
/** JsonApiResponse[PathingTaskResponse] */
|
|
@@ -1487,6 +1821,12 @@ export interface components {
|
|
|
1487
1821
|
* @default 0.8
|
|
1488
1822
|
*/
|
|
1489
1823
|
ground_risk_bias?: number;
|
|
1824
|
+
/**
|
|
1825
|
+
* Deconflict
|
|
1826
|
+
* @description Whether to deconflict with volumes associated with other entities.
|
|
1827
|
+
* @default true
|
|
1828
|
+
*/
|
|
1829
|
+
deconflict?: boolean;
|
|
1490
1830
|
};
|
|
1491
1831
|
/** PathingTaskAttributes */
|
|
1492
1832
|
PathingTaskAttributes: {
|
|
@@ -1520,6 +1860,11 @@ export interface components {
|
|
|
1520
1860
|
* @description Indexes of checkpoints from initial request in returned waypoints, only provided if the pathing task is "successful".
|
|
1521
1861
|
*/
|
|
1522
1862
|
checkpoint_indexes?: number[] | null;
|
|
1863
|
+
/**
|
|
1864
|
+
* Compute Time
|
|
1865
|
+
* @description The total time taken to generate the pathing result given in seconds
|
|
1866
|
+
*/
|
|
1867
|
+
compute_time?: number | null;
|
|
1523
1868
|
};
|
|
1524
1869
|
/** PathingTaskRequest */
|
|
1525
1870
|
PathingTaskRequest: {
|
|
@@ -1530,11 +1875,15 @@ export interface components {
|
|
|
1530
1875
|
chart_id: string;
|
|
1531
1876
|
/**
|
|
1532
1877
|
* Aircraft ID
|
|
1878
|
+
* @deprecated
|
|
1533
1879
|
* @description Unique identifier for an aircraft.
|
|
1880
|
+
* @default phantom
|
|
1534
1881
|
*/
|
|
1535
|
-
aircraft_id
|
|
1882
|
+
aircraft_id?: string;
|
|
1536
1883
|
/** Sora Classification Id */
|
|
1537
1884
|
sora_classification_id?: string | null;
|
|
1885
|
+
/** @default NASADEM */
|
|
1886
|
+
terrain_elevation_source?: components["schemas"]["TerrainSource"] | null;
|
|
1538
1887
|
/**
|
|
1539
1888
|
* Geocage Coordinates
|
|
1540
1889
|
* @description The boundary coordinates of a keep-in geocage. Currently geocage is only applied laterally and does not consider altitude.
|
|
@@ -1663,7 +2012,7 @@ export interface components {
|
|
|
1663
2012
|
* Final GRC Determination
|
|
1664
2013
|
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1665
2014
|
*/
|
|
1666
|
-
final_grc: components["schemas"]["
|
|
2015
|
+
final_grc: components["schemas"]["FinalGRC"];
|
|
1667
2016
|
/**
|
|
1668
2017
|
* Residual Air Risk Class (ARC)
|
|
1669
2018
|
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
@@ -1707,10 +2056,11 @@ export interface components {
|
|
|
1707
2056
|
*/
|
|
1708
2057
|
arc: components["schemas"]["ARC"];
|
|
1709
2058
|
/**
|
|
1710
|
-
* SAIL
|
|
2059
|
+
* SAIL
|
|
1711
2060
|
* @description The SAIL represents the level of confidence that the UAS operation will stay under control.
|
|
2061
|
+
* @enum {string}
|
|
1712
2062
|
*/
|
|
1713
|
-
sail:
|
|
2063
|
+
sail: "NA" | "I" | "II" | "III" | "IV" | "V" | "VI" | "VII";
|
|
1714
2064
|
};
|
|
1715
2065
|
/** SailResponse */
|
|
1716
2066
|
SailResponse: {
|
|
@@ -1759,43 +2109,100 @@ export interface components {
|
|
|
1759
2109
|
* Final GRC Determination
|
|
1760
2110
|
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1761
2111
|
*/
|
|
1762
|
-
final_grc: components["schemas"]["FinalGRC"];
|
|
2112
|
+
final_grc: components["schemas"]["FinalGRC"] | "Category C";
|
|
1763
2113
|
/**
|
|
1764
2114
|
* Intrinsic UAS Ground Risk Class (iGRC)
|
|
1765
2115
|
* @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
2116
|
*/
|
|
1767
|
-
intrinsic_grc: components["schemas"]["IntrinsicGRC"];
|
|
2117
|
+
intrinsic_grc: components["schemas"]["IntrinsicGRC"] | "Category C";
|
|
1768
2118
|
/**
|
|
1769
2119
|
* Max Operational Population Density
|
|
1770
|
-
* @description The maximum population density overflown within the nominal flight operational volume and ground risk buffer, defined in
|
|
2120
|
+
* @description The maximum population density overflown within the nominal flight operational volume and ground risk buffer, defined in people/km². Determined in the assessment of intrinsic ground risk before application of any mitigations.
|
|
1771
2121
|
*/
|
|
1772
2122
|
max_operational_population_density: number;
|
|
1773
2123
|
/**
|
|
1774
|
-
*
|
|
1775
|
-
* @description
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
*
|
|
1783
|
-
*
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
*
|
|
1788
|
-
*
|
|
2124
|
+
* Residual Air Risk Class (ARC)
|
|
2125
|
+
* @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
2126
|
+
*
|
|
2127
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
2128
|
+
*
|
|
2129
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
2130
|
+
*
|
|
2131
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
2132
|
+
*
|
|
2133
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
2134
|
+
*
|
|
2135
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
2136
|
+
*
|
|
2137
|
+
* - 'arc-b1' - ARC-b (>FL600)
|
|
2138
|
+
*
|
|
2139
|
+
* - 'arc-b2' - ARC-b (<500ft AGL in Uncontrolled Airspace Over Rural Areas)
|
|
2140
|
+
*
|
|
2141
|
+
* - 'arc-c1' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Urban Areas)
|
|
2142
|
+
*
|
|
2143
|
+
* - 'arc-c2' - ARC-c (>500ft AGL but <FL600 in Uncontrolled Airspace Over Rural Areas)
|
|
2144
|
+
*
|
|
2145
|
+
* - 'arc-c3' - ARC-c (<500ft AGL in Controlled Airspace)
|
|
2146
|
+
*
|
|
2147
|
+
* - 'arc-c4' - ARC-c (<500ft AGL in Uncontrolled Airspace Over Urban Areas)
|
|
2148
|
+
*
|
|
2149
|
+
* - 'arc-c5' - ARC-c (<500ft AGL and TMZ)
|
|
2150
|
+
*
|
|
2151
|
+
* - 'arc-c6' - ARC-c (<500ft AGL and Mode-C Veil)
|
|
2152
|
+
*
|
|
2153
|
+
* - 'arc-c7' - ARC-c (Non Class B/C/D Airspace in an Airport/Heliport environment)
|
|
2154
|
+
*
|
|
2155
|
+
* - 'arc-d1' - ARC-d (>500ft AGL but <FL600 in Controlled Airspace)
|
|
2156
|
+
*
|
|
2157
|
+
* - 'arc-d2' - ARC-d (Class B/C/D Airspace in an Airport/Heliport environment)
|
|
2158
|
+
*
|
|
2159
|
+
* - 'arc-d3' - ARC-d (>500ft AGL but <FL600 and TMZ)
|
|
2160
|
+
*
|
|
2161
|
+
* - 'arc-d4' - ARC-d (>500ft AGL but <FL600 Mode-C Veil)
|
|
2162
|
+
*
|
|
2163
|
+
*/
|
|
2164
|
+
residual_arc: components["schemas"]["ARC"];
|
|
2165
|
+
tmpr: components["schemas"]["TacticalMitigationPerformanceRequirements"];
|
|
2166
|
+
/**
|
|
2167
|
+
* SAIL
|
|
2168
|
+
* @description The SAIL represents the level of confidence that the UAS operation will stay under control.
|
|
2169
|
+
*/
|
|
2170
|
+
sail: ("NA" | "I" | "II" | "III" | "IV" | "V" | "VI" | "VII") | "Category C";
|
|
2171
|
+
containment: components["schemas"]["ContainmentRequirements"];
|
|
2172
|
+
/**
|
|
2173
|
+
* Avg Adjacent Area Population Density
|
|
2174
|
+
* @deprecated
|
|
1789
2175
|
*/
|
|
1790
|
-
|
|
2176
|
+
readonly avg_adjacent_area_population_density: number;
|
|
2177
|
+
};
|
|
2178
|
+
/** SoraReportRequest */
|
|
2179
|
+
SoraReportRequest: {
|
|
2180
|
+
/**
|
|
2181
|
+
* Chart ID
|
|
2182
|
+
* @description Unique identifier for a chart.
|
|
2183
|
+
*/
|
|
2184
|
+
chart_id: string;
|
|
2185
|
+
/**
|
|
2186
|
+
* Aircraft Id
|
|
2187
|
+
* @deprecated
|
|
2188
|
+
* @description Deprecated, if provided will override `aircraft`
|
|
2189
|
+
*/
|
|
2190
|
+
aircraft_id?: string | null;
|
|
1791
2191
|
/**
|
|
1792
2192
|
* Waypoints
|
|
1793
2193
|
* @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
2194
|
*/
|
|
1795
2195
|
waypoints: (components["schemas"]["StartWaypoint"] | components["schemas"]["GotoWaypoint-Input"])[];
|
|
2196
|
+
/** @default {
|
|
2197
|
+
* "max_cruise_speed": 20,
|
|
2198
|
+
* "characteristic_dimension": 0.5
|
|
2199
|
+
* } */
|
|
2200
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
1796
2201
|
mitigations: components["schemas"]["JarusV2_5Mitigations"];
|
|
1797
|
-
/** @description Population Density Data Source. Data has been re-projected and
|
|
2202
|
+
/** @description Population Density Data Source. Data has been re-projected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. The values are normalised by source data cell area to derive a density value of people per square metre. */
|
|
1798
2203
|
population_density_source: components["schemas"]["PopulationSource"];
|
|
2204
|
+
/** @description Terrain Elevation Data Source. Data has been reprojected and resampled to a square grid in UTM coordinates to work in the context of VIA's services. The value in each cell of the grid is the largest value present in any of the cells of the source grid it intersects. Terrain is reported as elevation in metres above the EGM2008 Geoid (EPSG:3855) and does not include buildings or man-made structures. */
|
|
2205
|
+
terrain_elevation_source: components["schemas"]["TerrainSource"];
|
|
1799
2206
|
/**
|
|
1800
2207
|
* Ground Risk Buffer
|
|
1801
2208
|
* @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.
|
|
@@ -1821,10 +2228,16 @@ export interface components {
|
|
|
1821
2228
|
*/
|
|
1822
2229
|
chart_id: string;
|
|
1823
2230
|
/**
|
|
1824
|
-
* Aircraft
|
|
1825
|
-
* @
|
|
2231
|
+
* Aircraft Id
|
|
2232
|
+
* @deprecated
|
|
2233
|
+
* @description Deprecated, if provided will override `aircraft`
|
|
1826
2234
|
*/
|
|
1827
|
-
aircraft_id
|
|
2235
|
+
aircraft_id?: string | null;
|
|
2236
|
+
/** @default {
|
|
2237
|
+
* "max_cruise_speed": 20,
|
|
2238
|
+
* "characteristic_dimension": 0.5
|
|
2239
|
+
* } */
|
|
2240
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
1828
2241
|
/**
|
|
1829
2242
|
* Waypoints
|
|
1830
2243
|
* @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
|
|
@@ -1958,6 +2371,32 @@ export interface components {
|
|
|
1958
2371
|
type?: "statistics";
|
|
1959
2372
|
attributes: components["schemas"]["StatisticsAttributes"];
|
|
1960
2373
|
};
|
|
2374
|
+
/**
|
|
2375
|
+
* TacticalMitigationPerformanceRequirements
|
|
2376
|
+
* @description Tactical Mitigation Performance Requirement (TMPR) provides tactical mitigations to assist the pilot in detecting
|
|
2377
|
+
* and avoiding traffic under BVLOS conditions. The TMPR is the amount of Tactical Mitigation required to further
|
|
2378
|
+
* mitigate the risks that could not be mitigated through Strategic Mitigation (residual risk). The amount of residual
|
|
2379
|
+
* risk is dependent on the ARC. Hence, the higher the ARC, the greater the residual risk, the greater the TMPR.
|
|
2380
|
+
*/
|
|
2381
|
+
TacticalMitigationPerformanceRequirements: {
|
|
2382
|
+
/**
|
|
2383
|
+
* Level
|
|
2384
|
+
* @description The amount of Tactical Mitigation required to further mitigate the risks that could not be mitigated through Strategic Mitigation (residual risk).
|
|
2385
|
+
* @enum {string}
|
|
2386
|
+
*/
|
|
2387
|
+
level: "none" | "low" | "medium" | "high";
|
|
2388
|
+
/**
|
|
2389
|
+
* Robustness
|
|
2390
|
+
* @description The combination of level of integrity (how good the mitigation is at reducing risk) and level of assurance (the degree of certainty to which the level of integrity is ensured)
|
|
2391
|
+
* @enum {string}
|
|
2392
|
+
*/
|
|
2393
|
+
robustness: "none" | "low" | "medium" | "high";
|
|
2394
|
+
};
|
|
2395
|
+
/**
|
|
2396
|
+
* TerrainSource
|
|
2397
|
+
* @enum {string}
|
|
2398
|
+
*/
|
|
2399
|
+
TerrainSource: "SRTMGL3" | "SRTMGL1" | "SRTMGL1_E" | "AW3D30" | "AW3D30_E" | "NASADEM" | "COP30" | "COP90" | "EU_DTM" | "GEDI_L3";
|
|
1961
2400
|
/**
|
|
1962
2401
|
* TokenType
|
|
1963
2402
|
* @constant
|
|
@@ -2461,7 +2900,7 @@ export interface operations {
|
|
|
2461
2900
|
};
|
|
2462
2901
|
};
|
|
2463
2902
|
};
|
|
2464
|
-
|
|
2903
|
+
flightplan_state_v1_flightplans__flightplan_id__state_post: {
|
|
2465
2904
|
parameters: {
|
|
2466
2905
|
query?: never;
|
|
2467
2906
|
header?: never;
|
|
@@ -2471,16 +2910,18 @@ export interface operations {
|
|
|
2471
2910
|
};
|
|
2472
2911
|
cookie?: never;
|
|
2473
2912
|
};
|
|
2474
|
-
requestBody
|
|
2913
|
+
requestBody: {
|
|
2914
|
+
content: {
|
|
2915
|
+
"application/json": components["schemas"]["StateRequest"];
|
|
2916
|
+
};
|
|
2917
|
+
};
|
|
2475
2918
|
responses: {
|
|
2476
2919
|
/** @description Successful Response */
|
|
2477
|
-
|
|
2920
|
+
204: {
|
|
2478
2921
|
headers: {
|
|
2479
2922
|
[name: string]: unknown;
|
|
2480
2923
|
};
|
|
2481
|
-
content
|
|
2482
|
-
"application/json": components["schemas"]["JsonApiResponse_WaypointDetailResponse_"];
|
|
2483
|
-
};
|
|
2924
|
+
content?: never;
|
|
2484
2925
|
};
|
|
2485
2926
|
/** @description One or more input parameters were missing or invalid. */
|
|
2486
2927
|
400: {
|
|
@@ -2509,6 +2950,15 @@ export interface operations {
|
|
|
2509
2950
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2510
2951
|
};
|
|
2511
2952
|
};
|
|
2953
|
+
/** @description The flightplan could not be accepted due to conflicts with existing accepted flightplans */
|
|
2954
|
+
409: {
|
|
2955
|
+
headers: {
|
|
2956
|
+
[name: string]: unknown;
|
|
2957
|
+
};
|
|
2958
|
+
content: {
|
|
2959
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2960
|
+
};
|
|
2961
|
+
};
|
|
2512
2962
|
/** @description Validation Error */
|
|
2513
2963
|
422: {
|
|
2514
2964
|
headers: {
|
|
@@ -2520,7 +2970,7 @@ export interface operations {
|
|
|
2520
2970
|
};
|
|
2521
2971
|
};
|
|
2522
2972
|
};
|
|
2523
|
-
|
|
2973
|
+
flightplan_waypoints_detail_v1_flightplans__flightplan_id__waypoints_detail_get: {
|
|
2524
2974
|
parameters: {
|
|
2525
2975
|
query?: never;
|
|
2526
2976
|
header?: never;
|
|
@@ -2538,7 +2988,7 @@ export interface operations {
|
|
|
2538
2988
|
[name: string]: unknown;
|
|
2539
2989
|
};
|
|
2540
2990
|
content: {
|
|
2541
|
-
"application/json": components["schemas"]["
|
|
2991
|
+
"application/json": components["schemas"]["JsonApiResponse_WaypointDetailResponse_"];
|
|
2542
2992
|
};
|
|
2543
2993
|
};
|
|
2544
2994
|
/** @description One or more input parameters were missing or invalid. */
|
|
@@ -2579,7 +3029,7 @@ export interface operations {
|
|
|
2579
3029
|
};
|
|
2580
3030
|
};
|
|
2581
3031
|
};
|
|
2582
|
-
|
|
3032
|
+
flightplan_statistics_v1_flightplans__flightplan_id__statistics_get: {
|
|
2583
3033
|
parameters: {
|
|
2584
3034
|
query?: never;
|
|
2585
3035
|
header?: never;
|
|
@@ -2597,7 +3047,7 @@ export interface operations {
|
|
|
2597
3047
|
[name: string]: unknown;
|
|
2598
3048
|
};
|
|
2599
3049
|
content: {
|
|
2600
|
-
"application/json": components["schemas"]["
|
|
3050
|
+
"application/json": components["schemas"]["JsonApiResponse_StatisticsResponse_"];
|
|
2601
3051
|
};
|
|
2602
3052
|
};
|
|
2603
3053
|
/** @description One or more input parameters were missing or invalid. */
|
|
@@ -2638,7 +3088,7 @@ export interface operations {
|
|
|
2638
3088
|
};
|
|
2639
3089
|
};
|
|
2640
3090
|
};
|
|
2641
|
-
|
|
3091
|
+
flightplan_volumes_v1_flightplans__flightplan_id__volumes_get: {
|
|
2642
3092
|
parameters: {
|
|
2643
3093
|
query?: never;
|
|
2644
3094
|
header?: never;
|
|
@@ -2656,7 +3106,7 @@ export interface operations {
|
|
|
2656
3106
|
[name: string]: unknown;
|
|
2657
3107
|
};
|
|
2658
3108
|
content: {
|
|
2659
|
-
"application/json": components["schemas"]["
|
|
3109
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_VolumeResponse__"];
|
|
2660
3110
|
};
|
|
2661
3111
|
};
|
|
2662
3112
|
/** @description One or more input parameters were missing or invalid. */
|
|
@@ -2697,11 +3147,9 @@ export interface operations {
|
|
|
2697
3147
|
};
|
|
2698
3148
|
};
|
|
2699
3149
|
};
|
|
2700
|
-
|
|
3150
|
+
flightplan_conflicts_v1_flightplans__flightplan_id__conflicts_get: {
|
|
2701
3151
|
parameters: {
|
|
2702
|
-
query?:
|
|
2703
|
-
start_time?: string | null;
|
|
2704
|
-
};
|
|
3152
|
+
query?: never;
|
|
2705
3153
|
header?: never;
|
|
2706
3154
|
path: {
|
|
2707
3155
|
/** @description Unique identifier of the flightplan. */
|
|
@@ -2717,7 +3165,7 @@ export interface operations {
|
|
|
2717
3165
|
[name: string]: unknown;
|
|
2718
3166
|
};
|
|
2719
3167
|
content: {
|
|
2720
|
-
"application/json": components["schemas"]["
|
|
3168
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_Union_FlightplanConflictResponse__AirspaceConstraintConflictResponse___"];
|
|
2721
3169
|
};
|
|
2722
3170
|
};
|
|
2723
3171
|
/** @description One or more input parameters were missing or invalid. */
|
|
@@ -2758,9 +3206,14 @@ export interface operations {
|
|
|
2758
3206
|
};
|
|
2759
3207
|
};
|
|
2760
3208
|
};
|
|
2761
|
-
|
|
3209
|
+
flightplan_deconflicted_start_time_v1_flightplans__flightplan_id__start_time_deconflict_get: {
|
|
2762
3210
|
parameters: {
|
|
2763
|
-
query?:
|
|
3211
|
+
query?: {
|
|
3212
|
+
start_time?: string | null;
|
|
3213
|
+
/** @description Interval of time to check in seconds */
|
|
3214
|
+
time_interval?: number;
|
|
3215
|
+
max_time_displacement?: number | null;
|
|
3216
|
+
};
|
|
2764
3217
|
header?: never;
|
|
2765
3218
|
path: {
|
|
2766
3219
|
/** @description Unique identifier of the flightplan. */
|
|
@@ -2768,18 +3221,16 @@ export interface operations {
|
|
|
2768
3221
|
};
|
|
2769
3222
|
cookie?: never;
|
|
2770
3223
|
};
|
|
2771
|
-
requestBody
|
|
2772
|
-
content: {
|
|
2773
|
-
"application/json": components["schemas"]["StateRequest"];
|
|
2774
|
-
};
|
|
2775
|
-
};
|
|
3224
|
+
requestBody?: never;
|
|
2776
3225
|
responses: {
|
|
2777
3226
|
/** @description Successful Response */
|
|
2778
|
-
|
|
3227
|
+
200: {
|
|
2779
3228
|
headers: {
|
|
2780
3229
|
[name: string]: unknown;
|
|
2781
3230
|
};
|
|
2782
|
-
content
|
|
3231
|
+
content: {
|
|
3232
|
+
"application/json": components["schemas"]["JsonApiResponse_FlightplanResponse_"];
|
|
3233
|
+
};
|
|
2783
3234
|
};
|
|
2784
3235
|
/** @description One or more input parameters were missing or invalid. */
|
|
2785
3236
|
400: {
|
|
@@ -2808,15 +3259,6 @@ export interface operations {
|
|
|
2808
3259
|
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
2809
3260
|
};
|
|
2810
3261
|
};
|
|
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
3262
|
/** @description Validation Error */
|
|
2821
3263
|
422: {
|
|
2822
3264
|
headers: {
|
|
@@ -3502,11 +3944,571 @@ export interface operations {
|
|
|
3502
3944
|
};
|
|
3503
3945
|
};
|
|
3504
3946
|
};
|
|
3947
|
+
list_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__get: {
|
|
3948
|
+
parameters: {
|
|
3949
|
+
query?: {
|
|
3950
|
+
"page[offset]"?: number;
|
|
3951
|
+
"page[limit]"?: number;
|
|
3952
|
+
};
|
|
3953
|
+
header?: never;
|
|
3954
|
+
path?: never;
|
|
3955
|
+
cookie?: never;
|
|
3956
|
+
};
|
|
3957
|
+
requestBody?: never;
|
|
3958
|
+
responses: {
|
|
3959
|
+
/** @description Successful Response */
|
|
3960
|
+
200: {
|
|
3961
|
+
headers: {
|
|
3962
|
+
[name: string]: unknown;
|
|
3963
|
+
};
|
|
3964
|
+
content: {
|
|
3965
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_ControlledGroundAreaResponse__"];
|
|
3966
|
+
};
|
|
3967
|
+
};
|
|
3968
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
3969
|
+
400: {
|
|
3970
|
+
headers: {
|
|
3971
|
+
[name: string]: unknown;
|
|
3972
|
+
};
|
|
3973
|
+
content: {
|
|
3974
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3975
|
+
};
|
|
3976
|
+
};
|
|
3977
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
3978
|
+
401: {
|
|
3979
|
+
headers: {
|
|
3980
|
+
[name: string]: unknown;
|
|
3981
|
+
};
|
|
3982
|
+
content: {
|
|
3983
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
3984
|
+
};
|
|
3985
|
+
};
|
|
3986
|
+
/** @description Validation Error */
|
|
3987
|
+
422: {
|
|
3988
|
+
headers: {
|
|
3989
|
+
[name: string]: unknown;
|
|
3990
|
+
};
|
|
3991
|
+
content: {
|
|
3992
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
3993
|
+
};
|
|
3994
|
+
};
|
|
3995
|
+
};
|
|
3996
|
+
};
|
|
3997
|
+
create_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__post: {
|
|
3998
|
+
parameters: {
|
|
3999
|
+
query?: never;
|
|
4000
|
+
header?: never;
|
|
4001
|
+
path?: never;
|
|
4002
|
+
cookie?: never;
|
|
4003
|
+
};
|
|
4004
|
+
requestBody: {
|
|
4005
|
+
content: {
|
|
4006
|
+
"application/json": components["schemas"]["ControlledGroundArea-Input"];
|
|
4007
|
+
};
|
|
4008
|
+
};
|
|
4009
|
+
responses: {
|
|
4010
|
+
/** @description Successful Response */
|
|
4011
|
+
200: {
|
|
4012
|
+
headers: {
|
|
4013
|
+
[name: string]: unknown;
|
|
4014
|
+
};
|
|
4015
|
+
content: {
|
|
4016
|
+
"application/json": components["schemas"]["JsonApiResponse_ControlledGroundAreaResponse_"];
|
|
4017
|
+
};
|
|
4018
|
+
};
|
|
4019
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4020
|
+
400: {
|
|
4021
|
+
headers: {
|
|
4022
|
+
[name: string]: unknown;
|
|
4023
|
+
};
|
|
4024
|
+
content: {
|
|
4025
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4026
|
+
};
|
|
4027
|
+
};
|
|
4028
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4029
|
+
401: {
|
|
4030
|
+
headers: {
|
|
4031
|
+
[name: string]: unknown;
|
|
4032
|
+
};
|
|
4033
|
+
content: {
|
|
4034
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4035
|
+
};
|
|
4036
|
+
};
|
|
4037
|
+
/** @description Validation Error */
|
|
4038
|
+
422: {
|
|
4039
|
+
headers: {
|
|
4040
|
+
[name: string]: unknown;
|
|
4041
|
+
};
|
|
4042
|
+
content: {
|
|
4043
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4044
|
+
};
|
|
4045
|
+
};
|
|
4046
|
+
};
|
|
4047
|
+
};
|
|
4048
|
+
get_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__get: {
|
|
4049
|
+
parameters: {
|
|
4050
|
+
query?: never;
|
|
4051
|
+
header?: never;
|
|
4052
|
+
path: {
|
|
4053
|
+
/** @description Unique identifier of the controlled ground area. */
|
|
4054
|
+
controlled_ground_area_id: string;
|
|
4055
|
+
};
|
|
4056
|
+
cookie?: never;
|
|
4057
|
+
};
|
|
4058
|
+
requestBody?: never;
|
|
4059
|
+
responses: {
|
|
4060
|
+
/** @description Successful Response */
|
|
4061
|
+
200: {
|
|
4062
|
+
headers: {
|
|
4063
|
+
[name: string]: unknown;
|
|
4064
|
+
};
|
|
4065
|
+
content: {
|
|
4066
|
+
"application/json": components["schemas"]["JsonApiResponse_ControlledGroundAreaResponse_"];
|
|
4067
|
+
};
|
|
4068
|
+
};
|
|
4069
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4070
|
+
400: {
|
|
4071
|
+
headers: {
|
|
4072
|
+
[name: string]: unknown;
|
|
4073
|
+
};
|
|
4074
|
+
content: {
|
|
4075
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4076
|
+
};
|
|
4077
|
+
};
|
|
4078
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4079
|
+
401: {
|
|
4080
|
+
headers: {
|
|
4081
|
+
[name: string]: unknown;
|
|
4082
|
+
};
|
|
4083
|
+
content: {
|
|
4084
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4085
|
+
};
|
|
4086
|
+
};
|
|
4087
|
+
/** @description The requested resource could not be found */
|
|
4088
|
+
404: {
|
|
4089
|
+
headers: {
|
|
4090
|
+
[name: string]: unknown;
|
|
4091
|
+
};
|
|
4092
|
+
content: {
|
|
4093
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4094
|
+
};
|
|
4095
|
+
};
|
|
4096
|
+
/** @description Validation Error */
|
|
4097
|
+
422: {
|
|
4098
|
+
headers: {
|
|
4099
|
+
[name: string]: unknown;
|
|
4100
|
+
};
|
|
4101
|
+
content: {
|
|
4102
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4103
|
+
};
|
|
4104
|
+
};
|
|
4105
|
+
};
|
|
4106
|
+
};
|
|
4107
|
+
update_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__put: {
|
|
4108
|
+
parameters: {
|
|
4109
|
+
query?: never;
|
|
4110
|
+
header?: never;
|
|
4111
|
+
path: {
|
|
4112
|
+
/** @description Unique identifier of the controlled ground area. */
|
|
4113
|
+
controlled_ground_area_id: string;
|
|
4114
|
+
};
|
|
4115
|
+
cookie?: never;
|
|
4116
|
+
};
|
|
4117
|
+
requestBody: {
|
|
4118
|
+
content: {
|
|
4119
|
+
"application/json": components["schemas"]["ControlledGroundArea-Input"];
|
|
4120
|
+
};
|
|
4121
|
+
};
|
|
4122
|
+
responses: {
|
|
4123
|
+
/** @description Successful Response */
|
|
4124
|
+
200: {
|
|
4125
|
+
headers: {
|
|
4126
|
+
[name: string]: unknown;
|
|
4127
|
+
};
|
|
4128
|
+
content: {
|
|
4129
|
+
"application/json": components["schemas"]["JsonApiResponse_ControlledGroundAreaResponse_"];
|
|
4130
|
+
};
|
|
4131
|
+
};
|
|
4132
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4133
|
+
400: {
|
|
4134
|
+
headers: {
|
|
4135
|
+
[name: string]: unknown;
|
|
4136
|
+
};
|
|
4137
|
+
content: {
|
|
4138
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4139
|
+
};
|
|
4140
|
+
};
|
|
4141
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4142
|
+
401: {
|
|
4143
|
+
headers: {
|
|
4144
|
+
[name: string]: unknown;
|
|
4145
|
+
};
|
|
4146
|
+
content: {
|
|
4147
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4148
|
+
};
|
|
4149
|
+
};
|
|
4150
|
+
/** @description The requested resource could not be found */
|
|
4151
|
+
404: {
|
|
4152
|
+
headers: {
|
|
4153
|
+
[name: string]: unknown;
|
|
4154
|
+
};
|
|
4155
|
+
content: {
|
|
4156
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4157
|
+
};
|
|
4158
|
+
};
|
|
4159
|
+
/** @description Validation Error */
|
|
4160
|
+
422: {
|
|
4161
|
+
headers: {
|
|
4162
|
+
[name: string]: unknown;
|
|
4163
|
+
};
|
|
4164
|
+
content: {
|
|
4165
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4166
|
+
};
|
|
4167
|
+
};
|
|
4168
|
+
};
|
|
4169
|
+
};
|
|
4170
|
+
delete_controlled_ground_area_v1_risk_assessment_sora_controlled_ground_areas__controlled_ground_area_id__delete: {
|
|
4171
|
+
parameters: {
|
|
4172
|
+
query?: never;
|
|
4173
|
+
header?: never;
|
|
4174
|
+
path: {
|
|
4175
|
+
/** @description Unique identifier of the controlled ground area. */
|
|
4176
|
+
controlled_ground_area_id: string;
|
|
4177
|
+
};
|
|
4178
|
+
cookie?: never;
|
|
4179
|
+
};
|
|
4180
|
+
requestBody?: never;
|
|
4181
|
+
responses: {
|
|
4182
|
+
/** @description Successful Response */
|
|
4183
|
+
204: {
|
|
4184
|
+
headers: {
|
|
4185
|
+
[name: string]: unknown;
|
|
4186
|
+
};
|
|
4187
|
+
content?: never;
|
|
4188
|
+
};
|
|
4189
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4190
|
+
400: {
|
|
4191
|
+
headers: {
|
|
4192
|
+
[name: string]: unknown;
|
|
4193
|
+
};
|
|
4194
|
+
content: {
|
|
4195
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4196
|
+
};
|
|
4197
|
+
};
|
|
4198
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4199
|
+
401: {
|
|
4200
|
+
headers: {
|
|
4201
|
+
[name: string]: unknown;
|
|
4202
|
+
};
|
|
4203
|
+
content: {
|
|
4204
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4205
|
+
};
|
|
4206
|
+
};
|
|
4207
|
+
/** @description The requested resource could not be found */
|
|
4208
|
+
404: {
|
|
4209
|
+
headers: {
|
|
4210
|
+
[name: string]: unknown;
|
|
4211
|
+
};
|
|
4212
|
+
content: {
|
|
4213
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4214
|
+
};
|
|
4215
|
+
};
|
|
4216
|
+
/** @description Validation Error */
|
|
4217
|
+
422: {
|
|
4218
|
+
headers: {
|
|
4219
|
+
[name: string]: unknown;
|
|
4220
|
+
};
|
|
4221
|
+
content: {
|
|
4222
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4223
|
+
};
|
|
4224
|
+
};
|
|
4225
|
+
};
|
|
4226
|
+
};
|
|
4227
|
+
list_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__get: {
|
|
4228
|
+
parameters: {
|
|
4229
|
+
query?: {
|
|
4230
|
+
"page[offset]"?: number;
|
|
4231
|
+
"page[limit]"?: number;
|
|
4232
|
+
};
|
|
4233
|
+
header?: never;
|
|
4234
|
+
path?: never;
|
|
4235
|
+
cookie?: never;
|
|
4236
|
+
};
|
|
4237
|
+
requestBody?: never;
|
|
4238
|
+
responses: {
|
|
4239
|
+
/** @description Successful Response */
|
|
4240
|
+
200: {
|
|
4241
|
+
headers: {
|
|
4242
|
+
[name: string]: unknown;
|
|
4243
|
+
};
|
|
4244
|
+
content: {
|
|
4245
|
+
"application/json": components["schemas"]["JsonApiListResponse_JsonApiResponse_AtypicalAirspaceResponse__"];
|
|
4246
|
+
};
|
|
4247
|
+
};
|
|
4248
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4249
|
+
400: {
|
|
4250
|
+
headers: {
|
|
4251
|
+
[name: string]: unknown;
|
|
4252
|
+
};
|
|
4253
|
+
content: {
|
|
4254
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4255
|
+
};
|
|
4256
|
+
};
|
|
4257
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4258
|
+
401: {
|
|
4259
|
+
headers: {
|
|
4260
|
+
[name: string]: unknown;
|
|
4261
|
+
};
|
|
4262
|
+
content: {
|
|
4263
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4264
|
+
};
|
|
4265
|
+
};
|
|
4266
|
+
/** @description Validation Error */
|
|
4267
|
+
422: {
|
|
4268
|
+
headers: {
|
|
4269
|
+
[name: string]: unknown;
|
|
4270
|
+
};
|
|
4271
|
+
content: {
|
|
4272
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4273
|
+
};
|
|
4274
|
+
};
|
|
4275
|
+
};
|
|
4276
|
+
};
|
|
4277
|
+
create_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__post: {
|
|
4278
|
+
parameters: {
|
|
4279
|
+
query?: never;
|
|
4280
|
+
header?: never;
|
|
4281
|
+
path?: never;
|
|
4282
|
+
cookie?: never;
|
|
4283
|
+
};
|
|
4284
|
+
requestBody: {
|
|
4285
|
+
content: {
|
|
4286
|
+
"application/json": components["schemas"]["AtypicalAirspace-Input"];
|
|
4287
|
+
};
|
|
4288
|
+
};
|
|
4289
|
+
responses: {
|
|
4290
|
+
/** @description Successful Response */
|
|
4291
|
+
200: {
|
|
4292
|
+
headers: {
|
|
4293
|
+
[name: string]: unknown;
|
|
4294
|
+
};
|
|
4295
|
+
content: {
|
|
4296
|
+
"application/json": components["schemas"]["JsonApiResponse_AtypicalAirspaceResponse_"];
|
|
4297
|
+
};
|
|
4298
|
+
};
|
|
4299
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4300
|
+
400: {
|
|
4301
|
+
headers: {
|
|
4302
|
+
[name: string]: unknown;
|
|
4303
|
+
};
|
|
4304
|
+
content: {
|
|
4305
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4306
|
+
};
|
|
4307
|
+
};
|
|
4308
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4309
|
+
401: {
|
|
4310
|
+
headers: {
|
|
4311
|
+
[name: string]: unknown;
|
|
4312
|
+
};
|
|
4313
|
+
content: {
|
|
4314
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4315
|
+
};
|
|
4316
|
+
};
|
|
4317
|
+
/** @description Validation Error */
|
|
4318
|
+
422: {
|
|
4319
|
+
headers: {
|
|
4320
|
+
[name: string]: unknown;
|
|
4321
|
+
};
|
|
4322
|
+
content: {
|
|
4323
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4324
|
+
};
|
|
4325
|
+
};
|
|
4326
|
+
};
|
|
4327
|
+
};
|
|
4328
|
+
get_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__get: {
|
|
4329
|
+
parameters: {
|
|
4330
|
+
query?: never;
|
|
4331
|
+
header?: never;
|
|
4332
|
+
path: {
|
|
4333
|
+
/** @description Unique identifier of the atypical airspace. */
|
|
4334
|
+
atypical_airspace_id: string;
|
|
4335
|
+
};
|
|
4336
|
+
cookie?: never;
|
|
4337
|
+
};
|
|
4338
|
+
requestBody?: never;
|
|
4339
|
+
responses: {
|
|
4340
|
+
/** @description Successful Response */
|
|
4341
|
+
200: {
|
|
4342
|
+
headers: {
|
|
4343
|
+
[name: string]: unknown;
|
|
4344
|
+
};
|
|
4345
|
+
content: {
|
|
4346
|
+
"application/json": components["schemas"]["JsonApiResponse_AtypicalAirspaceResponse_"];
|
|
4347
|
+
};
|
|
4348
|
+
};
|
|
4349
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4350
|
+
400: {
|
|
4351
|
+
headers: {
|
|
4352
|
+
[name: string]: unknown;
|
|
4353
|
+
};
|
|
4354
|
+
content: {
|
|
4355
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4356
|
+
};
|
|
4357
|
+
};
|
|
4358
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4359
|
+
401: {
|
|
4360
|
+
headers: {
|
|
4361
|
+
[name: string]: unknown;
|
|
4362
|
+
};
|
|
4363
|
+
content: {
|
|
4364
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4365
|
+
};
|
|
4366
|
+
};
|
|
4367
|
+
/** @description The requested resource could not be found */
|
|
4368
|
+
404: {
|
|
4369
|
+
headers: {
|
|
4370
|
+
[name: string]: unknown;
|
|
4371
|
+
};
|
|
4372
|
+
content: {
|
|
4373
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4374
|
+
};
|
|
4375
|
+
};
|
|
4376
|
+
/** @description Validation Error */
|
|
4377
|
+
422: {
|
|
4378
|
+
headers: {
|
|
4379
|
+
[name: string]: unknown;
|
|
4380
|
+
};
|
|
4381
|
+
content: {
|
|
4382
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4383
|
+
};
|
|
4384
|
+
};
|
|
4385
|
+
};
|
|
4386
|
+
};
|
|
4387
|
+
update_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__put: {
|
|
4388
|
+
parameters: {
|
|
4389
|
+
query?: never;
|
|
4390
|
+
header?: never;
|
|
4391
|
+
path: {
|
|
4392
|
+
/** @description Unique identifier of the atypical airspace. */
|
|
4393
|
+
atypical_airspace_id: string;
|
|
4394
|
+
};
|
|
4395
|
+
cookie?: never;
|
|
4396
|
+
};
|
|
4397
|
+
requestBody: {
|
|
4398
|
+
content: {
|
|
4399
|
+
"application/json": components["schemas"]["AtypicalAirspace-Input"];
|
|
4400
|
+
};
|
|
4401
|
+
};
|
|
4402
|
+
responses: {
|
|
4403
|
+
/** @description Successful Response */
|
|
4404
|
+
200: {
|
|
4405
|
+
headers: {
|
|
4406
|
+
[name: string]: unknown;
|
|
4407
|
+
};
|
|
4408
|
+
content: {
|
|
4409
|
+
"application/json": components["schemas"]["JsonApiResponse_AtypicalAirspaceResponse_"];
|
|
4410
|
+
};
|
|
4411
|
+
};
|
|
4412
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4413
|
+
400: {
|
|
4414
|
+
headers: {
|
|
4415
|
+
[name: string]: unknown;
|
|
4416
|
+
};
|
|
4417
|
+
content: {
|
|
4418
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4419
|
+
};
|
|
4420
|
+
};
|
|
4421
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4422
|
+
401: {
|
|
4423
|
+
headers: {
|
|
4424
|
+
[name: string]: unknown;
|
|
4425
|
+
};
|
|
4426
|
+
content: {
|
|
4427
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4428
|
+
};
|
|
4429
|
+
};
|
|
4430
|
+
/** @description The requested resource could not be found */
|
|
4431
|
+
404: {
|
|
4432
|
+
headers: {
|
|
4433
|
+
[name: string]: unknown;
|
|
4434
|
+
};
|
|
4435
|
+
content: {
|
|
4436
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4437
|
+
};
|
|
4438
|
+
};
|
|
4439
|
+
/** @description Validation Error */
|
|
4440
|
+
422: {
|
|
4441
|
+
headers: {
|
|
4442
|
+
[name: string]: unknown;
|
|
4443
|
+
};
|
|
4444
|
+
content: {
|
|
4445
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4446
|
+
};
|
|
4447
|
+
};
|
|
4448
|
+
};
|
|
4449
|
+
};
|
|
4450
|
+
delete_atypical_airspace_v1_risk_assessment_sora_atypical_airspaces__atypical_airspace_id__delete: {
|
|
4451
|
+
parameters: {
|
|
4452
|
+
query?: never;
|
|
4453
|
+
header?: never;
|
|
4454
|
+
path: {
|
|
4455
|
+
/** @description Unique identifier of the atypical airspace. */
|
|
4456
|
+
atypical_airspace_id: string;
|
|
4457
|
+
};
|
|
4458
|
+
cookie?: never;
|
|
4459
|
+
};
|
|
4460
|
+
requestBody?: never;
|
|
4461
|
+
responses: {
|
|
4462
|
+
/** @description Successful Response */
|
|
4463
|
+
204: {
|
|
4464
|
+
headers: {
|
|
4465
|
+
[name: string]: unknown;
|
|
4466
|
+
};
|
|
4467
|
+
content?: never;
|
|
4468
|
+
};
|
|
4469
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
4470
|
+
400: {
|
|
4471
|
+
headers: {
|
|
4472
|
+
[name: string]: unknown;
|
|
4473
|
+
};
|
|
4474
|
+
content: {
|
|
4475
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4476
|
+
};
|
|
4477
|
+
};
|
|
4478
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
4479
|
+
401: {
|
|
4480
|
+
headers: {
|
|
4481
|
+
[name: string]: unknown;
|
|
4482
|
+
};
|
|
4483
|
+
content: {
|
|
4484
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4485
|
+
};
|
|
4486
|
+
};
|
|
4487
|
+
/** @description The requested resource could not be found */
|
|
4488
|
+
404: {
|
|
4489
|
+
headers: {
|
|
4490
|
+
[name: string]: unknown;
|
|
4491
|
+
};
|
|
4492
|
+
content: {
|
|
4493
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
4494
|
+
};
|
|
4495
|
+
};
|
|
4496
|
+
/** @description Validation Error */
|
|
4497
|
+
422: {
|
|
4498
|
+
headers: {
|
|
4499
|
+
[name: string]: unknown;
|
|
4500
|
+
};
|
|
4501
|
+
content: {
|
|
4502
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
4503
|
+
};
|
|
4504
|
+
};
|
|
4505
|
+
};
|
|
4506
|
+
};
|
|
3505
4507
|
sora_sail_score_v1_risk_assessment_sora_v2_5_sail_get: {
|
|
3506
4508
|
parameters: {
|
|
3507
4509
|
query: {
|
|
3508
4510
|
/** @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"]["
|
|
4511
|
+
final_grc: components["schemas"]["FinalGRC"];
|
|
3510
4512
|
/** @description Qualitative classification of the rate at which a UAS would encounter a manned aircraft in a given airspace environment.
|
|
3511
4513
|
*
|
|
3512
4514
|
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
@@ -3795,7 +4797,7 @@ export interface operations {
|
|
|
3795
4797
|
[name: string]: unknown;
|
|
3796
4798
|
};
|
|
3797
4799
|
content: {
|
|
3798
|
-
"application/json": components["schemas"]["
|
|
4800
|
+
"application/json": components["schemas"]["JsonApiResponse_GeoJsonCollection_GeoJsonSemanticModelProperties__"];
|
|
3799
4801
|
};
|
|
3800
4802
|
};
|
|
3801
4803
|
/** @description One or more input parameters were missing or invalid. */
|