@volant-autonomy/via-sdk 1.3127.1 → 1.3162.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/dist/direct.d.ts +36 -6
- package/dist/direct.js +10 -2
- package/dist/volant-schema.d.ts +274 -58
- package/package.json +1 -1
package/dist/direct.d.ts
CHANGED
|
@@ -26,13 +26,14 @@ export type getAllAircraft = paths['/aircraft/']['get'];
|
|
|
26
26
|
export type getAircraft = paths['/aircraft/{aircraft_id}']['get'];
|
|
27
27
|
export type getAllCharts = paths['/charts/']['get'];
|
|
28
28
|
export type getChart = paths['/charts/{chart_id}']['get'];
|
|
29
|
-
export type
|
|
29
|
+
export type getSailV2_5 = paths['/risk_assessment/sora/v2.5/sail']['get'];
|
|
30
30
|
export type getAllArcsV2_5 = paths['/risk_assessment/sora/v2.5/air_risk_classifications']['get'];
|
|
31
31
|
export type getArcV2_5 = paths['/risk_assessment/sora/v2.5/air_risk_classifications/{arc_id}']['get'];
|
|
32
32
|
export type createSoraReportV2_5 = paths['/risk_assessment/sora/v2.5/report']['post'];
|
|
33
33
|
export type createSoraSemanticModelVolumesV2_5 = paths['/risk_assessment/sora/v2.5/semantic_model_volumes']['post'];
|
|
34
34
|
export type getAllArcsUk = paths['/risk_assessment/sora/uk/air_risk_classifications']['get'];
|
|
35
35
|
export type getArcUk = paths['/risk_assessment/sora/uk/air_risk_classifications/{arc_id}']['get'];
|
|
36
|
+
export type getSailUk = paths['/risk_assessment/sora/uk/sail']['get'];
|
|
36
37
|
export type createSoraSemanticModelVolumesUk = paths['/risk_assessment/sora/uk/semantic_model_volumes']['post'];
|
|
37
38
|
export type createSoraClassification = paths['/risk_assessment/sora/classifications']['post'];
|
|
38
39
|
export type updateSoraClassification = paths['/risk_assessment/sora/classifications/{classification_id}']['put'];
|
|
@@ -709,7 +710,7 @@ export declare class Direct {
|
|
|
709
710
|
* Calculate SAIL
|
|
710
711
|
* @description Calculate Specific Assurance Integrity Level (SAIL).
|
|
711
712
|
*/
|
|
712
|
-
|
|
713
|
+
getSailV2_5<Opts extends requestOptions = {}>(args: queryOf<getSailV2_5>, opts?: Opts | requestOptions): Promise<{
|
|
713
714
|
data?: never;
|
|
714
715
|
error: {
|
|
715
716
|
errors: {
|
|
@@ -727,7 +728,7 @@ export declare class Direct {
|
|
|
727
728
|
aborted: true;
|
|
728
729
|
} : never) | {
|
|
729
730
|
data: {
|
|
730
|
-
id:
|
|
731
|
+
id: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
731
732
|
attributes: import("./volant-schema").components["schemas"]["SailAttributes"];
|
|
732
733
|
};
|
|
733
734
|
error?: never;
|
|
@@ -918,6 +919,35 @@ export declare class Direct {
|
|
|
918
919
|
response: Response;
|
|
919
920
|
aborted: false;
|
|
920
921
|
}>;
|
|
922
|
+
/**
|
|
923
|
+
* Calculate SAIL
|
|
924
|
+
* @description Calculate Specific Assurance Integrity Level (SAIL).
|
|
925
|
+
*/
|
|
926
|
+
getSailUk<Opts extends requestOptions = {}>(args: queryOf<getSailUk>, opts?: Opts | requestOptions): Promise<{
|
|
927
|
+
data?: never;
|
|
928
|
+
error: {
|
|
929
|
+
errors: {
|
|
930
|
+
detail: string;
|
|
931
|
+
status: "401" | "400" | "422";
|
|
932
|
+
}[];
|
|
933
|
+
status: "401" | "400" | "422";
|
|
934
|
+
};
|
|
935
|
+
response: Response;
|
|
936
|
+
aborted: false;
|
|
937
|
+
} | (keyof Opts extends never ? never : Opts["abortKey"] extends undefined ? never : Opts["abortKey"] extends string | undefined ? {
|
|
938
|
+
data?: never;
|
|
939
|
+
error?: never;
|
|
940
|
+
response?: never;
|
|
941
|
+
aborted: true;
|
|
942
|
+
} : never) | {
|
|
943
|
+
data: {
|
|
944
|
+
id: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
945
|
+
attributes: import("./volant-schema").components["schemas"]["UkSailAttributes"];
|
|
946
|
+
};
|
|
947
|
+
error?: never;
|
|
948
|
+
response: Response;
|
|
949
|
+
aborted: false;
|
|
950
|
+
}>;
|
|
921
951
|
/**
|
|
922
952
|
* Generate volumes that correspond to the SORA Semantic Model
|
|
923
953
|
* @description Generate volumes that correspond to the SORA Semantic Model
|
|
@@ -971,7 +1001,7 @@ export declare class Direct {
|
|
|
971
1001
|
data: {
|
|
972
1002
|
id: string;
|
|
973
1003
|
type?: "sora_classification";
|
|
974
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1004
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
975
1005
|
};
|
|
976
1006
|
error?: never;
|
|
977
1007
|
response: Response;
|
|
@@ -1001,7 +1031,7 @@ export declare class Direct {
|
|
|
1001
1031
|
data: {
|
|
1002
1032
|
id: string;
|
|
1003
1033
|
type?: "sora_classification";
|
|
1004
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1034
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
1005
1035
|
};
|
|
1006
1036
|
error?: never;
|
|
1007
1037
|
response: Response;
|
|
@@ -1031,7 +1061,7 @@ export declare class Direct {
|
|
|
1031
1061
|
data: {
|
|
1032
1062
|
id: string;
|
|
1033
1063
|
type?: "sora_classification";
|
|
1034
|
-
attributes: import("./volant-schema").components["schemas"]["
|
|
1064
|
+
attributes: import("./volant-schema").components["schemas"]["JarusV2_5SoraClassification-Output"] | import("./volant-schema").components["schemas"]["UkSoraClassification-Output"];
|
|
1035
1065
|
};
|
|
1036
1066
|
error?: never;
|
|
1037
1067
|
response: Response;
|
package/dist/direct.js
CHANGED
|
@@ -214,8 +214,7 @@ class Direct {
|
|
|
214
214
|
});
|
|
215
215
|
}
|
|
216
216
|
/// risk assessment
|
|
217
|
-
|
|
218
|
-
calculateSailV2_5(args, opts) {
|
|
217
|
+
getSailV2_5(args, opts) {
|
|
219
218
|
return __awaiter(this, void 0, void 0, function* () {
|
|
220
219
|
const resp = yield this.fetcher.GET('/risk_assessment/sora/v2.5/sail', { query: args }, opts);
|
|
221
220
|
if (resp.error === undefined && !resp.aborted) {
|
|
@@ -278,6 +277,15 @@ class Direct {
|
|
|
278
277
|
return resp;
|
|
279
278
|
});
|
|
280
279
|
}
|
|
280
|
+
getSailUk(args, opts) {
|
|
281
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
282
|
+
const resp = yield this.fetcher.GET('/risk_assessment/sora/uk/sail', { query: args }, opts);
|
|
283
|
+
if (resp.error === undefined && !resp.aborted) {
|
|
284
|
+
return Object.assign(Object.assign({}, resp), { data: resp.data.data });
|
|
285
|
+
}
|
|
286
|
+
return resp;
|
|
287
|
+
});
|
|
288
|
+
}
|
|
281
289
|
createSoraSemanticModelVolumesUk(args, opts) {
|
|
282
290
|
return __awaiter(this, void 0, void 0, function* () {
|
|
283
291
|
const resp = yield this.fetcher.POST('/risk_assessment/sora/uk/semantic_model_volumes', { body: args }, opts);
|
package/dist/volant-schema.d.ts
CHANGED
|
@@ -612,6 +612,26 @@ export interface paths {
|
|
|
612
612
|
patch?: never;
|
|
613
613
|
trace?: never;
|
|
614
614
|
};
|
|
615
|
+
"/risk_assessment/sora/uk/sail": {
|
|
616
|
+
parameters: {
|
|
617
|
+
query?: never;
|
|
618
|
+
header?: never;
|
|
619
|
+
path?: never;
|
|
620
|
+
cookie?: never;
|
|
621
|
+
};
|
|
622
|
+
/**
|
|
623
|
+
* Calculate SAIL
|
|
624
|
+
* @description Calculate Specific Assurance Integrity Level (SAIL).
|
|
625
|
+
*/
|
|
626
|
+
get: operations["uk_sail_v1_risk_assessment_sora_uk_sail_get"];
|
|
627
|
+
put?: never;
|
|
628
|
+
post?: never;
|
|
629
|
+
delete?: never;
|
|
630
|
+
options?: never;
|
|
631
|
+
head?: never;
|
|
632
|
+
patch?: never;
|
|
633
|
+
trace?: never;
|
|
634
|
+
};
|
|
615
635
|
"/risk_assessment/sora/uk/air_risk_classifications": {
|
|
616
636
|
parameters: {
|
|
617
637
|
query?: never;
|
|
@@ -1058,41 +1078,6 @@ export interface components {
|
|
|
1058
1078
|
type?: "chart";
|
|
1059
1079
|
attributes: components["schemas"]["ChartAttributes"];
|
|
1060
1080
|
};
|
|
1061
|
-
/** Classification */
|
|
1062
|
-
Classification: {
|
|
1063
|
-
/**
|
|
1064
|
-
* Final GRC Determination
|
|
1065
|
-
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1066
|
-
* @enum {integer}
|
|
1067
|
-
*/
|
|
1068
|
-
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1069
|
-
/** Residual Arc */
|
|
1070
|
-
residual_arc: components["schemas"]["ARC"][];
|
|
1071
|
-
mitigations: components["schemas"]["Mitigations"];
|
|
1072
|
-
/**
|
|
1073
|
-
* Ground Risk Buffer
|
|
1074
|
-
* @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.
|
|
1075
|
-
*/
|
|
1076
|
-
ground_risk_buffer: number;
|
|
1077
|
-
/** @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. */
|
|
1078
|
-
population_density_source: components["schemas"]["PopulationSource"];
|
|
1079
|
-
/** Controlled Ground Area Id */
|
|
1080
|
-
controlled_ground_area_id?: string | null;
|
|
1081
|
-
/** Atypical Airspace Id */
|
|
1082
|
-
atypical_airspace_id?: string | null;
|
|
1083
|
-
/** @default {
|
|
1084
|
-
* "max_cruise_speed": 20,
|
|
1085
|
-
* "characteristic_dimension": 0.5
|
|
1086
|
-
* } */
|
|
1087
|
-
aircraft?: components["schemas"]["Aircraft"];
|
|
1088
|
-
/**
|
|
1089
|
-
* Containment Robustness
|
|
1090
|
-
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
1091
|
-
* @default low
|
|
1092
|
-
* @enum {string}
|
|
1093
|
-
*/
|
|
1094
|
-
containment_robustness?: "low" | "medium" | "high";
|
|
1095
|
-
};
|
|
1096
1081
|
/**
|
|
1097
1082
|
* ContainmentRequirements
|
|
1098
1083
|
* @description The containment requirements ensure that the target level of safety can be met for both ground and air risk in the
|
|
@@ -1541,6 +1526,61 @@ export interface components {
|
|
|
1541
1526
|
* @enum {integer}
|
|
1542
1527
|
*/
|
|
1543
1528
|
IntrinsicGRC: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
1529
|
+
/** JarusV2_5ClassificationPayload */
|
|
1530
|
+
JarusV2_5ClassificationPayload: {
|
|
1531
|
+
/**
|
|
1532
|
+
* Final GRC Determination
|
|
1533
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
1534
|
+
* @enum {integer}
|
|
1535
|
+
*/
|
|
1536
|
+
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
1537
|
+
/** Residual Arc */
|
|
1538
|
+
residual_arc: components["schemas"]["ARC"][];
|
|
1539
|
+
mitigations: components["schemas"]["Mitigations"];
|
|
1540
|
+
/**
|
|
1541
|
+
* Ground Risk Buffer
|
|
1542
|
+
* @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.
|
|
1543
|
+
*/
|
|
1544
|
+
ground_risk_buffer: number;
|
|
1545
|
+
/** @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. */
|
|
1546
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
1547
|
+
/** Controlled Ground Area Id */
|
|
1548
|
+
controlled_ground_area_id?: string | null;
|
|
1549
|
+
/** Atypical Airspace Id */
|
|
1550
|
+
atypical_airspace_id?: string | null;
|
|
1551
|
+
/** @default {
|
|
1552
|
+
* "max_cruise_speed": 20,
|
|
1553
|
+
* "characteristic_dimension": 0.5
|
|
1554
|
+
* } */
|
|
1555
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
1556
|
+
/**
|
|
1557
|
+
* Containment Robustness
|
|
1558
|
+
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
1559
|
+
* @default low
|
|
1560
|
+
* @enum {string}
|
|
1561
|
+
*/
|
|
1562
|
+
containment_robustness?: "low" | "medium" | "high";
|
|
1563
|
+
};
|
|
1564
|
+
/** JarusV2_5SoraClassification */
|
|
1565
|
+
"JarusV2_5SoraClassification-Input": {
|
|
1566
|
+
/**
|
|
1567
|
+
* Implementation
|
|
1568
|
+
* @constant
|
|
1569
|
+
* @enum {string}
|
|
1570
|
+
*/
|
|
1571
|
+
implementation: "jarus_v2.5";
|
|
1572
|
+
payload: components["schemas"]["JarusV2_5ClassificationPayload"];
|
|
1573
|
+
};
|
|
1574
|
+
/** JarusV2_5SoraClassification */
|
|
1575
|
+
"JarusV2_5SoraClassification-Output": {
|
|
1576
|
+
/**
|
|
1577
|
+
* Implementation
|
|
1578
|
+
* @constant
|
|
1579
|
+
* @enum {string}
|
|
1580
|
+
*/
|
|
1581
|
+
implementation: "jarus_v2.5";
|
|
1582
|
+
payload: components["schemas"]["JarusV2_5ClassificationPayload"];
|
|
1583
|
+
};
|
|
1544
1584
|
/** JsonApiException */
|
|
1545
1585
|
JsonApiException: {
|
|
1546
1586
|
/**
|
|
@@ -1688,6 +1728,11 @@ export interface components {
|
|
|
1688
1728
|
data: components["schemas"]["UkArcResponse"];
|
|
1689
1729
|
links: components["schemas"]["Links"];
|
|
1690
1730
|
};
|
|
1731
|
+
/** JsonApiResponse[UkSailResponse] */
|
|
1732
|
+
JsonApiResponse_UkSailResponse_: {
|
|
1733
|
+
data: components["schemas"]["UkSailResponse"];
|
|
1734
|
+
links: components["schemas"]["Links"];
|
|
1735
|
+
};
|
|
1691
1736
|
/** JsonApiResponse[VolumeResponse] */
|
|
1692
1737
|
JsonApiResponse_VolumeResponse_: {
|
|
1693
1738
|
data: components["schemas"]["VolumeResponse"];
|
|
@@ -1995,8 +2040,12 @@ export interface components {
|
|
|
1995
2040
|
};
|
|
1996
2041
|
/** SailResponse */
|
|
1997
2042
|
SailResponse: {
|
|
1998
|
-
/**
|
|
1999
|
-
|
|
2043
|
+
/**
|
|
2044
|
+
* Id
|
|
2045
|
+
* @description Unique integer representation of the SAIL
|
|
2046
|
+
* @enum {integer}
|
|
2047
|
+
*/
|
|
2048
|
+
id: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
2000
2049
|
attributes: components["schemas"]["SailAttributes"];
|
|
2001
2050
|
};
|
|
2002
2051
|
/** SemanticModelProperties */
|
|
@@ -2008,18 +2057,6 @@ export interface components {
|
|
|
2008
2057
|
*/
|
|
2009
2058
|
name: "Flight Geography" | "Contingency Buffer" | "Ground Risk Buffer" | "Adjacent Area";
|
|
2010
2059
|
};
|
|
2011
|
-
/** SoraClassification */
|
|
2012
|
-
"SoraClassification-Input": {
|
|
2013
|
-
/** @description The implementation of SORA that is described by `payload` */
|
|
2014
|
-
implementation: components["schemas"]["SoraImplementation"];
|
|
2015
|
-
payload: components["schemas"]["Classification"];
|
|
2016
|
-
};
|
|
2017
|
-
/** SoraClassification */
|
|
2018
|
-
"SoraClassification-Output": {
|
|
2019
|
-
/** @description The implementation of SORA that is described by `payload` */
|
|
2020
|
-
implementation: components["schemas"]["SoraImplementation"];
|
|
2021
|
-
payload: components["schemas"]["Classification"];
|
|
2022
|
-
};
|
|
2023
2060
|
/** SoraClassificationResponse */
|
|
2024
2061
|
SoraClassificationResponse: {
|
|
2025
2062
|
/**
|
|
@@ -2035,14 +2072,9 @@ export interface components {
|
|
|
2035
2072
|
* @enum {string}
|
|
2036
2073
|
*/
|
|
2037
2074
|
type?: "sora_classification";
|
|
2038
|
-
|
|
2075
|
+
/** Attributes */
|
|
2076
|
+
attributes: components["schemas"]["JarusV2_5SoraClassification-Output"] | components["schemas"]["UkSoraClassification-Output"];
|
|
2039
2077
|
};
|
|
2040
|
-
/**
|
|
2041
|
-
* SoraImplementation
|
|
2042
|
-
* @constant
|
|
2043
|
-
* @enum {string}
|
|
2044
|
-
*/
|
|
2045
|
-
SoraImplementation: "jarus_v2.5";
|
|
2046
2078
|
/** SoraReportAttributes */
|
|
2047
2079
|
SoraReportAttributes: {
|
|
2048
2080
|
/**
|
|
@@ -2411,6 +2443,87 @@ export interface components {
|
|
|
2411
2443
|
type?: "air_risk_classification";
|
|
2412
2444
|
attributes: components["schemas"]["UkArcAttributes"];
|
|
2413
2445
|
};
|
|
2446
|
+
/** UkClassificationPayload */
|
|
2447
|
+
UkClassificationPayload: {
|
|
2448
|
+
/**
|
|
2449
|
+
* Final GRC Determination
|
|
2450
|
+
* @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC.
|
|
2451
|
+
* @enum {integer}
|
|
2452
|
+
*/
|
|
2453
|
+
final_grc: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
2454
|
+
/** Residual Arc */
|
|
2455
|
+
residual_arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
|
|
2456
|
+
mitigations: components["schemas"]["UkMitigations"];
|
|
2457
|
+
/**
|
|
2458
|
+
* Ground Risk Buffer
|
|
2459
|
+
* @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.
|
|
2460
|
+
*/
|
|
2461
|
+
ground_risk_buffer: number;
|
|
2462
|
+
/** @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. */
|
|
2463
|
+
population_density_source: components["schemas"]["PopulationSource"];
|
|
2464
|
+
/** Controlled Ground Area Id */
|
|
2465
|
+
controlled_ground_area_id?: string | null;
|
|
2466
|
+
/** Atypical Airspace Id */
|
|
2467
|
+
atypical_airspace_id?: string | null;
|
|
2468
|
+
/** @default {
|
|
2469
|
+
* "max_cruise_speed": 20,
|
|
2470
|
+
* "characteristic_dimension": 0.5
|
|
2471
|
+
* } */
|
|
2472
|
+
aircraft?: components["schemas"]["Aircraft"];
|
|
2473
|
+
/**
|
|
2474
|
+
* Containment Robustness
|
|
2475
|
+
* @description Level of technical and operational mitigations intended to contain the flight of the UA within the defined operational volume and ground risk buffer.
|
|
2476
|
+
* @default low
|
|
2477
|
+
* @enum {string}
|
|
2478
|
+
*/
|
|
2479
|
+
containment_robustness?: "low" | "medium" | "high";
|
|
2480
|
+
};
|
|
2481
|
+
/** UkMitigations */
|
|
2482
|
+
UkMitigations: {
|
|
2483
|
+
/**
|
|
2484
|
+
* Mitigation 1(A)
|
|
2485
|
+
* @description Strategic mitigations for ground risk.
|
|
2486
|
+
* @enum {string}
|
|
2487
|
+
*/
|
|
2488
|
+
m1a: "none" | "low" | "medium";
|
|
2489
|
+
/**
|
|
2490
|
+
* Mitigation 1(B)
|
|
2491
|
+
* @description Visual Line of Sight (VLOS) - avoid flying over people
|
|
2492
|
+
* @enum {string}
|
|
2493
|
+
*/
|
|
2494
|
+
m1b: "none" | "medium" | "high";
|
|
2495
|
+
/**
|
|
2496
|
+
* Mitigation 1(C)
|
|
2497
|
+
* @description Tactical Mitigations - Ground observation
|
|
2498
|
+
* @enum {string}
|
|
2499
|
+
*/
|
|
2500
|
+
m1c: "none" | "low";
|
|
2501
|
+
/**
|
|
2502
|
+
* Mitigation 2
|
|
2503
|
+
* @description Efforts to reduce UA impact dynamics
|
|
2504
|
+
* @enum {string}
|
|
2505
|
+
*/
|
|
2506
|
+
m2: "none" | "medium" | "high";
|
|
2507
|
+
};
|
|
2508
|
+
/** UkSailAttributes */
|
|
2509
|
+
UkSailAttributes: {
|
|
2510
|
+
/**
|
|
2511
|
+
* SAIL
|
|
2512
|
+
* @description The SAIL represents the level of confidence that the UAS operation will stay under control.
|
|
2513
|
+
* @enum {string}
|
|
2514
|
+
*/
|
|
2515
|
+
sail: "NA" | "I" | "II" | "III" | "IV" | "V" | "VI" | "VII";
|
|
2516
|
+
};
|
|
2517
|
+
/** UkSailResponse */
|
|
2518
|
+
UkSailResponse: {
|
|
2519
|
+
/**
|
|
2520
|
+
* Id
|
|
2521
|
+
* @description Unique integer representation of the SAIL
|
|
2522
|
+
* @enum {integer}
|
|
2523
|
+
*/
|
|
2524
|
+
id: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
2525
|
+
attributes: components["schemas"]["UkSailAttributes"];
|
|
2526
|
+
};
|
|
2414
2527
|
/** UkSemanticModelVolumesRequest */
|
|
2415
2528
|
UkSemanticModelVolumesRequest: {
|
|
2416
2529
|
/**
|
|
@@ -2439,6 +2552,26 @@ export interface components {
|
|
|
2439
2552
|
*/
|
|
2440
2553
|
ground_risk_buffer: number;
|
|
2441
2554
|
};
|
|
2555
|
+
/** UkSoraClassification */
|
|
2556
|
+
"UkSoraClassification-Input": {
|
|
2557
|
+
/**
|
|
2558
|
+
* Implementation
|
|
2559
|
+
* @constant
|
|
2560
|
+
* @enum {string}
|
|
2561
|
+
*/
|
|
2562
|
+
implementation: "uk";
|
|
2563
|
+
payload: components["schemas"]["UkClassificationPayload"];
|
|
2564
|
+
};
|
|
2565
|
+
/** UkSoraClassification */
|
|
2566
|
+
"UkSoraClassification-Output": {
|
|
2567
|
+
/**
|
|
2568
|
+
* Implementation
|
|
2569
|
+
* @constant
|
|
2570
|
+
* @enum {string}
|
|
2571
|
+
*/
|
|
2572
|
+
implementation: "uk";
|
|
2573
|
+
payload: components["schemas"]["UkClassificationPayload"];
|
|
2574
|
+
};
|
|
2442
2575
|
/** ValidationError */
|
|
2443
2576
|
ValidationError: {
|
|
2444
2577
|
/** Location */
|
|
@@ -4812,6 +4945,89 @@ export interface operations {
|
|
|
4812
4945
|
};
|
|
4813
4946
|
};
|
|
4814
4947
|
};
|
|
4948
|
+
uk_sail_v1_risk_assessment_sora_uk_sail_get: {
|
|
4949
|
+
parameters: {
|
|
4950
|
+
query: {
|
|
4951
|
+
/** @description The Final GRC determination, based on the availability and correct application of mitigations to the operation after determination of the intrinsic GRC. */
|
|
4952
|
+
final_grc: number;
|
|
4953
|
+
/**
|
|
4954
|
+
* @description Qualitative classification of the air environment.
|
|
4955
|
+
*
|
|
4956
|
+
* - 'arc-a1' - ARC-a (NMAC Encounter Rate)
|
|
4957
|
+
*
|
|
4958
|
+
* - 'arc-a2' - ARC-a (Linear Infrastructure)
|
|
4959
|
+
*
|
|
4960
|
+
* - 'arc-a3' - ARC-a (Restricted Airspace)
|
|
4961
|
+
*
|
|
4962
|
+
* - 'arc-a4' - ARC-a (Danger Area)
|
|
4963
|
+
*
|
|
4964
|
+
* - 'arc-a5' - ARC-a (Self Declared)
|
|
4965
|
+
*
|
|
4966
|
+
* - 'arc-b1' - ARC-b (Class C or D Airspace <500ft AGL)
|
|
4967
|
+
*
|
|
4968
|
+
* - 'arc-c1' - ARC-c (Class E or G Airspace)
|
|
4969
|
+
*
|
|
4970
|
+
* - 'arc-c2' - ARC-c (Class C or D Airspace in area with Visual Flight Rules)
|
|
4971
|
+
*
|
|
4972
|
+
* - 'arc-c3' - ARC-c (Class C or D Airspace in area with Low-Level Helicopter Route)
|
|
4973
|
+
*
|
|
4974
|
+
* - 'arc-c4' - ARC-c (Class C or D Airspace >500ft AGL)
|
|
4975
|
+
*
|
|
4976
|
+
* - 'arc-d1' - ARC-d (Class A Airspace)
|
|
4977
|
+
*
|
|
4978
|
+
* - 'arc-d2' - ARC-d (Class C or D Airspace in area with known Instrument Flight Procedures)
|
|
4979
|
+
*
|
|
4980
|
+
* @example [
|
|
4981
|
+
* "arc-b1",
|
|
4982
|
+
* "arc-c4"
|
|
4983
|
+
* ]
|
|
4984
|
+
*/
|
|
4985
|
+
arc: ("arc-a1" | "arc-a2" | "arc-a3" | "arc-a4" | "arc-a5" | "arc-b1" | "arc-c1" | "arc-c2" | "arc-c3" | "arc-c4" | "arc-d1" | "arc-d2")[];
|
|
4986
|
+
};
|
|
4987
|
+
header?: never;
|
|
4988
|
+
path?: never;
|
|
4989
|
+
cookie?: never;
|
|
4990
|
+
};
|
|
4991
|
+
requestBody?: never;
|
|
4992
|
+
responses: {
|
|
4993
|
+
/** @description Successful Response */
|
|
4994
|
+
200: {
|
|
4995
|
+
headers: {
|
|
4996
|
+
[name: string]: unknown;
|
|
4997
|
+
};
|
|
4998
|
+
content: {
|
|
4999
|
+
"application/json": components["schemas"]["JsonApiResponse_UkSailResponse_"];
|
|
5000
|
+
};
|
|
5001
|
+
};
|
|
5002
|
+
/** @description One or more input parameters were missing or invalid. */
|
|
5003
|
+
400: {
|
|
5004
|
+
headers: {
|
|
5005
|
+
[name: string]: unknown;
|
|
5006
|
+
};
|
|
5007
|
+
content: {
|
|
5008
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
5009
|
+
};
|
|
5010
|
+
};
|
|
5011
|
+
/** @description Bearer access token was not provided in Authorization header, token could not be decoded, or token was invalid. */
|
|
5012
|
+
401: {
|
|
5013
|
+
headers: {
|
|
5014
|
+
[name: string]: unknown;
|
|
5015
|
+
};
|
|
5016
|
+
content: {
|
|
5017
|
+
"application/json": components["schemas"]["JsonApiExceptionResponse"];
|
|
5018
|
+
};
|
|
5019
|
+
};
|
|
5020
|
+
/** @description Validation Error */
|
|
5021
|
+
422: {
|
|
5022
|
+
headers: {
|
|
5023
|
+
[name: string]: unknown;
|
|
5024
|
+
};
|
|
5025
|
+
content: {
|
|
5026
|
+
"application/json": components["schemas"]["HTTPValidationError"];
|
|
5027
|
+
};
|
|
5028
|
+
};
|
|
5029
|
+
};
|
|
5030
|
+
};
|
|
4815
5031
|
uk_ARCs_list_v1_risk_assessment_sora_uk_air_risk_classifications_get: {
|
|
4816
5032
|
parameters: {
|
|
4817
5033
|
query?: never;
|
|
@@ -4994,7 +5210,7 @@ export interface operations {
|
|
|
4994
5210
|
};
|
|
4995
5211
|
requestBody: {
|
|
4996
5212
|
content: {
|
|
4997
|
-
"application/json": components["schemas"]["
|
|
5213
|
+
"application/json": components["schemas"]["JarusV2_5SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
4998
5214
|
};
|
|
4999
5215
|
};
|
|
5000
5216
|
responses: {
|
|
@@ -5116,7 +5332,7 @@ export interface operations {
|
|
|
5116
5332
|
};
|
|
5117
5333
|
requestBody: {
|
|
5118
5334
|
content: {
|
|
5119
|
-
"application/json": components["schemas"]["
|
|
5335
|
+
"application/json": components["schemas"]["JarusV2_5SoraClassification-Input"] | components["schemas"]["UkSoraClassification-Input"];
|
|
5120
5336
|
};
|
|
5121
5337
|
};
|
|
5122
5338
|
responses: {
|