udl-sdk 0.1.0a17__py3-none-any.whl → 0.1.0a18__py3-none-any.whl

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.
Files changed (147) hide show
  1. {udl_sdk-0.1.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/METADATA +1 -1
  2. {udl_sdk-0.1.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/RECORD +136 -129
  3. unifieddatalibrary/_client.py +27 -61
  4. unifieddatalibrary/_version.py +1 -1
  5. unifieddatalibrary/resources/__init__.py +28 -84
  6. unifieddatalibrary/resources/air_operations/__init__.py +0 -14
  7. unifieddatalibrary/resources/air_operations/air_operations.py +0 -32
  8. unifieddatalibrary/resources/air_operations/aircraft_sorties.py +1507 -37
  9. unifieddatalibrary/resources/air_operations/crewpapers.py +4 -4
  10. unifieddatalibrary/resources/airload_plans.py +1311 -59
  11. unifieddatalibrary/resources/attitude_sets/attitude_sets.py +106 -0
  12. unifieddatalibrary/resources/conjunctions/conjunctions.py +4 -4
  13. unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +801 -0
  14. unifieddatalibrary/resources/iono_observations/__init__.py +33 -0
  15. unifieddatalibrary/resources/{iono_observation → iono_observations}/history.py +2 -2
  16. unifieddatalibrary/resources/{ion_oobservation.py → iono_observations/iono_observations.py} +123 -91
  17. unifieddatalibrary/resources/logistics_support/logistics_support.py +5 -4
  18. unifieddatalibrary/resources/onorbitantenna.py +5 -4
  19. unifieddatalibrary/resources/onorbitbattery.py +5 -4
  20. unifieddatalibrary/resources/onorbitsolararray.py +5 -4
  21. unifieddatalibrary/resources/onorbitthruster.py +5 -4
  22. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/__init__.py +13 -13
  23. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/history.py +2 -2
  24. unifieddatalibrary/resources/{report_and_activity/report_and_activity.py → report_and_activities/report_and_activities.py} +35 -35
  25. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_h3geo.py +1 -1
  26. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_sigact.py +1 -1
  27. unifieddatalibrary/resources/scs/paths.py +4 -4
  28. unifieddatalibrary/resources/scs/scs.py +4 -4
  29. unifieddatalibrary/resources/scs/v2.py +4 -4
  30. unifieddatalibrary/resources/status.py +5 -4
  31. unifieddatalibrary/resources/supporting_data/__init__.py +0 -42
  32. unifieddatalibrary/resources/supporting_data/dataowner.py +257 -1
  33. unifieddatalibrary/resources/supporting_data/supporting_data.py +0 -96
  34. unifieddatalibrary/resources/track_route/track_route.py +26 -23
  35. unifieddatalibrary/types/__init__.py +40 -30
  36. unifieddatalibrary/types/air_operations/__init__.py +12 -12
  37. unifieddatalibrary/types/air_operations/{aircraft_sortie_list_params.py → aircraft_sorty_count_params.py} +2 -2
  38. unifieddatalibrary/types/air_operations/aircraft_sorty_count_response.py +7 -0
  39. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_bulk_params.py → aircraft_sorty_create_bulk_params.py} +2 -2
  40. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_params.py → aircraft_sorty_create_params.py} +2 -2
  41. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_aodr_params.py → aircraft_sorty_history_aodr_params.py} +2 -2
  42. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_count_params.py → aircraft_sorty_history_count_params.py} +2 -2
  43. unifieddatalibrary/types/{ion_oobservation_count_response.py → air_operations/aircraft_sorty_history_count_response.py} +2 -2
  44. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_params.py → aircraft_sorty_history_query_params.py} +2 -2
  45. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_response.py → aircraft_sorty_history_query_response.py} +2 -2
  46. unifieddatalibrary/types/air_operations/{aircraft_sortie_count_params.py → aircraft_sorty_list_params.py} +2 -2
  47. unifieddatalibrary/types/{air_load_plan_count_params.py → airload_plan_count_params.py} +2 -2
  48. unifieddatalibrary/types/{air_load_plan_count_response.py → airload_plan_count_response.py} +2 -2
  49. unifieddatalibrary/types/{air_load_plan_create_params.py → airload_plan_create_params.py} +2 -2
  50. unifieddatalibrary/types/{air_load_plan_list_params.py → airload_plan_list_params.py} +2 -2
  51. unifieddatalibrary/types/{air_load_plan_queryhelp_response.py → airload_plan_queryhelp_response.py} +2 -2
  52. unifieddatalibrary/types/{air_load_plan_retrieve_params.py → airload_plan_retrieve_params.py} +2 -2
  53. unifieddatalibrary/types/{air_load_plan_tuple_params.py → airload_plan_tuple_params.py} +2 -2
  54. unifieddatalibrary/types/{air_load_plan_tuple_response.py → airload_plan_tuple_response.py} +2 -2
  55. unifieddatalibrary/types/altitude_blocks_ingest_param.py +22 -0
  56. unifieddatalibrary/types/{attitudeset_retrieve_params.py → attitude_set_retrieve_params.py} +2 -2
  57. unifieddatalibrary/types/{gnss_rawif_count_params.py → gnss_raw_if_count_params.py} +2 -2
  58. unifieddatalibrary/types/{gnss_rawif_count_response.py → gnss_raw_if_count_response.py} +2 -2
  59. unifieddatalibrary/types/{gnss_rawif_file_get_params.py → gnss_raw_if_file_get_params.py} +2 -2
  60. unifieddatalibrary/types/{gnss_rawif_get_params.py → gnss_raw_if_get_params.py} +2 -2
  61. unifieddatalibrary/types/{gnss_rawif_get_response.py → gnss_raw_if_get_response.py} +2 -2
  62. unifieddatalibrary/types/{gnss_rawif_list_params.py → gnss_raw_if_list_params.py} +2 -2
  63. unifieddatalibrary/types/{gnss_rawif_list_response.py → gnss_raw_if_list_response.py} +2 -2
  64. unifieddatalibrary/types/{gnss_rawif_queryhelp_response.py → gnss_raw_if_queryhelp_response.py} +2 -2
  65. unifieddatalibrary/types/{gnss_rawif_tuple_params.py → gnss_raw_if_tuple_params.py} +2 -2
  66. unifieddatalibrary/types/{gnss_rawif_tuple_response.py → gnss_raw_if_tuple_response.py} +3 -3
  67. unifieddatalibrary/types/{gnss_rawif_upload_zip_params.py → gnss_raw_if_upload_zip_params.py} +2 -2
  68. unifieddatalibrary/types/{ion_oobservation_count_params.py → iono_observation_count_params.py} +2 -2
  69. unifieddatalibrary/types/{air_operations/aircraft_sortie_count_response.py → iono_observation_count_response.py} +2 -2
  70. unifieddatalibrary/types/{ion_oobservation_create_bulk_params.py → iono_observation_create_bulk_params.py} +2 -2
  71. unifieddatalibrary/types/{ion_oobservation_list_params.py → iono_observation_list_params.py} +2 -2
  72. unifieddatalibrary/types/{ion_oobservation_list_response.py → iono_observation_list_response.py} +2 -2
  73. unifieddatalibrary/types/{ion_oobservation_queryhelp_response.py → iono_observation_queryhelp_response.py} +2 -2
  74. unifieddatalibrary/types/{ion_oobservation_tuple_params.py → iono_observation_tuple_params.py} +2 -2
  75. unifieddatalibrary/types/{ion_oobservation_tuple_response.py → iono_observation_tuple_response.py} +82 -82
  76. unifieddatalibrary/types/{ion_oobservation_unvalidated_publish_params.py → iono_observation_unvalidated_publish_params.py} +2 -2
  77. unifieddatalibrary/types/logistics_remarks_ingest_param.py +25 -0
  78. unifieddatalibrary/types/logistics_support_create_bulk_params.py +4 -51
  79. unifieddatalibrary/types/logistics_support_create_params.py +4 -49
  80. unifieddatalibrary/types/logistics_support_unvalidated_publish_params.py +4 -51
  81. unifieddatalibrary/types/logistics_support_update_params.py +4 -49
  82. unifieddatalibrary/types/onorbitantenna_create_params.py +3 -38
  83. unifieddatalibrary/types/onorbitantenna_update_params.py +3 -38
  84. unifieddatalibrary/types/onorbitbattery_create_params.py +3 -38
  85. unifieddatalibrary/types/onorbitbattery_update_params.py +3 -38
  86. unifieddatalibrary/types/onorbitsolararray_create_params.py +3 -38
  87. unifieddatalibrary/types/onorbitsolararray_update_params.py +3 -38
  88. unifieddatalibrary/types/onorbitthruster_create_params.py +3 -41
  89. unifieddatalibrary/types/onorbitthruster_update_params.py +3 -41
  90. unifieddatalibrary/types/point_of_contact_ingest_param.py +41 -0
  91. unifieddatalibrary/types/route_points_ingest_param.py +82 -0
  92. unifieddatalibrary/types/shared/__init__.py +5 -0
  93. unifieddatalibrary/types/shared/antenna_ingest.py +62 -0
  94. unifieddatalibrary/types/shared/battery_ingest.py +62 -0
  95. unifieddatalibrary/types/shared/engine_ingest.py +65 -0
  96. unifieddatalibrary/types/shared/solar_array_ingest.py +62 -0
  97. unifieddatalibrary/types/shared/sub_status_ingest.py +74 -0
  98. unifieddatalibrary/types/shared_params/__init__.py +5 -0
  99. unifieddatalibrary/types/shared_params/antenna_ingest.py +45 -0
  100. unifieddatalibrary/types/shared_params/battery_ingest.py +45 -0
  101. unifieddatalibrary/types/shared_params/engine_ingest.py +48 -0
  102. unifieddatalibrary/types/shared_params/solar_array_ingest.py +45 -0
  103. unifieddatalibrary/types/shared_params/sub_status_ingest.py +57 -0
  104. unifieddatalibrary/types/status_create_params.py +3 -50
  105. unifieddatalibrary/types/status_update_params.py +3 -50
  106. unifieddatalibrary/types/supporting_data/__init__.py +13 -5
  107. unifieddatalibrary/types/supporting_data/{query_help_retrieve_response.py → dataowner_query_help_response.py} +2 -2
  108. unifieddatalibrary/types/supporting_data/{dataowner_type_list_params.py → dataowner_retrieve_data_owner_types_params.py} +2 -2
  109. unifieddatalibrary/types/supporting_data/dataowner_retrieve_data_owner_types_response.py +8 -0
  110. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_params.py → dataowner_retrieve_provider_metadata_params.py} +2 -2
  111. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_response.py → dataowner_retrieve_provider_metadata_response.py} +2 -2
  112. unifieddatalibrary/types/track_route_create_bulk_params.py +5 -267
  113. unifieddatalibrary/types/track_route_create_params.py +7 -122
  114. unifieddatalibrary/types/track_route_ingest_param.py +157 -0
  115. unifieddatalibrary/types/track_route_unvalidated_publish_params.py +7 -122
  116. unifieddatalibrary/types/track_route_update_params.py +7 -122
  117. unifieddatalibrary/resources/air_load_plans.py +0 -1341
  118. unifieddatalibrary/resources/air_operations/aircraft_sortie.py +0 -1557
  119. unifieddatalibrary/resources/attitudesets.py +0 -191
  120. unifieddatalibrary/resources/gnss_rawif.py +0 -871
  121. unifieddatalibrary/resources/iono_observation/__init__.py +0 -33
  122. unifieddatalibrary/resources/iono_observation/iono_observation.py +0 -102
  123. unifieddatalibrary/resources/supporting_data/dataowner_types.py +0 -186
  124. unifieddatalibrary/resources/supporting_data/provider_metadata.py +0 -179
  125. unifieddatalibrary/resources/supporting_data/query_help.py +0 -141
  126. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_response.py +0 -7
  127. unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +0 -7
  128. {udl_sdk-0.1.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/WHEEL +0 -0
  129. {udl_sdk-0.1.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/licenses/LICENSE +0 -0
  130. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  131. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/poi.py +0 -0
  132. /unifieddatalibrary/types/{iono_observation → iono_observations}/__init__.py +0 -0
  133. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_aodr_params.py +0 -0
  134. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_params.py +0 -0
  135. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_response.py +0 -0
  136. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_params.py +0 -0
  137. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_response.py +0 -0
  138. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/__init__.py +0 -0
  139. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  140. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_aodr_params.py +0 -0
  141. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_params.py +0 -0
  142. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_response.py +0 -0
  143. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_params.py +0 -0
  144. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_response.py +0 -0
  145. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_h3geo_unvalidated_publish_params.py +0 -0
  146. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_file_get_params.py +0 -0
  147. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_unvalidated_publish_params.py +0 -0
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.solar_array_ingest import SolarArrayIngest
8
9
 
9
- __all__ = ["OnorbitsolararrayUpdateParams", "SolarArray"]
10
+ __all__ = ["OnorbitsolararrayUpdateParams"]
10
11
 
11
12
 
12
13
  class OnorbitsolararrayUpdateParams(TypedDict, total=False):
@@ -56,45 +57,9 @@ class OnorbitsolararrayUpdateParams(TypedDict, total=False):
56
57
  idSolarArray.
57
58
  """
58
59
 
59
- solar_array: Annotated[SolarArray, PropertyInfo(alias="solarArray")]
60
+ solar_array: Annotated[SolarArrayIngest, PropertyInfo(alias="solarArray")]
60
61
  """Model representation of information on on-orbit/spacecraft solar arrays.
61
62
 
62
63
  A spacecraft may have multiple solar arrays and each solar array can have
63
64
  multiple 'details' records compiled by different sources.
64
65
  """
65
-
66
-
67
- class SolarArray(TypedDict, total=False):
68
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
69
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
70
-
71
- EXERCISE: Data pertaining to a government or military exercise. The data
72
- may include both real and simulated data.
73
-
74
- REAL: Data collected or produced that pertains to real-world objects,
75
- events, and analysis.
76
-
77
- SIMULATED: Synthetic data generated by a model to mimic real-world
78
- datasets.
79
-
80
- TEST: Specific datasets used to evaluate compliance with specifications and
81
- requirements, and for validating technical, functional, and performance
82
- characteristics.
83
- """
84
-
85
- name: Required[str]
86
- """Solar Array name."""
87
-
88
- source: Required[str]
89
- """Source of the data."""
90
-
91
- id: str
92
- """Unique identifier of the record, auto-generated by the system."""
93
-
94
- origin: str
95
- """
96
- Originating system or organization which produced the data, if different from
97
- the source. The origin may be different than the source if the source was a
98
- mediating system which forwarded the data on behalf of the origin system. If
99
- null, the source may be assumed to be the origin.
100
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.engine_ingest import EngineIngest
8
9
 
9
- __all__ = ["OnorbitthrusterCreateParams", "Engine"]
10
+ __all__ = ["OnorbitthrusterCreateParams"]
10
11
 
11
12
 
12
13
  class OnorbitthrusterCreateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitthrusterCreateParams(TypedDict, total=False):
42
43
  id: str
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- engine: Engine
46
+ engine: EngineIngest
46
47
  """Known launch vehicle engines and their performance characteristics and limits.
47
48
 
48
49
  A launch vehicle has 1 to many engines per stage.
@@ -67,42 +68,3 @@ class OnorbitthrusterCreateParams(TypedDict, total=False):
67
68
 
68
69
  LAE, Hydrazine REA, etc.).
69
70
  """
70
-
71
-
72
- class Engine(TypedDict, total=False):
73
- classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
74
- """Classification marking of the data in IC/CAPCO Portion-marked format."""
75
-
76
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
77
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
78
-
79
- EXERCISE: Data pertaining to a government or military exercise. The data
80
- may include both real and simulated data.
81
-
82
- REAL: Data collected or produced that pertains to real-world objects,
83
- events, and analysis.
84
-
85
- SIMULATED: Synthetic data generated by a model to mimic real-world
86
- datasets.
87
-
88
- TEST: Specific datasets used to evaluate compliance with specifications and
89
- requirements, and for validating technical, functional, and performance
90
- characteristics.
91
- """
92
-
93
- name: Required[str]
94
- """Engine name/variant."""
95
-
96
- source: Required[str]
97
- """Source of the data."""
98
-
99
- id: str
100
- """Unique identifier of the record, auto-generated by the system."""
101
-
102
- origin: str
103
- """
104
- Originating system or organization which produced the data, if different from
105
- the source. The origin may be different than the source if the source was a
106
- mediating system which forwarded the data on behalf of the origin system. If
107
- null, the source may be assumed to be the origin.
108
- """
@@ -5,8 +5,9 @@ from __future__ import annotations
5
5
  from typing_extensions import Literal, Required, Annotated, TypedDict
6
6
 
7
7
  from .._utils import PropertyInfo
8
+ from .shared_params.engine_ingest import EngineIngest
8
9
 
9
- __all__ = ["OnorbitthrusterUpdateParams", "Engine"]
10
+ __all__ = ["OnorbitthrusterUpdateParams"]
10
11
 
11
12
 
12
13
  class OnorbitthrusterUpdateParams(TypedDict, total=False):
@@ -42,7 +43,7 @@ class OnorbitthrusterUpdateParams(TypedDict, total=False):
42
43
  body_id: Annotated[str, PropertyInfo(alias="id")]
43
44
  """Unique identifier of the record, auto-generated by the system."""
44
45
 
45
- engine: Engine
46
+ engine: EngineIngest
46
47
  """Known launch vehicle engines and their performance characteristics and limits.
47
48
 
48
49
  A launch vehicle has 1 to many engines per stage.
@@ -67,42 +68,3 @@ class OnorbitthrusterUpdateParams(TypedDict, total=False):
67
68
 
68
69
  LAE, Hydrazine REA, etc.).
69
70
  """
70
-
71
-
72
- class Engine(TypedDict, total=False):
73
- classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
74
- """Classification marking of the data in IC/CAPCO Portion-marked format."""
75
-
76
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
77
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
78
-
79
- EXERCISE: Data pertaining to a government or military exercise. The data
80
- may include both real and simulated data.
81
-
82
- REAL: Data collected or produced that pertains to real-world objects,
83
- events, and analysis.
84
-
85
- SIMULATED: Synthetic data generated by a model to mimic real-world
86
- datasets.
87
-
88
- TEST: Specific datasets used to evaluate compliance with specifications and
89
- requirements, and for validating technical, functional, and performance
90
- characteristics.
91
- """
92
-
93
- name: Required[str]
94
- """Engine name/variant."""
95
-
96
- source: Required[str]
97
- """Source of the data."""
98
-
99
- id: str
100
- """Unique identifier of the record, auto-generated by the system."""
101
-
102
- origin: str
103
- """
104
- Originating system or organization which produced the data, if different from
105
- the source. The origin may be different than the source if the source was a
106
- mediating system which forwarded the data on behalf of the origin system. If
107
- null, the source may be assumed to be the origin.
108
- """
@@ -0,0 +1,41 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Annotated, TypedDict
6
+
7
+ from .._utils import PropertyInfo
8
+
9
+ __all__ = ["PointOfContactIngestParam"]
10
+
11
+
12
+ class PointOfContactIngestParam(TypedDict, total=False):
13
+ office: str
14
+ """Office name for which the contact belongs."""
15
+
16
+ phone: str
17
+ """Phone number of the contact."""
18
+
19
+ poc_name: Annotated[str, PropertyInfo(alias="pocName")]
20
+ """The name of the contact."""
21
+
22
+ poc_org: Annotated[str, PropertyInfo(alias="pocOrg")]
23
+ """Organization name for which the contact belongs."""
24
+
25
+ poc_sequence_id: Annotated[int, PropertyInfo(alias="pocSequenceId")]
26
+ """Sequencing field for point of contact."""
27
+
28
+ poc_type_name: Annotated[str, PropertyInfo(alias="pocTypeName")]
29
+ """
30
+ A code or name that represents the contact's role in association to the track
31
+ route (ex. Originator, Scheduler, Maintainer, etc.).
32
+ """
33
+
34
+ rank: str
35
+ """The rank of contact."""
36
+
37
+ remark: str
38
+ """Text of the remark."""
39
+
40
+ username: str
41
+ """The username of the contact."""
@@ -0,0 +1,82 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Annotated, TypedDict
6
+
7
+ from .._utils import PropertyInfo
8
+
9
+ __all__ = ["RoutePointsIngestParam"]
10
+
11
+
12
+ class RoutePointsIngestParam(TypedDict, total=False):
13
+ alt_country_code: Annotated[str, PropertyInfo(alias="altCountryCode")]
14
+ """
15
+ Specifies an alternate country code if the data provider code is not part of an
16
+ official NAVAID Country Code standard such as ISO-3166 or FIPS. This field will
17
+ be set to the value provided by the source and should be used for all Queries
18
+ specifying a Country Code.
19
+ """
20
+
21
+ country_code: Annotated[str, PropertyInfo(alias="countryCode")]
22
+ """
23
+ The DoD Standard Country Code designator for the country where the route point
24
+ resides. This field should be set to "OTHR" if the source value does not match a
25
+ UDL country code value (ISO-3166-ALPHA-2).
26
+ """
27
+
28
+ dafif_pt: Annotated[bool, PropertyInfo(alias="dafifPt")]
29
+ """
30
+ Flag indicating this is a Digital Aeronautical Flight Information File (DAFIF)
31
+ point.
32
+ """
33
+
34
+ mag_dec: Annotated[float, PropertyInfo(alias="magDec")]
35
+ """
36
+ The magnetic declination/variation of the route point location from true north,
37
+ in degrees. Positive values east of true north and negative values west of true
38
+ north.
39
+ """
40
+
41
+ navaid: str
42
+ """Navigational Aid (NAVAID) identification code."""
43
+
44
+ navaid_length: Annotated[float, PropertyInfo(alias="navaidLength")]
45
+ """The length of the course from the Navigational Aid (NAVAID) in nautical miles."""
46
+
47
+ navaid_type: Annotated[str, PropertyInfo(alias="navaidType")]
48
+ """The NAVAID type of this route point (ex. VOR, VORTAC, TACAN, etc.)."""
49
+
50
+ pt_lat: Annotated[float, PropertyInfo(alias="ptLat")]
51
+ """WGS84 latitude of the point location, in degrees.
52
+
53
+ -90 to 90 degrees (negative values south of equator).
54
+ """
55
+
56
+ pt_lon: Annotated[float, PropertyInfo(alias="ptLon")]
57
+ """WGS84 longitude of the point location, in degrees.
58
+
59
+ -180 to 180 degrees (negative values west of Prime Meridian).
60
+ """
61
+
62
+ pt_sequence_id: Annotated[int, PropertyInfo(alias="ptSequenceId")]
63
+ """Sequencing field for the track route.
64
+
65
+ This is the identifier representing the sequence of waypoints associated to the
66
+ track route.
67
+ """
68
+
69
+ pt_type_code: Annotated[str, PropertyInfo(alias="ptTypeCode")]
70
+ """Code representation of the point within the track route (ex.
71
+
72
+ EP, EX, CP, IP, etc.).
73
+ """
74
+
75
+ pt_type_name: Annotated[str, PropertyInfo(alias="ptTypeName")]
76
+ """The name that represents the point within the track route (ex.
77
+
78
+ ENTRY POINT, EXIT POINT, CONTROL POINT, INITIAL POINT, etc.).
79
+ """
80
+
81
+ waypoint_name: Annotated[str, PropertyInfo(alias="waypointName")]
82
+ """Name of a waypoint which identifies the location of the point."""
@@ -21,7 +21,10 @@ from .pathway_full import PathwayFull as PathwayFull
21
21
  from .rf_band_full import RfBandFull as RfBandFull
22
22
  from .aircraft_full import AircraftFull as AircraftFull
23
23
  from .airfield_full import AirfieldFull as AirfieldFull
24
+ from .engine_ingest import EngineIngest as EngineIngest
24
25
  from .location_full import LocationFull as LocationFull
26
+ from .antenna_ingest import AntennaIngest as AntennaIngest
27
+ from .battery_ingest import BatteryIngest as BatteryIngest
25
28
  from .ephemeris_full import EphemerisFull as EphemerisFull
26
29
  from .sortie_ppr_full import SortiePprFull as SortiePprFull
27
30
  from .sub_status_full import SubStatusFull as SubStatusFull
@@ -38,8 +41,10 @@ from .location_abridged import LocationAbridged as LocationAbridged
38
41
  from .notification_full import NotificationFull as NotificationFull
39
42
  from .organization_full import OrganizationFull as OrganizationFull
40
43
  from .state_vector_full import StateVectorFull as StateVectorFull
44
+ from .sub_status_ingest import SubStatusIngest as SubStatusIngest
41
45
  from .drift_history_full import DriftHistoryFull as DriftHistoryFull
42
46
  from .operatingunit_full import OperatingunitFull as OperatingunitFull
47
+ from .solar_array_ingest import SolarArrayIngest as SolarArrayIngest
43
48
  from .aircraftsortie_full import AircraftsortieFull as AircraftsortieFull
44
49
  from .aircraftstatus_full import AircraftstatusFull as AircraftstatusFull
45
50
  from .airfieldstatus_full import AirfieldstatusFull as AirfieldstatusFull
@@ -0,0 +1,62 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ..._models import BaseModel
10
+
11
+ __all__ = ["AntennaIngest"]
12
+
13
+
14
+ class AntennaIngest(BaseModel):
15
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"] = FieldInfo(alias="dataMode")
16
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
17
+
18
+ EXERCISE: Data pertaining to a government or military exercise. The data
19
+ may include both real and simulated data.
20
+
21
+ REAL: Data collected or produced that pertains to real-world objects,
22
+ events, and analysis.
23
+
24
+ SIMULATED: Synthetic data generated by a model to mimic real-world
25
+ datasets.
26
+
27
+ TEST: Specific datasets used to evaluate compliance with specifications and
28
+ requirements, and for validating technical, functional, and performance
29
+ characteristics.
30
+ """
31
+
32
+ name: str
33
+ """Antenna name."""
34
+
35
+ source: str
36
+ """Source of the data."""
37
+
38
+ id: Optional[str] = None
39
+ """Unique identifier of the record, auto-generated by the system."""
40
+
41
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
42
+ """Time the row was created in the database, auto-populated by the system."""
43
+
44
+ created_by: Optional[str] = FieldInfo(alias="createdBy", default=None)
45
+ """
46
+ Application user who created the row in the database, auto-populated by the
47
+ system.
48
+ """
49
+
50
+ origin: Optional[str] = None
51
+ """
52
+ Originating system or organization which produced the data, if different from
53
+ the source. The origin may be different than the source if the source was a
54
+ mediating system which forwarded the data on behalf of the origin system. If
55
+ null, the source may be assumed to be the origin.
56
+ """
57
+
58
+ orig_network: Optional[str] = FieldInfo(alias="origNetwork", default=None)
59
+ """
60
+ The originating source network on which this record was created, auto-populated
61
+ by the system.
62
+ """
@@ -0,0 +1,62 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ..._models import BaseModel
10
+
11
+ __all__ = ["BatteryIngest"]
12
+
13
+
14
+ class BatteryIngest(BaseModel):
15
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"] = FieldInfo(alias="dataMode")
16
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
17
+
18
+ EXERCISE: Data pertaining to a government or military exercise. The data
19
+ may include both real and simulated data.
20
+
21
+ REAL: Data collected or produced that pertains to real-world objects,
22
+ events, and analysis.
23
+
24
+ SIMULATED: Synthetic data generated by a model to mimic real-world
25
+ datasets.
26
+
27
+ TEST: Specific datasets used to evaluate compliance with specifications and
28
+ requirements, and for validating technical, functional, and performance
29
+ characteristics.
30
+ """
31
+
32
+ name: str
33
+ """Battery name."""
34
+
35
+ source: str
36
+ """Source of the data."""
37
+
38
+ id: Optional[str] = None
39
+ """Unique identifier of the record, auto-generated by the system."""
40
+
41
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
42
+ """Time the row was created in the database, auto-populated by the system."""
43
+
44
+ created_by: Optional[str] = FieldInfo(alias="createdBy", default=None)
45
+ """
46
+ Application user who created the row in the database, auto-populated by the
47
+ system.
48
+ """
49
+
50
+ origin: Optional[str] = None
51
+ """
52
+ Originating system or organization which produced the data, if different from
53
+ the source. The origin may be different than the source if the source was a
54
+ mediating system which forwarded the data on behalf of the origin system. If
55
+ null, the source may be assumed to be the origin.
56
+ """
57
+
58
+ orig_network: Optional[str] = FieldInfo(alias="origNetwork", default=None)
59
+ """
60
+ The originating source network on which this record was created, auto-populated
61
+ by the system.
62
+ """
@@ -0,0 +1,65 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ..._models import BaseModel
10
+
11
+ __all__ = ["EngineIngest"]
12
+
13
+
14
+ class EngineIngest(BaseModel):
15
+ classification_marking: str = FieldInfo(alias="classificationMarking")
16
+ """Classification marking of the data in IC/CAPCO Portion-marked format."""
17
+
18
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"] = FieldInfo(alias="dataMode")
19
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
20
+
21
+ EXERCISE: Data pertaining to a government or military exercise. The data
22
+ may include both real and simulated data.
23
+
24
+ REAL: Data collected or produced that pertains to real-world objects,
25
+ events, and analysis.
26
+
27
+ SIMULATED: Synthetic data generated by a model to mimic real-world
28
+ datasets.
29
+
30
+ TEST: Specific datasets used to evaluate compliance with specifications and
31
+ requirements, and for validating technical, functional, and performance
32
+ characteristics.
33
+ """
34
+
35
+ name: str
36
+ """Engine name/variant."""
37
+
38
+ source: str
39
+ """Source of the data."""
40
+
41
+ id: Optional[str] = None
42
+ """Unique identifier of the record, auto-generated by the system."""
43
+
44
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
45
+ """Time the row was created in the database, auto-populated by the system."""
46
+
47
+ created_by: Optional[str] = FieldInfo(alias="createdBy", default=None)
48
+ """
49
+ Application user who created the row in the database, auto-populated by the
50
+ system.
51
+ """
52
+
53
+ origin: Optional[str] = None
54
+ """
55
+ Originating system or organization which produced the data, if different from
56
+ the source. The origin may be different than the source if the source was a
57
+ mediating system which forwarded the data on behalf of the origin system. If
58
+ null, the source may be assumed to be the origin.
59
+ """
60
+
61
+ orig_network: Optional[str] = FieldInfo(alias="origNetwork", default=None)
62
+ """
63
+ The originating source network on which this record was created, auto-populated
64
+ by the system.
65
+ """
@@ -0,0 +1,62 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ..._models import BaseModel
10
+
11
+ __all__ = ["SolarArrayIngest"]
12
+
13
+
14
+ class SolarArrayIngest(BaseModel):
15
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"] = FieldInfo(alias="dataMode")
16
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
17
+
18
+ EXERCISE: Data pertaining to a government or military exercise. The data
19
+ may include both real and simulated data.
20
+
21
+ REAL: Data collected or produced that pertains to real-world objects,
22
+ events, and analysis.
23
+
24
+ SIMULATED: Synthetic data generated by a model to mimic real-world
25
+ datasets.
26
+
27
+ TEST: Specific datasets used to evaluate compliance with specifications and
28
+ requirements, and for validating technical, functional, and performance
29
+ characteristics.
30
+ """
31
+
32
+ name: str
33
+ """Solar Array name."""
34
+
35
+ source: str
36
+ """Source of the data."""
37
+
38
+ id: Optional[str] = None
39
+ """Unique identifier of the record, auto-generated by the system."""
40
+
41
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
42
+ """Time the row was created in the database, auto-populated by the system."""
43
+
44
+ created_by: Optional[str] = FieldInfo(alias="createdBy", default=None)
45
+ """
46
+ Application user who created the row in the database, auto-populated by the
47
+ system.
48
+ """
49
+
50
+ origin: Optional[str] = None
51
+ """
52
+ Originating system or organization which produced the data, if different from
53
+ the source. The origin may be different than the source if the source was a
54
+ mediating system which forwarded the data on behalf of the origin system. If
55
+ null, the source may be assumed to be the origin.
56
+ """
57
+
58
+ orig_network: Optional[str] = FieldInfo(alias="origNetwork", default=None)
59
+ """
60
+ The originating source network on which this record was created, auto-populated
61
+ by the system.
62
+ """
@@ -0,0 +1,74 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from ..._models import BaseModel
10
+
11
+ __all__ = ["SubStatusIngest"]
12
+
13
+
14
+ class SubStatusIngest(BaseModel):
15
+ classification_marking: str = FieldInfo(alias="classificationMarking")
16
+ """Classification marking of the data in IC/CAPCO Portion-marked format."""
17
+
18
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"] = FieldInfo(alias="dataMode")
19
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
20
+
21
+ EXERCISE: Data pertaining to a government or military exercise. The data
22
+ may include both real and simulated data.
23
+
24
+ REAL: Data collected or produced that pertains to real-world objects,
25
+ events, and analysis.
26
+
27
+ SIMULATED: Synthetic data generated by a model to mimic real-world
28
+ datasets.
29
+
30
+ TEST: Specific datasets used to evaluate compliance with specifications and
31
+ requirements, and for validating technical, functional, and performance
32
+ characteristics.
33
+ """
34
+
35
+ notes: str
36
+ """Descriptions and/or comments associated with the sub-status."""
37
+
38
+ source: str
39
+ """Source of the data."""
40
+
41
+ status: Literal["FMC", "NMC", "PMC", "UNK"]
42
+ """Status of the sub-system/capability, e.g. FMC, NMC, PMC, UNK."""
43
+
44
+ status_id: str = FieldInfo(alias="statusId")
45
+ """Id of the parent status."""
46
+
47
+ type: Literal["mwCap", "ssCap", "mdCap"]
48
+ """Parent entity's sub-system or capability status: mwCap, mdCap, ssCap, etc."""
49
+
50
+ id: Optional[str] = None
51
+ """Unique identifier of the record, auto-generated by the system."""
52
+
53
+ created_at: Optional[datetime] = FieldInfo(alias="createdAt", default=None)
54
+ """Time the row was created in the database, auto-populated by the system."""
55
+
56
+ created_by: Optional[str] = FieldInfo(alias="createdBy", default=None)
57
+ """
58
+ Application user who created the row in the database, auto-populated by the
59
+ system.
60
+ """
61
+
62
+ origin: Optional[str] = None
63
+ """
64
+ Originating system or organization which produced the data, if different from
65
+ the source. The origin may be different than the source if the source was a
66
+ mediating system which forwarded the data on behalf of the origin system. If
67
+ null, the source may be assumed to be the origin.
68
+ """
69
+
70
+ orig_network: Optional[str] = FieldInfo(alias="origNetwork", default=None)
71
+ """
72
+ The originating source network on which this record was created, auto-populated
73
+ by the system.
74
+ """
@@ -1,3 +1,8 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  from .file_data import FileData as FileData
4
+ from .engine_ingest import EngineIngest as EngineIngest
5
+ from .antenna_ingest import AntennaIngest as AntennaIngest
6
+ from .battery_ingest import BatteryIngest as BatteryIngest
7
+ from .sub_status_ingest import SubStatusIngest as SubStatusIngest
8
+ from .solar_array_ingest import SolarArrayIngest as SolarArrayIngest