@osdk/client.unstable 2.2.0-beta.16 → 2.2.0-beta.18
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/CHANGELOG.md +13 -0
- package/build/cjs/index.d.cts +795 -42
- package/build/types/generated/ontology-metadata/api/__components.d.ts +441 -36
- package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/audit/__components.d.ts +8 -2
- package/build/types/generated/ontology-metadata/api/audit/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/audit/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/audit/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +3 -3
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts +1 -0
- package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +40 -0
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/objectset/__components.d.ts +308 -1
- package/build/types/generated/ontology-metadata/api/objectset/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/objectset/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/objectset/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/objectstorage/__components.d.ts +2 -1
- package/build/types/generated/ontology-metadata/api/objectstorage/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +2 -0
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/types/__components.d.ts +47 -7
- package/build/types/generated/ontology-metadata/api/types/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/types/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/types/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/v2/OntologyModificationService/dryRunModifyOntology.d.ts +4 -0
- package/build/types/generated/ontology-metadata/api/v2/OntologyModificationService/dryRunModifyOntology.d.ts.map +1 -0
- package/build/types/generated/ontology-metadata/api/v2/OntologyModificationService.d.ts +1 -0
- package/build/types/generated/ontology-metadata/api/v2/OntologyModificationService.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +3899 -174
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/dryRunMergeOntologyBranch.d.ts +10 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService/dryRunMergeOntologyBranch.d.ts.map +1 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts +1 -0
- package/build/types/generated/ontology-metadata/branch/api/OntologyBranchService.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +28 -2
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
- package/build/types/index.d.ts +1 -1
- package/build/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/build/cjs/index.d.cts
CHANGED
|
@@ -2701,15 +2701,15 @@ interface OntologyIrBaseParameterType_dateList {
|
|
|
2701
2701
|
}
|
|
2702
2702
|
interface OntologyIrBaseParameterType_objectReference {
|
|
2703
2703
|
type: "objectReference";
|
|
2704
|
-
objectReference:
|
|
2704
|
+
objectReference: OntologyIrObjectReferenceType;
|
|
2705
2705
|
}
|
|
2706
2706
|
interface OntologyIrBaseParameterType_objectReferenceList {
|
|
2707
2707
|
type: "objectReferenceList";
|
|
2708
|
-
objectReferenceList:
|
|
2708
|
+
objectReferenceList: OntologyIrObjectReferenceListType;
|
|
2709
2709
|
}
|
|
2710
2710
|
interface OntologyIrBaseParameterType_objectSetRid {
|
|
2711
2711
|
type: "objectSetRid";
|
|
2712
|
-
objectSetRid:
|
|
2712
|
+
objectSetRid: OntologyIrObjectSetRidType;
|
|
2713
2713
|
}
|
|
2714
2714
|
interface OntologyIrBaseParameterType_interfaceReference {
|
|
2715
2715
|
type: "interfaceReference";
|
|
@@ -2857,15 +2857,15 @@ interface OntologyIrDataValue_null {
|
|
|
2857
2857
|
}
|
|
2858
2858
|
interface OntologyIrDataValue_objectLocator {
|
|
2859
2859
|
type: "objectLocator";
|
|
2860
|
-
objectLocator:
|
|
2860
|
+
objectLocator: OntologyIrObjectLocatorValue;
|
|
2861
2861
|
}
|
|
2862
2862
|
interface OntologyIrDataValue_objectLocatorList {
|
|
2863
2863
|
type: "objectLocatorList";
|
|
2864
|
-
objectLocatorList:
|
|
2864
|
+
objectLocatorList: OntologyIrObjectLocatorListValue;
|
|
2865
2865
|
}
|
|
2866
2866
|
interface OntologyIrDataValue_objectType {
|
|
2867
2867
|
type: "objectType";
|
|
2868
|
-
objectType:
|
|
2868
|
+
objectType: OntologyIrObjectTypeValue;
|
|
2869
2869
|
}
|
|
2870
2870
|
interface OntologyIrDataValue_attachment {
|
|
2871
2871
|
type: "attachment";
|
|
@@ -2914,6 +2914,46 @@ interface OntologyIrInterfaceReferenceListType {
|
|
|
2914
2914
|
interface OntologyIrInterfaceReferenceType {
|
|
2915
2915
|
interfaceTypeRid: InterfaceTypeApiName;
|
|
2916
2916
|
}
|
|
2917
|
+
interface OntologyIrObjectLocator {
|
|
2918
|
+
objectTypeId: ObjectTypeApiName;
|
|
2919
|
+
primaryKey: OntologyIrObjectPrimaryKey;
|
|
2920
|
+
}
|
|
2921
|
+
/**
|
|
2922
|
+
* A parameter value type that consists of a list of ObjectLocators.
|
|
2923
|
+
*/
|
|
2924
|
+
interface OntologyIrObjectLocatorListValue {
|
|
2925
|
+
objectLocatorList: Array<OntologyIrObjectLocator>;
|
|
2926
|
+
}
|
|
2927
|
+
/**
|
|
2928
|
+
* A parameter value type that is an ObjectLocator.
|
|
2929
|
+
*/
|
|
2930
|
+
type OntologyIrObjectLocatorValue = OntologyIrObjectLocator;
|
|
2931
|
+
type OntologyIrObjectPrimaryKey = Record<ObjectTypeFieldApiName$1, PrimaryKeyValue>;
|
|
2932
|
+
/**
|
|
2933
|
+
* ObjectReferenceListType specifies that this parameter must be a list of ObjectLocators.
|
|
2934
|
+
*/
|
|
2935
|
+
interface OntologyIrObjectReferenceListType {
|
|
2936
|
+
objectTypeId: ObjectTypeApiName;
|
|
2937
|
+
}
|
|
2938
|
+
/**
|
|
2939
|
+
* ObjectReferenceType specifies that this parameter must be an ObjectLocator. An additional optional field maybeCreateObjectOption is included for handling upsert action types by providing flexibility of object creation from a user-specified PK or auto-generated UID PK.
|
|
2940
|
+
*/
|
|
2941
|
+
interface OntologyIrObjectReferenceType {
|
|
2942
|
+
maybeCreateObjectOption?: CreateObjectOption | null | undefined;
|
|
2943
|
+
objectTypeId: ObjectTypeApiName;
|
|
2944
|
+
}
|
|
2945
|
+
/**
|
|
2946
|
+
* ObjectSetRidType specifies that this parameter must be an ObjectSetRid.
|
|
2947
|
+
*/
|
|
2948
|
+
interface OntologyIrObjectSetRidType {
|
|
2949
|
+
objectTypeId: ObjectTypeApiName;
|
|
2950
|
+
}
|
|
2951
|
+
/**
|
|
2952
|
+
* A parameter value that references a specific object type.
|
|
2953
|
+
*/
|
|
2954
|
+
interface OntologyIrObjectTypeValue {
|
|
2955
|
+
objectTypeId: ObjectTypeApiName;
|
|
2956
|
+
}
|
|
2917
2957
|
interface OntologyIrTimeDependentPropertyValue_seriesId {
|
|
2918
2958
|
type: "seriesId";
|
|
2919
2959
|
seriesId: SeriesIdPropertyValue;
|
|
@@ -4413,6 +4453,7 @@ interface LinkTypeEntityMetadata {
|
|
|
4413
4453
|
*/
|
|
4414
4454
|
interface MigrationConfiguration {
|
|
4415
4455
|
entityMigrationCategory: EntityMigrationCategory;
|
|
4456
|
+
importEditsHistory?: boolean | null | undefined;
|
|
4416
4457
|
minMigrationDuration: string;
|
|
4417
4458
|
transitionRetryLimit: number;
|
|
4418
4459
|
transitionWindows: TransitionWindows;
|
|
@@ -5067,6 +5108,313 @@ type ObjectSetFilter = ObjectSetFilter_or | ObjectSetFilter_and | ObjectSetFilte
|
|
|
5067
5108
|
interface ObjectTypeFilter {
|
|
5068
5109
|
objectTypeId: ObjectTypeId;
|
|
5069
5110
|
}
|
|
5111
|
+
/**
|
|
5112
|
+
* An ObjectSetFilter used to combine multiple ObjectSetFilters.
|
|
5113
|
+
* An object matches an AndFilter iff it matches all of the filters.
|
|
5114
|
+
*/
|
|
5115
|
+
interface OntologyIrAndFilter {
|
|
5116
|
+
filters: Array<OntologyIrObjectSetFilter>;
|
|
5117
|
+
}
|
|
5118
|
+
/**
|
|
5119
|
+
* An object matches an ExactMatchFilter iff the value of the provided property is exactly equal to one of the provided terms.
|
|
5120
|
+
* If the property is of string type, the index for that property must define a .raw multifield of type keyword.
|
|
5121
|
+
* If no terms are provided, this filter will match ALL objects.
|
|
5122
|
+
*/
|
|
5123
|
+
interface OntologyIrExactMatchFilter {
|
|
5124
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5125
|
+
terms: Array<any>;
|
|
5126
|
+
}
|
|
5127
|
+
/**
|
|
5128
|
+
* An object matches a GeoBoundingBoxFilter iff the value of the provided property is within the provided bounds.
|
|
5129
|
+
* Works on geohash properties.
|
|
5130
|
+
*/
|
|
5131
|
+
interface OntologyIrGeoBoundingBoxFilter {
|
|
5132
|
+
bottomRight: string;
|
|
5133
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5134
|
+
topLeft: string;
|
|
5135
|
+
}
|
|
5136
|
+
/**
|
|
5137
|
+
* An object matches a GeoDistanceFilter iff the value of the provided property is within the provided distance
|
|
5138
|
+
* of the provided location i.e. sits within a circle centered at the provided location.
|
|
5139
|
+
*/
|
|
5140
|
+
interface OntologyIrGeoDistanceFilter {
|
|
5141
|
+
distance: Distance;
|
|
5142
|
+
location: string;
|
|
5143
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5144
|
+
}
|
|
5145
|
+
/**
|
|
5146
|
+
* An object matches a GeoPolygonFilter iff the value of the provided property is within bounds of the provided polygon.
|
|
5147
|
+
*/
|
|
5148
|
+
interface OntologyIrGeoPolygonFilter {
|
|
5149
|
+
polygon: Array<string>;
|
|
5150
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5151
|
+
}
|
|
5152
|
+
/**
|
|
5153
|
+
* Filter properties of type geo_shape or geo_point.
|
|
5154
|
+
*/
|
|
5155
|
+
interface OntologyIrGeoShapeFilter {
|
|
5156
|
+
geoShapeQuery: OntologyIrGeoShapeQuery;
|
|
5157
|
+
spatialFilterMode: GeoShapeSpatialFilterMode;
|
|
5158
|
+
}
|
|
5159
|
+
interface OntologyIrGeoShapeQuery_geoBoundingBoxFilter {
|
|
5160
|
+
type: "geoBoundingBoxFilter";
|
|
5161
|
+
geoBoundingBoxFilter: OntologyIrGeoBoundingBoxFilter;
|
|
5162
|
+
}
|
|
5163
|
+
interface OntologyIrGeoShapeQuery_geoPolygonFilter {
|
|
5164
|
+
type: "geoPolygonFilter";
|
|
5165
|
+
geoPolygonFilter: OntologyIrGeoPolygonFilter;
|
|
5166
|
+
}
|
|
5167
|
+
/**
|
|
5168
|
+
* Union type for valid queries over geo shape properties.
|
|
5169
|
+
*/
|
|
5170
|
+
type OntologyIrGeoShapeQuery = OntologyIrGeoShapeQuery_geoBoundingBoxFilter | OntologyIrGeoShapeQuery_geoPolygonFilter;
|
|
5171
|
+
/**
|
|
5172
|
+
* An object matches a HasPropertyFilter iff it has a property with the provided PropertyId.
|
|
5173
|
+
*/
|
|
5174
|
+
interface OntologyIrHasPropertyFilter {
|
|
5175
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5176
|
+
}
|
|
5177
|
+
/**
|
|
5178
|
+
* An object matches a MultiMatchFilter iff any of the fields matches the query, or in the case where a
|
|
5179
|
+
* property whitelist is provided - iff any of the specifed fields matches the query.
|
|
5180
|
+
*/
|
|
5181
|
+
interface OntologyIrMultiMatchFilter {
|
|
5182
|
+
fuzzy: boolean;
|
|
5183
|
+
operator?: MultiMatchFilterOperator | null | undefined;
|
|
5184
|
+
propertySet: OntologyIrPropertySet;
|
|
5185
|
+
query: string;
|
|
5186
|
+
}
|
|
5187
|
+
/**
|
|
5188
|
+
* An object matches a NotFilter iff it does not match the provided filter.
|
|
5189
|
+
*/
|
|
5190
|
+
interface OntologyIrNotFilter {
|
|
5191
|
+
filter: OntologyIrObjectSetFilter;
|
|
5192
|
+
}
|
|
5193
|
+
interface OntologyIrObjectSetFilter_or {
|
|
5194
|
+
type: "or";
|
|
5195
|
+
or: OntologyIrOrFilter;
|
|
5196
|
+
}
|
|
5197
|
+
interface OntologyIrObjectSetFilter_and {
|
|
5198
|
+
type: "and";
|
|
5199
|
+
and: OntologyIrAndFilter;
|
|
5200
|
+
}
|
|
5201
|
+
interface OntologyIrObjectSetFilter_not {
|
|
5202
|
+
type: "not";
|
|
5203
|
+
not: OntologyIrNotFilter;
|
|
5204
|
+
}
|
|
5205
|
+
interface OntologyIrObjectSetFilter_range {
|
|
5206
|
+
type: "range";
|
|
5207
|
+
range: OntologyIrRangeFilter;
|
|
5208
|
+
}
|
|
5209
|
+
interface OntologyIrObjectSetFilter_wildcard {
|
|
5210
|
+
type: "wildcard";
|
|
5211
|
+
wildcard: OntologyIrWildcardFilter;
|
|
5212
|
+
}
|
|
5213
|
+
interface OntologyIrObjectSetFilter_terms {
|
|
5214
|
+
type: "terms";
|
|
5215
|
+
terms: OntologyIrTermsFilter;
|
|
5216
|
+
}
|
|
5217
|
+
interface OntologyIrObjectSetFilter_exactMatch {
|
|
5218
|
+
type: "exactMatch";
|
|
5219
|
+
exactMatch: OntologyIrExactMatchFilter;
|
|
5220
|
+
}
|
|
5221
|
+
interface OntologyIrObjectSetFilter_phrase {
|
|
5222
|
+
type: "phrase";
|
|
5223
|
+
phrase: OntologyIrPhraseFilter;
|
|
5224
|
+
}
|
|
5225
|
+
interface OntologyIrObjectSetFilter_prefixOnLastToken {
|
|
5226
|
+
type: "prefixOnLastToken";
|
|
5227
|
+
prefixOnLastToken: OntologyIrPrefixOnLastTokenFilter;
|
|
5228
|
+
}
|
|
5229
|
+
interface OntologyIrObjectSetFilter_geoBoundingBox {
|
|
5230
|
+
type: "geoBoundingBox";
|
|
5231
|
+
geoBoundingBox: OntologyIrGeoBoundingBoxFilter;
|
|
5232
|
+
}
|
|
5233
|
+
interface OntologyIrObjectSetFilter_geoDistance {
|
|
5234
|
+
type: "geoDistance";
|
|
5235
|
+
geoDistance: OntologyIrGeoDistanceFilter;
|
|
5236
|
+
}
|
|
5237
|
+
interface OntologyIrObjectSetFilter_geoPolygon {
|
|
5238
|
+
type: "geoPolygon";
|
|
5239
|
+
geoPolygon: OntologyIrGeoPolygonFilter;
|
|
5240
|
+
}
|
|
5241
|
+
interface OntologyIrObjectSetFilter_geoShape {
|
|
5242
|
+
type: "geoShape";
|
|
5243
|
+
geoShape: OntologyIrGeoShapeFilter;
|
|
5244
|
+
}
|
|
5245
|
+
interface OntologyIrObjectSetFilter_objectType {
|
|
5246
|
+
type: "objectType";
|
|
5247
|
+
objectType: OntologyIrObjectTypeFilter;
|
|
5248
|
+
}
|
|
5249
|
+
interface OntologyIrObjectSetFilter_hasProperty {
|
|
5250
|
+
type: "hasProperty";
|
|
5251
|
+
hasProperty: OntologyIrHasPropertyFilter;
|
|
5252
|
+
}
|
|
5253
|
+
interface OntologyIrObjectSetFilter_linkPresence {
|
|
5254
|
+
type: "linkPresence";
|
|
5255
|
+
linkPresence: LinkPresenceFilter;
|
|
5256
|
+
}
|
|
5257
|
+
interface OntologyIrObjectSetFilter_multiMatch {
|
|
5258
|
+
type: "multiMatch";
|
|
5259
|
+
multiMatch: OntologyIrMultiMatchFilter;
|
|
5260
|
+
}
|
|
5261
|
+
interface OntologyIrObjectSetFilter_relativeDateRange {
|
|
5262
|
+
type: "relativeDateRange";
|
|
5263
|
+
relativeDateRange: OntologyIrRelativeDateRangeFilter;
|
|
5264
|
+
}
|
|
5265
|
+
interface OntologyIrObjectSetFilter_relativeTimeRange {
|
|
5266
|
+
type: "relativeTimeRange";
|
|
5267
|
+
relativeTimeRange: OntologyIrRelativeTimeRangeFilter;
|
|
5268
|
+
}
|
|
5269
|
+
interface OntologyIrObjectSetFilter_parameterizedRange {
|
|
5270
|
+
type: "parameterizedRange";
|
|
5271
|
+
parameterizedRange: OntologyIrParameterizedRangeFilter;
|
|
5272
|
+
}
|
|
5273
|
+
interface OntologyIrObjectSetFilter_parameterizedWildcard {
|
|
5274
|
+
type: "parameterizedWildcard";
|
|
5275
|
+
parameterizedWildcard: OntologyIrParameterizedWildcardFilter;
|
|
5276
|
+
}
|
|
5277
|
+
interface OntologyIrObjectSetFilter_parameterizedTerms {
|
|
5278
|
+
type: "parameterizedTerms";
|
|
5279
|
+
parameterizedTerms: OntologyIrParameterizedTermsFilter;
|
|
5280
|
+
}
|
|
5281
|
+
interface OntologyIrObjectSetFilter_parameterizedExactMatch {
|
|
5282
|
+
type: "parameterizedExactMatch";
|
|
5283
|
+
parameterizedExactMatch: OntologyIrParameterizedExactMatchFilter;
|
|
5284
|
+
}
|
|
5285
|
+
interface OntologyIrObjectSetFilter_userContext {
|
|
5286
|
+
type: "userContext";
|
|
5287
|
+
userContext: UserContextFilter;
|
|
5288
|
+
}
|
|
5289
|
+
/**
|
|
5290
|
+
* Filter to be applied to an Object Set. Refer to documentation of a particular ObjectSetFilter for details.
|
|
5291
|
+
*/
|
|
5292
|
+
type OntologyIrObjectSetFilter = OntologyIrObjectSetFilter_or | OntologyIrObjectSetFilter_and | OntologyIrObjectSetFilter_not | OntologyIrObjectSetFilter_range | OntologyIrObjectSetFilter_wildcard | OntologyIrObjectSetFilter_terms | OntologyIrObjectSetFilter_exactMatch | OntologyIrObjectSetFilter_phrase | OntologyIrObjectSetFilter_prefixOnLastToken | OntologyIrObjectSetFilter_geoBoundingBox | OntologyIrObjectSetFilter_geoDistance | OntologyIrObjectSetFilter_geoPolygon | OntologyIrObjectSetFilter_geoShape | OntologyIrObjectSetFilter_objectType | OntologyIrObjectSetFilter_hasProperty | OntologyIrObjectSetFilter_linkPresence | OntologyIrObjectSetFilter_multiMatch | OntologyIrObjectSetFilter_relativeDateRange | OntologyIrObjectSetFilter_relativeTimeRange | OntologyIrObjectSetFilter_parameterizedRange | OntologyIrObjectSetFilter_parameterizedWildcard | OntologyIrObjectSetFilter_parameterizedTerms | OntologyIrObjectSetFilter_parameterizedExactMatch | OntologyIrObjectSetFilter_userContext;
|
|
5293
|
+
/**
|
|
5294
|
+
* An object matches an ObjectTypeFilter iff its ObjectTypeId matches the provided ObjectTypeId.
|
|
5295
|
+
*/
|
|
5296
|
+
interface OntologyIrObjectTypeFilter {
|
|
5297
|
+
objectTypeId: ObjectTypeApiName;
|
|
5298
|
+
}
|
|
5299
|
+
/**
|
|
5300
|
+
* An ObjectSetFilter used to combine multiple ObjectSetFilters.
|
|
5301
|
+
* An object matches an OrFilter iff it matches at least one of the filters.
|
|
5302
|
+
*/
|
|
5303
|
+
interface OntologyIrOrFilter {
|
|
5304
|
+
filters: Array<OntologyIrObjectSetFilter>;
|
|
5305
|
+
}
|
|
5306
|
+
/**
|
|
5307
|
+
* An object matches an ExactMatchFilter iff the value of the provided property is exactly equal to one of the provided terms.
|
|
5308
|
+
* If the property is of string type, the index for that property must define a .raw multifield of type keyword.
|
|
5309
|
+
* If no terms are provided, this filter will match ALL objects.
|
|
5310
|
+
*/
|
|
5311
|
+
interface OntologyIrParameterizedExactMatchFilter {
|
|
5312
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5313
|
+
terms: Array<FilterParameter>;
|
|
5314
|
+
}
|
|
5315
|
+
/**
|
|
5316
|
+
* An object matches a RangeFilter iff the value of the provided property is within provided bounds.
|
|
5317
|
+
*/
|
|
5318
|
+
interface OntologyIrParameterizedRangeFilter {
|
|
5319
|
+
gt?: FilterParameter | null | undefined;
|
|
5320
|
+
gte?: FilterParameter | null | undefined;
|
|
5321
|
+
lt?: FilterParameter | null | undefined;
|
|
5322
|
+
lte?: FilterParameter | null | undefined;
|
|
5323
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5324
|
+
}
|
|
5325
|
+
/**
|
|
5326
|
+
* An object matches a TermsFilter iff the analyzed value of the provided property matches any of the provided terms, or in case when
|
|
5327
|
+
* no property is provided - iff analyzed value of any of the properties matches any of the provided terms.
|
|
5328
|
+
* If no terms are provided, this filter will match ALL objects.
|
|
5329
|
+
*/
|
|
5330
|
+
interface OntologyIrParameterizedTermsFilter {
|
|
5331
|
+
propertyId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
5332
|
+
terms: Array<FilterParameter>;
|
|
5333
|
+
}
|
|
5334
|
+
/**
|
|
5335
|
+
* An object matches a WildcardFilter iff the value of the provided property matches the provided term, or in case when
|
|
5336
|
+
* no property is provided - iff any of the properties match the provided term.
|
|
5337
|
+
*/
|
|
5338
|
+
interface OntologyIrParameterizedWildcardFilter {
|
|
5339
|
+
propertyId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
5340
|
+
term: FilterParameter;
|
|
5341
|
+
}
|
|
5342
|
+
/**
|
|
5343
|
+
* An object matches a PhraseFilter iff the specified phrase matches it according to the PhraseMatchMode specified.
|
|
5344
|
+
*/
|
|
5345
|
+
interface OntologyIrPhraseFilter {
|
|
5346
|
+
matchMode?: PhraseMatchMode | null | undefined;
|
|
5347
|
+
phrase: string;
|
|
5348
|
+
propertySet?: OntologyIrPropertySet | null | undefined;
|
|
5349
|
+
}
|
|
5350
|
+
/**
|
|
5351
|
+
* An object matches a PrefixOnLastTokenFilter iff the specified property matches all tokens in the query string,
|
|
5352
|
+
* using exact match for every token except for the last, and prefix match for the last token. The tokens are
|
|
5353
|
+
* generated by analyzing the query string using the analyzer for the property being searched on. Ordering of
|
|
5354
|
+
* tokens in the query string is not checked when performing the matches. If the field is not analyzed, the
|
|
5355
|
+
* filter will be equivalent to a Phrase filter.
|
|
5356
|
+
* Only works on string properties. OSS will throw an exception if the property type is not string.
|
|
5357
|
+
*/
|
|
5358
|
+
interface OntologyIrPrefixOnLastTokenFilter {
|
|
5359
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5360
|
+
query: string;
|
|
5361
|
+
}
|
|
5362
|
+
interface OntologyIrPropertySet_propertyWhitelist {
|
|
5363
|
+
type: "propertyWhitelist";
|
|
5364
|
+
propertyWhitelist: OntologyIrPropertyWhitelistPropertySet;
|
|
5365
|
+
}
|
|
5366
|
+
interface OntologyIrPropertySet_allProperties {
|
|
5367
|
+
type: "allProperties";
|
|
5368
|
+
allProperties: AllPropertiesPropertySet;
|
|
5369
|
+
}
|
|
5370
|
+
type OntologyIrPropertySet = OntologyIrPropertySet_propertyWhitelist | OntologyIrPropertySet_allProperties;
|
|
5371
|
+
interface OntologyIrPropertyWhitelistPropertySet {
|
|
5372
|
+
properties: Array<ObjectTypeFieldApiName$1>;
|
|
5373
|
+
}
|
|
5374
|
+
/**
|
|
5375
|
+
* An object matches a RangeFilter iff the value of the provided property is within provided bounds.
|
|
5376
|
+
*/
|
|
5377
|
+
interface OntologyIrRangeFilter {
|
|
5378
|
+
gt?: any | null | undefined;
|
|
5379
|
+
gte?: any | null | undefined;
|
|
5380
|
+
lt?: any | null | undefined;
|
|
5381
|
+
lte?: any | null | undefined;
|
|
5382
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5383
|
+
}
|
|
5384
|
+
/**
|
|
5385
|
+
* An object matches a RelativeDateRangeFilter iff the value of the provided date property is within the provided time range.
|
|
5386
|
+
*/
|
|
5387
|
+
interface OntologyIrRelativeDateRangeFilter {
|
|
5388
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5389
|
+
sinceRelativePointInTime?: RelativePointInTime | null | undefined;
|
|
5390
|
+
timeZoneId: TimeZoneId;
|
|
5391
|
+
untilRelativePointInTime?: RelativePointInTime | null | undefined;
|
|
5392
|
+
}
|
|
5393
|
+
/**
|
|
5394
|
+
* An object matches a RelativeTimeRangeFilter iff the value of the provided timestamp property is within the provided time range.
|
|
5395
|
+
*/
|
|
5396
|
+
interface OntologyIrRelativeTimeRangeFilter {
|
|
5397
|
+
propertyId: ObjectTypeFieldApiName$1;
|
|
5398
|
+
sinceRelativeMillis?: number | null | undefined;
|
|
5399
|
+
untilRelativeMillis?: number | null | undefined;
|
|
5400
|
+
}
|
|
5401
|
+
/**
|
|
5402
|
+
* An object matches a TermsFilter iff the analyzed value of the provided property matches any of the provided terms, or in case when
|
|
5403
|
+
* no property is provided - iff analyzed value of any of the properties matches any of the provided terms.
|
|
5404
|
+
* If no terms are provided, this filter will match ALL objects.
|
|
5405
|
+
*/
|
|
5406
|
+
interface OntologyIrTermsFilter {
|
|
5407
|
+
propertyId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
5408
|
+
terms: Array<any>;
|
|
5409
|
+
}
|
|
5410
|
+
/**
|
|
5411
|
+
* An object matches a WildcardFilter iff the value of the provided property matches the provided term, or in case when
|
|
5412
|
+
* no property is provided - iff any of the properties match the provided term.
|
|
5413
|
+
*/
|
|
5414
|
+
interface OntologyIrWildcardFilter {
|
|
5415
|
+
propertyId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
5416
|
+
term: string;
|
|
5417
|
+
}
|
|
5070
5418
|
/**
|
|
5071
5419
|
* An ObjectSetFilter used to combine multiple ObjectSetFilters.
|
|
5072
5420
|
* An object matches an OrFilter iff it matches at least one of the filters.
|
|
@@ -9920,6 +10268,7 @@ interface ObjectTypesNotFoundError {
|
|
|
9920
10268
|
}
|
|
9921
10269
|
interface ObjectTypesSummary {
|
|
9922
10270
|
maximumNumberOfObjectTypes: number;
|
|
10271
|
+
maxVectorDimensionality: number;
|
|
9923
10272
|
visibleObjectTypes: number;
|
|
9924
10273
|
}
|
|
9925
10274
|
interface ObjectTypeStatus_experimental {
|
|
@@ -10160,11 +10509,11 @@ interface OntologyIrActionLogMetadata {
|
|
|
10160
10509
|
* their properties should be mapped to properties of their Action Log Object Type.
|
|
10161
10510
|
*/
|
|
10162
10511
|
interface OntologyIrActionLogRule {
|
|
10163
|
-
actionLogObjectTypeId:
|
|
10164
|
-
editedObjectRelations: Record<
|
|
10512
|
+
actionLogObjectTypeId: ObjectTypeApiName;
|
|
10513
|
+
editedObjectRelations: Record<ObjectTypeApiName, LinkTypeId>;
|
|
10165
10514
|
enabled: boolean;
|
|
10166
|
-
propertyValues: Record<
|
|
10167
|
-
reasonCodes: Array<
|
|
10515
|
+
propertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrActionLogValue>;
|
|
10516
|
+
reasonCodes: Array<ObjectTypeFieldApiName$1>;
|
|
10168
10517
|
}
|
|
10169
10518
|
interface OntologyIrActionLogValue_parameterValue {
|
|
10170
10519
|
type: "parameterValue";
|
|
@@ -10172,7 +10521,7 @@ interface OntologyIrActionLogValue_parameterValue {
|
|
|
10172
10521
|
}
|
|
10173
10522
|
interface OntologyIrActionLogValue_objectParameterPropertyValue {
|
|
10174
10523
|
type: "objectParameterPropertyValue";
|
|
10175
|
-
objectParameterPropertyValue:
|
|
10524
|
+
objectParameterPropertyValue: OntologyIrObjectParameterPropertyValue;
|
|
10176
10525
|
}
|
|
10177
10526
|
interface OntologyIrActionLogValue_interfaceParameterPropertyValue {
|
|
10178
10527
|
type: "interfaceParameterPropertyValue";
|
|
@@ -10180,7 +10529,7 @@ interface OntologyIrActionLogValue_interfaceParameterPropertyValue {
|
|
|
10180
10529
|
}
|
|
10181
10530
|
interface OntologyIrActionLogValue_editedObjects {
|
|
10182
10531
|
type: "editedObjects";
|
|
10183
|
-
editedObjects:
|
|
10532
|
+
editedObjects: ObjectTypeApiName;
|
|
10184
10533
|
}
|
|
10185
10534
|
interface OntologyIrActionLogValue_allEditedObjects {
|
|
10186
10535
|
type: "allEditedObjects";
|
|
@@ -10240,7 +10589,7 @@ interface OntologyIrActionLogValue_scenarioRid {
|
|
|
10240
10589
|
}
|
|
10241
10590
|
interface OntologyIrActionLogValue_summary {
|
|
10242
10591
|
type: "summary";
|
|
10243
|
-
summary: Array<
|
|
10592
|
+
summary: Array<OntologyIrActionTypeRichTextComponent>;
|
|
10244
10593
|
}
|
|
10245
10594
|
type OntologyIrActionLogValue = OntologyIrActionLogValue_parameterValue | OntologyIrActionLogValue_objectParameterPropertyValue | OntologyIrActionLogValue_interfaceParameterPropertyValue | OntologyIrActionLogValue_editedObjects | OntologyIrActionLogValue_allEditedObjects | OntologyIrActionLogValue_actionTypeRid | OntologyIrActionLogValue_actionRid | OntologyIrActionLogValue_actionTypeVersion | OntologyIrActionLogValue_actionTimestamp | OntologyIrActionLogValue_actionUser | OntologyIrActionLogValue_isReverted | OntologyIrActionLogValue_revertUser | OntologyIrActionLogValue_revertTimestamp | OntologyIrActionLogValue_synchronousWebhookInstanceId | OntologyIrActionLogValue_asynchronousWebhookInstanceIds | OntologyIrActionLogValue_notifiedUsers | OntologyIrActionLogValue_notificationIds | OntologyIrActionLogValue_scenarioRid | OntologyIrActionLogValue_summary;
|
|
10246
10595
|
/**
|
|
@@ -10287,16 +10636,29 @@ type OntologyIrActionNotificationRecipients = OntologyIrActionNotificationRecipi
|
|
|
10287
10636
|
*/
|
|
10288
10637
|
interface OntologyIrActionsObjectSet {
|
|
10289
10638
|
conditionValues: Record<ConditionValueId, OntologyIrConditionValue>;
|
|
10290
|
-
objectSet:
|
|
10639
|
+
objectSet: OntologyIrDynamicObjectSet;
|
|
10291
10640
|
}
|
|
10292
10641
|
interface OntologyIrActionType {
|
|
10293
10642
|
actionTypeLogic: OntologyIrActionTypeLogic;
|
|
10294
10643
|
metadata: OntologyIrActionTypeMetadata;
|
|
10295
10644
|
}
|
|
10645
|
+
/**
|
|
10646
|
+
* DisplayMetadata shape used in responses
|
|
10647
|
+
*/
|
|
10648
|
+
interface OntologyIrActionTypeDisplayMetadata {
|
|
10649
|
+
configuration: ActionTypeDisplayMetadataConfiguration;
|
|
10650
|
+
description: string;
|
|
10651
|
+
displayName: string;
|
|
10652
|
+
icon?: Icon | null | undefined;
|
|
10653
|
+
submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
|
|
10654
|
+
successMessage: Array<OntologyIrActionTypeRichTextComponent>;
|
|
10655
|
+
typeClasses: Array<TypeClass>;
|
|
10656
|
+
undoButtonConfiguration?: boolean | null | undefined;
|
|
10657
|
+
}
|
|
10296
10658
|
interface OntologyIrActionTypeEntities {
|
|
10297
10659
|
affectedInterfaceTypes: Array<InterfaceTypeApiName>;
|
|
10298
10660
|
affectedLinkTypes: Array<LinkTypeId>;
|
|
10299
|
-
affectedObjectTypes: Array<
|
|
10661
|
+
affectedObjectTypes: Array<ObjectTypeApiName>;
|
|
10300
10662
|
typeGroups: Array<TypeGroupRid>;
|
|
10301
10663
|
}
|
|
10302
10664
|
interface OntologyIrActionTypeLevelValidation {
|
|
@@ -10311,7 +10673,7 @@ interface OntologyIrActionTypeLogic {
|
|
|
10311
10673
|
*/
|
|
10312
10674
|
interface OntologyIrActionTypeMetadata {
|
|
10313
10675
|
apiName: ActionTypeApiName;
|
|
10314
|
-
displayMetadata:
|
|
10676
|
+
displayMetadata: OntologyIrActionTypeDisplayMetadata;
|
|
10315
10677
|
entities?: OntologyIrActionTypeEntities | null | undefined;
|
|
10316
10678
|
formContentOrdering: Array<OntologyIrFormContent>;
|
|
10317
10679
|
parameterOrdering: Array<ParameterId>;
|
|
@@ -10319,6 +10681,28 @@ interface OntologyIrActionTypeMetadata {
|
|
|
10319
10681
|
sections: Record<SectionId, OntologyIrSection>;
|
|
10320
10682
|
status: OntologyIrActionTypeStatus;
|
|
10321
10683
|
}
|
|
10684
|
+
interface OntologyIrActionTypeRichTextComponent_message {
|
|
10685
|
+
type: "message";
|
|
10686
|
+
message: ActionTypeRichTextMessage;
|
|
10687
|
+
}
|
|
10688
|
+
interface OntologyIrActionTypeRichTextComponent_parameter {
|
|
10689
|
+
type: "parameter";
|
|
10690
|
+
parameter: ActionTypeRichTextParameterReference;
|
|
10691
|
+
}
|
|
10692
|
+
interface OntologyIrActionTypeRichTextComponent_parameterProperty {
|
|
10693
|
+
type: "parameterProperty";
|
|
10694
|
+
parameterProperty: OntologyIrActionTypeRichTextParameterPropertyReference;
|
|
10695
|
+
}
|
|
10696
|
+
/**
|
|
10697
|
+
* Generic type that can used to define a string that should have Action execution details injected into it when
|
|
10698
|
+
* it is rendered.
|
|
10699
|
+
*/
|
|
10700
|
+
type OntologyIrActionTypeRichTextComponent = OntologyIrActionTypeRichTextComponent_message | OntologyIrActionTypeRichTextComponent_parameter | OntologyIrActionTypeRichTextComponent_parameterProperty;
|
|
10701
|
+
/**
|
|
10702
|
+
* Indicates that this value in the rendered string should be replaced with the specified Object Parameter's
|
|
10703
|
+
* property value.
|
|
10704
|
+
*/
|
|
10705
|
+
type OntologyIrActionTypeRichTextParameterPropertyReference = OntologyIrObjectParameterPropertyValue;
|
|
10322
10706
|
interface OntologyIrActionTypeStatus_experimental {
|
|
10323
10707
|
type: "experimental";
|
|
10324
10708
|
experimental: ExperimentalActionTypeStatus;
|
|
@@ -10358,23 +10742,23 @@ interface OntologyIrAddInterfaceLinkRule {
|
|
|
10358
10742
|
}
|
|
10359
10743
|
interface OntologyIrAddInterfaceRule {
|
|
10360
10744
|
interfaceApiName: InterfaceTypeApiName;
|
|
10361
|
-
|
|
10745
|
+
objectTypeParameter: ParameterId;
|
|
10362
10746
|
sharedPropertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
10363
10747
|
}
|
|
10364
10748
|
interface OntologyIrAddObjectRule {
|
|
10365
|
-
objectTypeId:
|
|
10366
|
-
propertyValues: Record<
|
|
10367
|
-
structFieldValues: Record<
|
|
10749
|
+
objectTypeId: ObjectTypeApiName;
|
|
10750
|
+
propertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
10751
|
+
structFieldValues: Record<ObjectTypeFieldApiName$1, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10368
10752
|
}
|
|
10369
10753
|
interface OntologyIrAddOrModifyObjectRule {
|
|
10370
|
-
objectTypeId:
|
|
10371
|
-
propertyValues: Record<
|
|
10372
|
-
structFieldValues: Record<
|
|
10754
|
+
objectTypeId: ObjectTypeApiName;
|
|
10755
|
+
propertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
10756
|
+
structFieldValues: Record<ObjectTypeFieldApiName$1, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10373
10757
|
}
|
|
10374
10758
|
interface OntologyIrAddOrModifyObjectRuleV2 {
|
|
10375
10759
|
objectToModify: ParameterId;
|
|
10376
|
-
propertyValues: Record<
|
|
10377
|
-
structFieldValues: Record<
|
|
10760
|
+
propertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
10761
|
+
structFieldValues: Record<ObjectTypeFieldApiName$1, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10378
10762
|
}
|
|
10379
10763
|
/**
|
|
10380
10764
|
* The mapping which designated what struct fields will get which values in the all edited properties log.
|
|
@@ -10528,6 +10912,38 @@ interface OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput {
|
|
|
10528
10912
|
* post writeback. If any fail, this is not surfaced during the apply Action call.
|
|
10529
10913
|
*/
|
|
10530
10914
|
type OntologyIrAsynchronousPostWritebackWebhook = OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput | OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput;
|
|
10915
|
+
interface OntologyIrBaseFormatter_knownFormatter {
|
|
10916
|
+
type: "knownFormatter";
|
|
10917
|
+
knownFormatter: KnownFormatter;
|
|
10918
|
+
}
|
|
10919
|
+
interface OntologyIrBaseFormatter_number {
|
|
10920
|
+
type: "number";
|
|
10921
|
+
number: OntologyIrNumberFormatter;
|
|
10922
|
+
}
|
|
10923
|
+
interface OntologyIrBaseFormatter_timestamp {
|
|
10924
|
+
type: "timestamp";
|
|
10925
|
+
timestamp: OntologyIrTimestampFormatter;
|
|
10926
|
+
}
|
|
10927
|
+
interface OntologyIrBaseFormatter_date {
|
|
10928
|
+
type: "date";
|
|
10929
|
+
date: DateFormatter;
|
|
10930
|
+
}
|
|
10931
|
+
interface OntologyIrBaseFormatter_string {
|
|
10932
|
+
type: "string";
|
|
10933
|
+
string: StringFormatter;
|
|
10934
|
+
}
|
|
10935
|
+
interface OntologyIrBaseFormatter_timeDependent {
|
|
10936
|
+
type: "timeDependent";
|
|
10937
|
+
timeDependent: OntologyIrTimeDependentFormatter;
|
|
10938
|
+
}
|
|
10939
|
+
interface OntologyIrBaseFormatter_boolean {
|
|
10940
|
+
type: "boolean";
|
|
10941
|
+
boolean: BooleanFormatter;
|
|
10942
|
+
}
|
|
10943
|
+
/**
|
|
10944
|
+
* The basic formatting behavior.
|
|
10945
|
+
*/
|
|
10946
|
+
type OntologyIrBaseFormatter = OntologyIrBaseFormatter_knownFormatter | OntologyIrBaseFormatter_number | OntologyIrBaseFormatter_timestamp | OntologyIrBaseFormatter_date | OntologyIrBaseFormatter_string | OntologyIrBaseFormatter_timeDependent | OntologyIrBaseFormatter_boolean;
|
|
10531
10947
|
/**
|
|
10532
10948
|
* A basic action notification's email body. Uses Handlebars templating.
|
|
10533
10949
|
*/
|
|
@@ -10614,7 +11030,7 @@ interface OntologyIrConditionValue_staticValue {
|
|
|
10614
11030
|
}
|
|
10615
11031
|
interface OntologyIrConditionValue_objectParameterPropertyValue {
|
|
10616
11032
|
type: "objectParameterPropertyValue";
|
|
10617
|
-
objectParameterPropertyValue:
|
|
11033
|
+
objectParameterPropertyValue: OntologyIrObjectParameterPropertyValue;
|
|
10618
11034
|
}
|
|
10619
11035
|
interface OntologyIrConditionValue_interfaceParameterPropertyValue {
|
|
10620
11036
|
type: "interfaceParameterPropertyValue";
|
|
@@ -10642,6 +11058,20 @@ interface OntologyIrDateRangeValue_now {
|
|
|
10642
11058
|
now: NowValue;
|
|
10643
11059
|
}
|
|
10644
11060
|
type OntologyIrDateRangeValue = OntologyIrDateRangeValue_fixed | OntologyIrDateRangeValue_relative | OntologyIrDateRangeValue_now;
|
|
11061
|
+
interface OntologyIrDatetimeTimezone_static {
|
|
11062
|
+
type: "static";
|
|
11063
|
+
static: OntologyIrDatetimeTimezoneDefinition;
|
|
11064
|
+
}
|
|
11065
|
+
interface OntologyIrDatetimeTimezone_user {
|
|
11066
|
+
type: "user";
|
|
11067
|
+
user: UserTimezone;
|
|
11068
|
+
}
|
|
11069
|
+
type OntologyIrDatetimeTimezone = OntologyIrDatetimeTimezone_static | OntologyIrDatetimeTimezone_user;
|
|
11070
|
+
interface OntologyIrDatetimeTimezoneDefinition_zoneId {
|
|
11071
|
+
type: "zoneId";
|
|
11072
|
+
zoneId: OntologyIrPropertyTypeReferenceOrStringConstant;
|
|
11073
|
+
}
|
|
11074
|
+
type OntologyIrDatetimeTimezoneDefinition = OntologyIrDatetimeTimezoneDefinition_zoneId;
|
|
10645
11075
|
interface OntologyIrDeleteInterfaceLinkRule {
|
|
10646
11076
|
interfaceLinkTypeRid: InterfaceLinkTypeApiName;
|
|
10647
11077
|
interfaceTypeRid: InterfaceTypeApiName;
|
|
@@ -10689,6 +11119,43 @@ interface OntologyIrDeprecatedPropertyTypeStatus {
|
|
|
10689
11119
|
message: string;
|
|
10690
11120
|
replacedBy?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
10691
11121
|
}
|
|
11122
|
+
/**
|
|
11123
|
+
* An ObjectSet gotten as a result of performing a sequence of Transforms on a base ObjectSet.
|
|
11124
|
+
* Each transforms is either a PropertyFilter or a SearchAround.
|
|
11125
|
+
* There is a limit of 3 SearchArounds.
|
|
11126
|
+
*/
|
|
11127
|
+
interface OntologyIrDynamicObjectSet {
|
|
11128
|
+
startingObjectSet: OntologyIrDynamicObjectSetInput;
|
|
11129
|
+
transforms: Array<OntologyIrObjectSetTransform>;
|
|
11130
|
+
}
|
|
11131
|
+
interface OntologyIrDynamicObjectSetInput_base {
|
|
11132
|
+
type: "base";
|
|
11133
|
+
base: OntologyIrDynamicObjectSetInputBase;
|
|
11134
|
+
}
|
|
11135
|
+
interface OntologyIrDynamicObjectSetInput_parameter {
|
|
11136
|
+
type: "parameter";
|
|
11137
|
+
parameter: DynamicObjectSetInputParameter;
|
|
11138
|
+
}
|
|
11139
|
+
interface OntologyIrDynamicObjectSetInput_unioned {
|
|
11140
|
+
type: "unioned";
|
|
11141
|
+
unioned: OntologyIrDynamicObjectSetInputUnioned;
|
|
11142
|
+
}
|
|
11143
|
+
/**
|
|
11144
|
+
* A wrapper used to reference an ObjectSet
|
|
11145
|
+
*/
|
|
11146
|
+
type OntologyIrDynamicObjectSetInput = OntologyIrDynamicObjectSetInput_base | OntologyIrDynamicObjectSetInput_parameter | OntologyIrDynamicObjectSetInput_unioned;
|
|
11147
|
+
/**
|
|
11148
|
+
* Depicts an ObjectSet with all objects of this ObjectType
|
|
11149
|
+
*/
|
|
11150
|
+
interface OntologyIrDynamicObjectSetInputBase {
|
|
11151
|
+
objectTypeId: ObjectTypeApiName;
|
|
11152
|
+
}
|
|
11153
|
+
/**
|
|
11154
|
+
* Depicts an ObjectSet which is a union of all ObjectSets provided.
|
|
11155
|
+
*/
|
|
11156
|
+
interface OntologyIrDynamicObjectSetInputUnioned {
|
|
11157
|
+
dynamicObjectSets: Array<OntologyIrDynamicObjectSet>;
|
|
11158
|
+
}
|
|
10692
11159
|
interface OntologyIrEmailBody_basic {
|
|
10693
11160
|
type: "basic";
|
|
10694
11161
|
basic: OntologyIrBasicEmailBody;
|
|
@@ -10706,6 +11173,14 @@ interface OntologyIrEventMetadata {
|
|
|
10706
11173
|
eventIdPropertyTypeRid: ObjectTypeFieldApiName$1;
|
|
10707
11174
|
startTimePropertyTypeRid: ObjectTypeFieldApiName$1;
|
|
10708
11175
|
}
|
|
11176
|
+
/**
|
|
11177
|
+
* Note this is experimental, should not be used without consulting the product team and format can
|
|
11178
|
+
* change/break without notice.
|
|
11179
|
+
*/
|
|
11180
|
+
interface OntologyIrExperimentalTimeDependentPropertyTypeV1 {
|
|
11181
|
+
sensorLinkTypeId?: LinkTypeId | null | undefined;
|
|
11182
|
+
seriesValueMetadata: OntologyIrSeriesValueMetadata;
|
|
11183
|
+
}
|
|
10709
11184
|
interface OntologyIrFormContent_parameterId {
|
|
10710
11185
|
type: "parameterId";
|
|
10711
11186
|
parameterId: ParameterId;
|
|
@@ -10824,7 +11299,7 @@ interface OntologyIrLinkDefinition_oneToMany {
|
|
|
10824
11299
|
type OntologyIrLinkDefinition = OntologyIrLinkDefinition_manyToMany | OntologyIrLinkDefinition_oneToMany;
|
|
10825
11300
|
interface OntologyIrLinkedEntityTypeId_objectType {
|
|
10826
11301
|
type: "objectType";
|
|
10827
|
-
objectType:
|
|
11302
|
+
objectType: ObjectTypeApiName;
|
|
10828
11303
|
}
|
|
10829
11304
|
interface OntologyIrLinkedEntityTypeId_interfaceType {
|
|
10830
11305
|
type: "interfaceType";
|
|
@@ -10863,6 +11338,22 @@ interface OntologyIrLinkTypeStatus_example {
|
|
|
10863
11338
|
* The status to indicate whether the LinkType is either Experimental, Active, Deprecated, or Example.
|
|
10864
11339
|
*/
|
|
10865
11340
|
type OntologyIrLinkTypeStatus = OntologyIrLinkTypeStatus_experimental | OntologyIrLinkTypeStatus_active | OntologyIrLinkTypeStatus_deprecated | OntologyIrLinkTypeStatus_example;
|
|
11341
|
+
interface OntologyIrLogicRule_addObjectRule {
|
|
11342
|
+
type: "addObjectRule";
|
|
11343
|
+
addObjectRule: OntologyIrAddObjectRule;
|
|
11344
|
+
}
|
|
11345
|
+
interface OntologyIrLogicRule_addOrModifyObjectRuleV2 {
|
|
11346
|
+
type: "addOrModifyObjectRuleV2";
|
|
11347
|
+
addOrModifyObjectRuleV2: OntologyIrAddOrModifyObjectRuleV2;
|
|
11348
|
+
}
|
|
11349
|
+
interface OntologyIrLogicRule_modifyObjectRule {
|
|
11350
|
+
type: "modifyObjectRule";
|
|
11351
|
+
modifyObjectRule: OntologyIrModifyObjectRule;
|
|
11352
|
+
}
|
|
11353
|
+
interface OntologyIrLogicRule_deleteObjectRule {
|
|
11354
|
+
type: "deleteObjectRule";
|
|
11355
|
+
deleteObjectRule: DeleteObjectRule;
|
|
11356
|
+
}
|
|
10866
11357
|
interface OntologyIrLogicRule_addInterfaceRule {
|
|
10867
11358
|
type: "addInterfaceRule";
|
|
10868
11359
|
addInterfaceRule: OntologyIrAddInterfaceRule;
|
|
@@ -10871,7 +11362,7 @@ interface OntologyIrLogicRule_modifyInterfaceRule {
|
|
|
10871
11362
|
type: "modifyInterfaceRule";
|
|
10872
11363
|
modifyInterfaceRule: OntologyIrModifyInterfaceRule;
|
|
10873
11364
|
}
|
|
10874
|
-
type OntologyIrLogicRule = OntologyIrLogicRule_addInterfaceRule | OntologyIrLogicRule_modifyInterfaceRule;
|
|
11365
|
+
type OntologyIrLogicRule = OntologyIrLogicRule_addObjectRule | OntologyIrLogicRule_addOrModifyObjectRuleV2 | OntologyIrLogicRule_modifyObjectRule | OntologyIrLogicRule_deleteObjectRule | OntologyIrLogicRule_addInterfaceRule | OntologyIrLogicRule_modifyInterfaceRule;
|
|
10875
11366
|
interface OntologyIrLogicRuleValue_parameterId {
|
|
10876
11367
|
type: "parameterId";
|
|
10877
11368
|
parameterId: ParameterId;
|
|
@@ -10882,7 +11373,7 @@ interface OntologyIrLogicRuleValue_staticValue {
|
|
|
10882
11373
|
}
|
|
10883
11374
|
interface OntologyIrLogicRuleValue_objectParameterPropertyValue {
|
|
10884
11375
|
type: "objectParameterPropertyValue";
|
|
10885
|
-
objectParameterPropertyValue:
|
|
11376
|
+
objectParameterPropertyValue: OntologyIrObjectParameterPropertyValue;
|
|
10886
11377
|
}
|
|
10887
11378
|
interface OntologyIrLogicRuleValue_interfaceParameterPropertyValue {
|
|
10888
11379
|
type: "interfaceParameterPropertyValue";
|
|
@@ -10973,13 +11464,13 @@ interface OntologyIrMediaSourceRid_datasetRid {
|
|
|
10973
11464
|
*/
|
|
10974
11465
|
type OntologyIrMediaSourceRid = OntologyIrMediaSourceRid_mediaSetRid | OntologyIrMediaSourceRid_datasetRid;
|
|
10975
11466
|
interface OntologyIrModifyInterfaceRule {
|
|
10976
|
-
|
|
11467
|
+
interfaceObjectToModifyParameter: ParameterId;
|
|
10977
11468
|
sharedPropertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
10978
11469
|
}
|
|
10979
11470
|
interface OntologyIrModifyObjectRule {
|
|
10980
11471
|
objectToModify: ParameterId;
|
|
10981
|
-
propertyValues: Record<
|
|
10982
|
-
structFieldValues: Record<
|
|
11472
|
+
propertyValues: Record<ObjectTypeFieldApiName$1, OntologyIrLogicRuleValue>;
|
|
11473
|
+
structFieldValues: Record<ObjectTypeFieldApiName$1, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10983
11474
|
}
|
|
10984
11475
|
interface OntologyIrMultipassUserFilter_groupFilter {
|
|
10985
11476
|
type: "groupFilter";
|
|
@@ -10994,7 +11485,20 @@ interface OntologyIrMultipassUserInGroupFilter {
|
|
|
10994
11485
|
*/
|
|
10995
11486
|
interface OntologyIrNewObjectUrlTarget {
|
|
10996
11487
|
keys: Record<PropertyId, OntologyIrLogicRuleValue>;
|
|
10997
|
-
objectTypeId:
|
|
11488
|
+
objectTypeId: ObjectTypeApiName;
|
|
11489
|
+
}
|
|
11490
|
+
/**
|
|
11491
|
+
* Configuration for non-numeric series.
|
|
11492
|
+
*/
|
|
11493
|
+
interface OntologyIrNonNumericSeriesValueMetadata {
|
|
11494
|
+
defaultInternalInterpolation: OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation;
|
|
11495
|
+
}
|
|
11496
|
+
/**
|
|
11497
|
+
* The unit to accompany the non-numeric value of a Time Dependent property. Can be provided by a property or a
|
|
11498
|
+
* user-inputted constant.
|
|
11499
|
+
*/
|
|
11500
|
+
interface OntologyIrNonNumericSeriesValueUnit {
|
|
11501
|
+
customUnit: OntologyIrPropertyTypeReferenceOrStringConstant;
|
|
10998
11502
|
}
|
|
10999
11503
|
interface OntologyIrNotCondition {
|
|
11000
11504
|
condition: OntologyIrCondition;
|
|
@@ -11020,12 +11524,130 @@ interface OntologyIrNotificationTemplateInputValue_actionTriggererValue {
|
|
|
11020
11524
|
* All the types that can be used as a value for a Notification template's inputs.
|
|
11021
11525
|
*/
|
|
11022
11526
|
type OntologyIrNotificationTemplateInputValue = OntologyIrNotificationTemplateInputValue_logicRuleValue | OntologyIrNotificationTemplateInputValue_recipientValue | OntologyIrNotificationTemplateInputValue_actionTriggererValue;
|
|
11527
|
+
/**
|
|
11528
|
+
* Note that non-visual features e.g. sorting & histograms, are not guaranteed to be currency-aware. They can
|
|
11529
|
+
* group the same number together even if they have different currencies.
|
|
11530
|
+
*/
|
|
11531
|
+
interface OntologyIrNumberFormatCurrency {
|
|
11532
|
+
base: NumberFormatBase;
|
|
11533
|
+
currencyCode: OntologyIrPropertyTypeReferenceOrStringConstant;
|
|
11534
|
+
style: NumberFormatCurrencyStyle;
|
|
11535
|
+
}
|
|
11536
|
+
/**
|
|
11537
|
+
* For units that aren't accepted by NumberFormatUnit.
|
|
11538
|
+
* No auto-conversion will ever be attempted.
|
|
11539
|
+
* This is mostly a label providing instruction on which values can share an axis.
|
|
11540
|
+
*/
|
|
11541
|
+
interface OntologyIrNumberFormatCustomUnit {
|
|
11542
|
+
base: NumberFormatBase;
|
|
11543
|
+
unit: OntologyIrPropertyTypeReferenceOrStringConstant;
|
|
11544
|
+
}
|
|
11545
|
+
/**
|
|
11546
|
+
* Consider using currency/unit instead of this formatter.
|
|
11547
|
+
*
|
|
11548
|
+
* Attach an arbitrary constant pre/post-fix.
|
|
11549
|
+
*/
|
|
11550
|
+
interface OntologyIrNumberFormatPrePostFix {
|
|
11551
|
+
base: NumberFormatBase;
|
|
11552
|
+
prePostFix: OntologyIrPrePostFix;
|
|
11553
|
+
}
|
|
11554
|
+
interface OntologyIrNumberFormatter_base {
|
|
11555
|
+
type: "base";
|
|
11556
|
+
base: NumberFormatBase;
|
|
11557
|
+
}
|
|
11558
|
+
interface OntologyIrNumberFormatter_percentage {
|
|
11559
|
+
type: "percentage";
|
|
11560
|
+
percentage: NumberFormatPercentage;
|
|
11561
|
+
}
|
|
11562
|
+
interface OntologyIrNumberFormatter_perMille {
|
|
11563
|
+
type: "perMille";
|
|
11564
|
+
perMille: NumberFormatPerMille;
|
|
11565
|
+
}
|
|
11566
|
+
interface OntologyIrNumberFormatter_ordinal {
|
|
11567
|
+
type: "ordinal";
|
|
11568
|
+
ordinal: NumberFormatOrdinal;
|
|
11569
|
+
}
|
|
11570
|
+
interface OntologyIrNumberFormatter_currency {
|
|
11571
|
+
type: "currency";
|
|
11572
|
+
currency: OntologyIrNumberFormatCurrency;
|
|
11573
|
+
}
|
|
11574
|
+
interface OntologyIrNumberFormatter_unit {
|
|
11575
|
+
type: "unit";
|
|
11576
|
+
unit: OntologyIrNumberFormatUnit;
|
|
11577
|
+
}
|
|
11578
|
+
interface OntologyIrNumberFormatter_customUnit {
|
|
11579
|
+
type: "customUnit";
|
|
11580
|
+
customUnit: OntologyIrNumberFormatCustomUnit;
|
|
11581
|
+
}
|
|
11582
|
+
interface OntologyIrNumberFormatter_prePost {
|
|
11583
|
+
type: "prePost";
|
|
11584
|
+
prePost: OntologyIrNumberFormatPrePostFix;
|
|
11585
|
+
}
|
|
11586
|
+
interface OntologyIrNumberFormatter_duration {
|
|
11587
|
+
type: "duration";
|
|
11588
|
+
duration: NumberFormatDuration;
|
|
11589
|
+
}
|
|
11590
|
+
interface OntologyIrNumberFormatter_thousands {
|
|
11591
|
+
type: "thousands";
|
|
11592
|
+
thousands: NumberFormatThousands;
|
|
11593
|
+
}
|
|
11594
|
+
interface OntologyIrNumberFormatter_millions {
|
|
11595
|
+
type: "millions";
|
|
11596
|
+
millions: NumberFormatMillions;
|
|
11597
|
+
}
|
|
11598
|
+
interface OntologyIrNumberFormatter_billions {
|
|
11599
|
+
type: "billions";
|
|
11600
|
+
billions: NumberFormatBillions;
|
|
11601
|
+
}
|
|
11602
|
+
interface OntologyIrNumberFormatter_basisPoint {
|
|
11603
|
+
type: "basisPoint";
|
|
11604
|
+
basisPoint: NumberFormatBasisPoint;
|
|
11605
|
+
}
|
|
11606
|
+
type OntologyIrNumberFormatter = OntologyIrNumberFormatter_base | OntologyIrNumberFormatter_percentage | OntologyIrNumberFormatter_perMille | OntologyIrNumberFormatter_ordinal | OntologyIrNumberFormatter_currency | OntologyIrNumberFormatter_unit | OntologyIrNumberFormatter_customUnit | OntologyIrNumberFormatter_prePost | OntologyIrNumberFormatter_duration | OntologyIrNumberFormatter_thousands | OntologyIrNumberFormatter_millions | OntologyIrNumberFormatter_billions | OntologyIrNumberFormatter_basisPoint;
|
|
11607
|
+
/**
|
|
11608
|
+
* Note that this formatter breaks e.g. sorting features if used in combination with auto-conversion.
|
|
11609
|
+
*/
|
|
11610
|
+
interface OntologyIrNumberFormatUnit {
|
|
11611
|
+
base: NumberFormatBase;
|
|
11612
|
+
unit: OntologyIrPropertyTypeReferenceOrStringConstant;
|
|
11613
|
+
}
|
|
11614
|
+
/**
|
|
11615
|
+
* Configuration for a time series property that can contain either numeric or non-numeric data. A boolean property
|
|
11616
|
+
* reference is required to determine if the series is numeric or non-numeric.
|
|
11617
|
+
*/
|
|
11618
|
+
interface OntologyIrNumericOrNonNumericSeriesValueMetadataV2 {
|
|
11619
|
+
isNonNumericPropertyTypeId: ObjectTypeFieldApiName$1;
|
|
11620
|
+
}
|
|
11621
|
+
/**
|
|
11622
|
+
* Configuration for numeric series.
|
|
11623
|
+
*/
|
|
11624
|
+
interface OntologyIrNumericSeriesValueMetadata {
|
|
11625
|
+
defaultInternalInterpolation: OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation;
|
|
11626
|
+
}
|
|
11627
|
+
interface OntologyIrNumericSeriesValueUnit_standardUnit {
|
|
11628
|
+
type: "standardUnit";
|
|
11629
|
+
standardUnit: OntologyIrNumberFormatUnit;
|
|
11630
|
+
}
|
|
11631
|
+
interface OntologyIrNumericSeriesValueUnit_customUnit {
|
|
11632
|
+
type: "customUnit";
|
|
11633
|
+
customUnit: OntologyIrNumberFormatCustomUnit;
|
|
11634
|
+
}
|
|
11635
|
+
/**
|
|
11636
|
+
* The unit to accompany the numeric value of a Time Dependent property. Can be a standardized NumberFormatUnit
|
|
11637
|
+
* or a user-inputted NumberFormatCustomUnit for Numeric series. Either can be provided by a property or a
|
|
11638
|
+
* user-inputted constant.
|
|
11639
|
+
*/
|
|
11640
|
+
type OntologyIrNumericSeriesValueUnit = OntologyIrNumericSeriesValueUnit_standardUnit | OntologyIrNumericSeriesValueUnit_customUnit;
|
|
11641
|
+
interface OntologyIrObjectParameterPropertyValue {
|
|
11642
|
+
parameterId: ParameterId;
|
|
11643
|
+
propertyTypeId: ObjectTypeFieldApiName$1;
|
|
11644
|
+
}
|
|
11023
11645
|
/**
|
|
11024
11646
|
* Reference to a struct field of a struct property.
|
|
11025
11647
|
*/
|
|
11026
11648
|
interface OntologyIrObjectParameterStructFieldValue {
|
|
11027
11649
|
parameterId: ParameterId;
|
|
11028
|
-
propertyTypeId:
|
|
11650
|
+
propertyTypeId: ObjectTypeFieldApiName$1;
|
|
11029
11651
|
structFieldRid: StructFieldRid;
|
|
11030
11652
|
}
|
|
11031
11653
|
/**
|
|
@@ -11033,7 +11655,7 @@ interface OntologyIrObjectParameterStructFieldValue {
|
|
|
11033
11655
|
*/
|
|
11034
11656
|
interface OntologyIrObjectParameterStructListFieldValue {
|
|
11035
11657
|
parameterId: ParameterId;
|
|
11036
|
-
propertyTypeId:
|
|
11658
|
+
propertyTypeId: ObjectTypeFieldApiName$1;
|
|
11037
11659
|
structFieldRid: StructFieldRid;
|
|
11038
11660
|
}
|
|
11039
11661
|
/**
|
|
@@ -11047,7 +11669,7 @@ interface OntologyIrObjectQueryPrefill {
|
|
|
11047
11669
|
*/
|
|
11048
11670
|
interface OntologyIrObjectQueryPropertyValue {
|
|
11049
11671
|
objectSet: OntologyIrActionsObjectSet;
|
|
11050
|
-
propertyTypeId:
|
|
11672
|
+
propertyTypeId: ObjectTypeFieldApiName$1;
|
|
11051
11673
|
}
|
|
11052
11674
|
/**
|
|
11053
11675
|
* Generates an ObjectSetRid, from the provided ObjectSet definition, that would be used as the default value
|
|
@@ -11056,6 +11678,26 @@ interface OntologyIrObjectQueryPropertyValue {
|
|
|
11056
11678
|
interface OntologyIrObjectSetRidPrefill {
|
|
11057
11679
|
objectSet: OntologyIrActionsObjectSet;
|
|
11058
11680
|
}
|
|
11681
|
+
/**
|
|
11682
|
+
* Transforms objects in the ObjectSet to all objects on the other end of the specified Relation.
|
|
11683
|
+
*/
|
|
11684
|
+
interface OntologyIrObjectSetSearchAround {
|
|
11685
|
+
objectTypeId: ObjectTypeApiName;
|
|
11686
|
+
relationId: LinkTypeId;
|
|
11687
|
+
relationSide: RelationSide;
|
|
11688
|
+
}
|
|
11689
|
+
interface OntologyIrObjectSetTransform_propertyFilter {
|
|
11690
|
+
type: "propertyFilter";
|
|
11691
|
+
propertyFilter: OntologyIrObjectSetFilter;
|
|
11692
|
+
}
|
|
11693
|
+
interface OntologyIrObjectSetTransform_searchAround {
|
|
11694
|
+
type: "searchAround";
|
|
11695
|
+
searchAround: OntologyIrObjectSetSearchAround;
|
|
11696
|
+
}
|
|
11697
|
+
/**
|
|
11698
|
+
* Transforms an ObjectSet by Filtering or performing a SearchAround.
|
|
11699
|
+
*/
|
|
11700
|
+
type OntologyIrObjectSetTransform = OntologyIrObjectSetTransform_propertyFilter | OntologyIrObjectSetTransform_searchAround;
|
|
11059
11701
|
/**
|
|
11060
11702
|
* An ObjectType is a model that represents a real world concept. For example, there could be
|
|
11061
11703
|
* an Employees ObjectType to represent the employees in a business organization.
|
|
@@ -11412,7 +12054,7 @@ type OntologyIrParameterMultipassUserOrEmpty = OntologyIrParameterMultipassUserO
|
|
|
11412
12054
|
interface OntologyIrParameterObjectPropertyValue {
|
|
11413
12055
|
objectSet: OntologyIrActionsObjectSet;
|
|
11414
12056
|
otherValueAllowed?: OtherValueAllowed | null | undefined;
|
|
11415
|
-
propertyTypeId:
|
|
12057
|
+
propertyTypeId: ObjectTypeFieldApiName$1;
|
|
11416
12058
|
}
|
|
11417
12059
|
interface OntologyIrParameterObjectPropertyValueOrEmpty_empty {
|
|
11418
12060
|
type: "empty";
|
|
@@ -11469,7 +12111,7 @@ interface OntologyIrParameterPrefill_staticObject {
|
|
|
11469
12111
|
}
|
|
11470
12112
|
interface OntologyIrParameterPrefill_objectParameterPropertyValue {
|
|
11471
12113
|
type: "objectParameterPropertyValue";
|
|
11472
|
-
objectParameterPropertyValue:
|
|
12114
|
+
objectParameterPropertyValue: OntologyIrObjectParameterPropertyValue;
|
|
11473
12115
|
}
|
|
11474
12116
|
interface OntologyIrParameterPrefill_interfaceParameterPropertyValue {
|
|
11475
12117
|
type: "interfaceParameterPropertyValue";
|
|
@@ -11561,6 +12203,10 @@ interface OntologyIrParameterValueOneOfOrEmpty_oneOf {
|
|
|
11561
12203
|
oneOf: OntologyIrParameterValueOneOf;
|
|
11562
12204
|
}
|
|
11563
12205
|
type OntologyIrParameterValueOneOfOrEmpty = OntologyIrParameterValueOneOfOrEmpty_empty | OntologyIrParameterValueOneOfOrEmpty_oneOf;
|
|
12206
|
+
interface OntologyIrPrePostFix {
|
|
12207
|
+
postfix?: OntologyIrPropertyTypeReferenceOrStringConstant | null | undefined;
|
|
12208
|
+
prefix?: OntologyIrPropertyTypeReferenceOrStringConstant | null | undefined;
|
|
12209
|
+
}
|
|
11564
12210
|
/**
|
|
11565
12211
|
* Defines a grouping of properties sharing the same security.
|
|
11566
12212
|
*
|
|
@@ -11587,7 +12233,7 @@ interface OntologyIrPropertySecurityGroups {
|
|
|
11587
12233
|
*/
|
|
11588
12234
|
interface OntologyIrPropertyType {
|
|
11589
12235
|
apiName: ObjectTypeFieldApiName$1;
|
|
11590
|
-
baseFormatter?:
|
|
12236
|
+
baseFormatter?: OntologyIrBaseFormatter | null | undefined;
|
|
11591
12237
|
dataConstraints?: DataConstraints | null | undefined;
|
|
11592
12238
|
displayMetadata: PropertyTypeDisplayMetadata;
|
|
11593
12239
|
indexedForSearch: boolean;
|
|
@@ -11600,6 +12246,33 @@ interface OntologyIrPropertyType {
|
|
|
11600
12246
|
typeClasses: Array<TypeClass>;
|
|
11601
12247
|
valueType?: ValueTypeApiNameReference | null | undefined;
|
|
11602
12248
|
}
|
|
12249
|
+
interface OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType {
|
|
12250
|
+
type: "propertyType";
|
|
12251
|
+
propertyType: ObjectTypeFieldApiName$1;
|
|
12252
|
+
}
|
|
12253
|
+
interface OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation {
|
|
12254
|
+
type: "internalInterpolation";
|
|
12255
|
+
internalInterpolation: NonNumericInternalInterpolation;
|
|
12256
|
+
}
|
|
12257
|
+
type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation = OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType | OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation;
|
|
12258
|
+
interface OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType {
|
|
12259
|
+
type: "propertyType";
|
|
12260
|
+
propertyType: ObjectTypeFieldApiName$1;
|
|
12261
|
+
}
|
|
12262
|
+
interface OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation {
|
|
12263
|
+
type: "internalInterpolation";
|
|
12264
|
+
internalInterpolation: NumericInternalInterpolation;
|
|
12265
|
+
}
|
|
12266
|
+
type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation = OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType | OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation;
|
|
12267
|
+
interface OntologyIrPropertyTypeReferenceOrStringConstant_constant {
|
|
12268
|
+
type: "constant";
|
|
12269
|
+
constant: string;
|
|
12270
|
+
}
|
|
12271
|
+
interface OntologyIrPropertyTypeReferenceOrStringConstant_propertyType {
|
|
12272
|
+
type: "propertyType";
|
|
12273
|
+
propertyType: ObjectTypeFieldApiName$1;
|
|
12274
|
+
}
|
|
12275
|
+
type OntologyIrPropertyTypeReferenceOrStringConstant = OntologyIrPropertyTypeReferenceOrStringConstant_constant | OntologyIrPropertyTypeReferenceOrStringConstant_propertyType;
|
|
11603
12276
|
interface OntologyIrPropertyTypeStatus_experimental {
|
|
11604
12277
|
type: "experimental";
|
|
11605
12278
|
experimental: ExperimentalPropertyTypeStatus;
|
|
@@ -11771,13 +12444,30 @@ type OntologyIrSecurityGroupSecurityDefinition = OntologyIrSecurityGroupSecurity
|
|
|
11771
12444
|
interface OntologyIrSensorTrait {
|
|
11772
12445
|
readingPropertyTypeRid: ObjectTypeFieldApiName$1;
|
|
11773
12446
|
}
|
|
12447
|
+
interface OntologyIrSeriesValueMetadata_numeric {
|
|
12448
|
+
type: "numeric";
|
|
12449
|
+
numeric: OntologyIrNumericSeriesValueMetadata;
|
|
12450
|
+
}
|
|
12451
|
+
interface OntologyIrSeriesValueMetadata_enum {
|
|
12452
|
+
type: "enum";
|
|
12453
|
+
enum: OntologyIrNonNumericSeriesValueMetadata;
|
|
12454
|
+
}
|
|
12455
|
+
interface OntologyIrSeriesValueMetadata_numericOrNonNumeric {
|
|
12456
|
+
type: "numericOrNonNumeric";
|
|
12457
|
+
numericOrNonNumeric: NumericOrNonNumericSeriesValueMetadata;
|
|
12458
|
+
}
|
|
12459
|
+
interface OntologyIrSeriesValueMetadata_numericOrNonNumericV2 {
|
|
12460
|
+
type: "numericOrNonNumericV2";
|
|
12461
|
+
numericOrNonNumericV2: OntologyIrNumericOrNonNumericSeriesValueMetadataV2;
|
|
12462
|
+
}
|
|
12463
|
+
type OntologyIrSeriesValueMetadata = OntologyIrSeriesValueMetadata_numeric | OntologyIrSeriesValueMetadata_enum | OntologyIrSeriesValueMetadata_numericOrNonNumeric | OntologyIrSeriesValueMetadata_numericOrNonNumericV2;
|
|
11774
12464
|
/**
|
|
11775
12465
|
* A property type that can be shared across object types.
|
|
11776
12466
|
*/
|
|
11777
12467
|
interface OntologyIrSharedPropertyType$1 {
|
|
11778
12468
|
aliases: Array<SharedPropertyTypeAlias>;
|
|
11779
12469
|
apiName: ObjectTypeFieldApiName$1;
|
|
11780
|
-
baseFormatter?:
|
|
12470
|
+
baseFormatter?: OntologyIrBaseFormatter | null | undefined;
|
|
11781
12471
|
dataConstraints?: DataConstraints | null | undefined;
|
|
11782
12472
|
displayMetadata: SharedPropertyTypeDisplayMetadata;
|
|
11783
12473
|
gothamMapping?: SharedPropertyTypeGothamMapping | null | undefined;
|
|
@@ -11933,6 +12623,58 @@ interface OntologyIrTemplateNotificationBody {
|
|
|
11933
12623
|
inputs: Record<HandlebarsInputName, OntologyIrNotificationTemplateInputValue>;
|
|
11934
12624
|
shortBody: OntologyIrShortBody;
|
|
11935
12625
|
}
|
|
12626
|
+
/**
|
|
12627
|
+
* Formatter applied to TIME DEPENDENT properties.
|
|
12628
|
+
*/
|
|
12629
|
+
interface OntologyIrTimeDependentFormatter {
|
|
12630
|
+
timeDependentSeriesFormat: OntologyIrTimeDependentSeriesFormat;
|
|
12631
|
+
}
|
|
12632
|
+
/**
|
|
12633
|
+
* Configuration for non-numeric series.
|
|
12634
|
+
*/
|
|
12635
|
+
interface OntologyIrTimeDependentNonNumericSeriesFormat {
|
|
12636
|
+
defaultInternalInterpolation: OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation;
|
|
12637
|
+
unit?: OntologyIrNonNumericSeriesValueUnit | null | undefined;
|
|
12638
|
+
}
|
|
12639
|
+
/**
|
|
12640
|
+
* Configuration for either numeric or non-numeric series.
|
|
12641
|
+
*/
|
|
12642
|
+
interface OntologyIrTimeDependentNumericOrNonNumericSeriesFormat {
|
|
12643
|
+
defaultInternalInterpolationPropertyTypeId: ObjectTypeFieldApiName$1;
|
|
12644
|
+
isNonNumericPropertyTypeId: ObjectTypeFieldApiName$1;
|
|
12645
|
+
unitPropertyTypeId: ObjectTypeFieldApiName$1;
|
|
12646
|
+
}
|
|
12647
|
+
/**
|
|
12648
|
+
* Configuration for either numeric or non-numeric series.
|
|
12649
|
+
*/
|
|
12650
|
+
interface OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2 {
|
|
12651
|
+
defaultInternalInterpolationPropertyTypeId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
12652
|
+
unitPropertyTypeId?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
12653
|
+
}
|
|
12654
|
+
/**
|
|
12655
|
+
* Configuration for numeric series.
|
|
12656
|
+
*/
|
|
12657
|
+
interface OntologyIrTimeDependentNumericSeriesFormat {
|
|
12658
|
+
defaultInternalInterpolation: OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation;
|
|
12659
|
+
unit?: OntologyIrNumericSeriesValueUnit | null | undefined;
|
|
12660
|
+
}
|
|
12661
|
+
interface OntologyIrTimeDependentSeriesFormat_numeric {
|
|
12662
|
+
type: "numeric";
|
|
12663
|
+
numeric: OntologyIrTimeDependentNumericSeriesFormat;
|
|
12664
|
+
}
|
|
12665
|
+
interface OntologyIrTimeDependentSeriesFormat_nonNumeric {
|
|
12666
|
+
type: "nonNumeric";
|
|
12667
|
+
nonNumeric: OntologyIrTimeDependentNonNumericSeriesFormat;
|
|
12668
|
+
}
|
|
12669
|
+
interface OntologyIrTimeDependentSeriesFormat_numericOrNonNumeric {
|
|
12670
|
+
type: "numericOrNonNumeric";
|
|
12671
|
+
numericOrNonNumeric: OntologyIrTimeDependentNumericOrNonNumericSeriesFormat;
|
|
12672
|
+
}
|
|
12673
|
+
interface OntologyIrTimeDependentSeriesFormat_numericOrNonNumericV2 {
|
|
12674
|
+
type: "numericOrNonNumericV2";
|
|
12675
|
+
numericOrNonNumericV2: OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2;
|
|
12676
|
+
}
|
|
12677
|
+
type OntologyIrTimeDependentSeriesFormat = OntologyIrTimeDependentSeriesFormat_numeric | OntologyIrTimeDependentSeriesFormat_nonNumeric | OntologyIrTimeDependentSeriesFormat_numericOrNonNumeric | OntologyIrTimeDependentSeriesFormat_numericOrNonNumericV2;
|
|
11936
12678
|
/**
|
|
11937
12679
|
* Describes how to treat an object of this type as a time series.
|
|
11938
12680
|
*/
|
|
@@ -11941,6 +12683,10 @@ interface OntologyIrTimeSeriesMetadata {
|
|
|
11941
12683
|
timeSeriesIdPropertyTypeRid: ObjectTypeFieldApiName$1;
|
|
11942
12684
|
valueUnitsPropertyTypeRid?: ObjectTypeFieldApiName$1 | null | undefined;
|
|
11943
12685
|
}
|
|
12686
|
+
interface OntologyIrTimestampFormatter {
|
|
12687
|
+
displayTimezone: OntologyIrDatetimeTimezone;
|
|
12688
|
+
format: DatetimeFormat;
|
|
12689
|
+
}
|
|
11944
12690
|
interface OntologyIrType_array {
|
|
11945
12691
|
type: "array";
|
|
11946
12692
|
array: OntologyIrArrayPropertyType$1;
|
|
@@ -11995,7 +12741,7 @@ interface OntologyIrType_string {
|
|
|
11995
12741
|
}
|
|
11996
12742
|
interface OntologyIrType_experimentalTimeDependentV1 {
|
|
11997
12743
|
type: "experimentalTimeDependentV1";
|
|
11998
|
-
experimentalTimeDependentV1:
|
|
12744
|
+
experimentalTimeDependentV1: OntologyIrExperimentalTimeDependentPropertyTypeV1;
|
|
11999
12745
|
}
|
|
12000
12746
|
interface OntologyIrType_timestamp {
|
|
12001
12747
|
type: "timestamp";
|
|
@@ -12334,6 +13080,13 @@ type OrganizationMarkingId = string;
|
|
|
12334
13080
|
* The rid for a Multipass Organization.
|
|
12335
13081
|
*/
|
|
12336
13082
|
type OrganizationRid = string;
|
|
13083
|
+
/**
|
|
13084
|
+
* A set of organization rids and the corresponding ontology entities that have those organization markings.
|
|
13085
|
+
*/
|
|
13086
|
+
interface OrganizationRidsAndEntityResourceIdentifiers {
|
|
13087
|
+
entityResourceIdentifiers: Array<string>;
|
|
13088
|
+
organizationRids: Array<OrganizationRid>;
|
|
13089
|
+
}
|
|
12337
13090
|
interface OrganizationRidsForOntologyResponse {
|
|
12338
13091
|
organizationRids: Array<OrganizationRid>;
|
|
12339
13092
|
}
|
|
@@ -16325,4 +17078,4 @@ type ImportedSharedPropertyTypes = {
|
|
|
16325
17078
|
packageName: string;
|
|
16326
17079
|
};
|
|
16327
17080
|
|
|
16328
|
-
export { type AccessRequestRid, type AccessRequestVersion, type AccessSubRequestRid, type AccessSubRequestVersion, type ActionApplierRevertConfig, type ActionApplyClientPreferences, type ActionApplyClientPreferences_disallowedClients, type ActionApplyDisallowedClients, type ActionLogConfiguration, type ActionLogMessage, type ActionLogMetadata, type ActionLogParameterReference, type ActionLogRule, type ActionLogRuleModification, type ActionLogSummaryPart, type ActionLogSummaryPart_message, type ActionLogSummaryPart_parameter, type ActionLogValue, type ActionLogValueModification, type ActionLogValueModification_actionRid, type ActionLogValueModification_actionTimestamp, type ActionLogValueModification_actionTypeRid, type ActionLogValueModification_actionTypeVersion, type ActionLogValueModification_actionUser, type ActionLogValueModification_allEditedObjects, type ActionLogValueModification_asynchronousWebhookInstanceIds, type ActionLogValueModification_editedObjects, type ActionLogValueModification_interfaceParameterPropertyValue, type ActionLogValueModification_isReverted, type ActionLogValueModification_notificationIds, type ActionLogValueModification_notifiedUsers, type ActionLogValueModification_objectParameterPropertyValue, type ActionLogValueModification_parameterValue, type ActionLogValueModification_revertTimestamp, type ActionLogValueModification_revertUser, type ActionLogValueModification_scenarioRid, type ActionLogValueModification_summary, type ActionLogValueModification_synchronousWebhookInstanceId, type ActionLogValue_actionRid, type ActionLogValue_actionTimestamp, type ActionLogValue_actionTypeRid, type ActionLogValue_actionTypeVersion, type ActionLogValue_actionUser, type ActionLogValue_allEditedObjects, type ActionLogValue_asynchronousWebhookInstanceIds, type ActionLogValue_editedObjects, type ActionLogValue_interfaceParameterPropertyValue, type ActionLogValue_isReverted, type ActionLogValue_notificationIds, type ActionLogValue_notifiedUsers, type ActionLogValue_objectParameterPropertyValue, type ActionLogValue_parameterValue, type ActionLogValue_revertTimestamp, type ActionLogValue_revertUser, type ActionLogValue_scenarioRid, type ActionLogValue_summary, type ActionLogValue_synchronousWebhookInstanceId, type ActionLogic, type ActionLogicModification, type ActionNotification, type ActionNotificationBody, type ActionNotificationBodyFunctionExecution, type ActionNotificationBodyFunctionExecutionModification, type ActionNotificationBodyModification, type ActionNotificationBodyModification_functionGenerated, type ActionNotificationBodyModification_templateNotification, type ActionNotificationBody_functionGenerated, type ActionNotificationBody_templateNotification, type ActionNotificationModification, type ActionNotificationRecipients, type ActionNotificationRecipientsModification, type ActionNotificationRecipientsModification_functionGenerated, type ActionNotificationRecipientsModification_parameter, type ActionNotificationRecipients_functionGenerated, type ActionNotificationRecipients_parameter, type ActionNotificationSettings, type ActionRevert, type ActionRevertEnabledFor, type ActionRevertEnabledFor_actionApplier, type ActionSubmissionConfiguration, type ActionTableSubmissionMode, type ActionTableSubmissionModeConfiguration, type ActionTableSubmissionMode_submitAllValidOrNothingThrowing, type ActionTableSubmissionMode_submitValidEntriesInOrderUntilFirstFailure, type ActionType, type ActionTypeApiName, type ActionTypeCreate, type ActionTypeCreatedEvent, type ActionTypeDeletedEvent, type ActionTypeDisplayMetadata, type ActionTypeDisplayMetadataConfiguration, type ActionTypeDisplayMetadataModification, type ActionTypeDoesNotHaveActionTypeLevelValidationError, type ActionTypeEditingNonEditablePropertyTypeError, type ActionTypeEntities, type ActionTypeError, type ActionTypeError_actionTypeDoesNotHaveActionTypeLevelValidation, type ActionTypeError_actionTypeEditingNonEditablePropertyType, type ActionTypeError_actionTypesAlreadyExist, type ActionTypeError_actionTypesNotFound, type ActionTypeError_deletingAndEditingTheSameActionType, type ActionTypeError_inlineActionTypeCannotBeReferencedByMultipleObjectTypes, type ActionTypeError_nonExistentParametersUsedInParameterPrefill, type ActionTypeError_parameterValidationNotFound, type ActionTypeError_parameterValidationReferencesLaterParameters, type ActionTypeError_parametersDoNotMatchParameterOrdering, type ActionTypeError_versionedActionTypesNotFound, type ActionTypeFrontendConsumer, type ActionTypeFrontendConsumer_objectMonitoring, type ActionTypeGetOrganizationsRequest, type ActionTypeGetOrganizationsResponse, type ActionTypeIdInRequest, type ActionTypeIdentifier, type ActionTypeIdentifier_actionTypeIdInRequest, type ActionTypeIdentifier_rid, type ActionTypeInputManagerRid, type ActionTypeLevelValidation, type ActionTypeLoadAllRequest, type ActionTypeLoadRequest, type ActionTypeLoadRequestV2, type ActionTypeLoadResponse, type ActionTypeLoadResponseV2, type ActionTypeLoadVersionedRequest, type ActionTypeLoadVersionedResponse, type ActionTypeLogic, type ActionTypeMetadata, type ActionTypeMetadataModification, type ActionTypeModificationRequest, type ActionTypeModifyRequest, type ActionTypeModifyResponse, type ActionTypeParameterIdentifier, type ActionTypeParameterIdentifier_id, type ActionTypeParameterIdentifier_rid, type ActionTypeProvenanceModification, type ActionTypeProvenanceSourceModification, type ActionTypeProvenanceSourceModification_marketplace, type ActionTypeProvenanceSourceModification_none, type ActionTypeRichTextComponent, type ActionTypeRichTextComponent_message, type ActionTypeRichTextComponent_parameter, type ActionTypeRichTextComponent_parameterProperty, type ActionTypeRichTextMessage, type ActionTypeRichTextParameterPropertyReference, type ActionTypeRichTextParameterReference, type ActionTypeRid, type ActionTypeSetOrganizationsRequest, type ActionTypeStatus, type ActionTypeStatus_active, type ActionTypeStatus_deprecated, type ActionTypeStatus_example, type ActionTypeStatus_experimental, type ActionTypeUpdate, type ActionTypeUpdatedEvent, type ActionTypeVersion, type ActionTypesAlreadyExistError, type ActionTypesNotFoundError, type ActionTypesSummary, type ActionValidation, type ActionWebhooks, type ActionWebhooksModification, type ActionsObjectSet, type ActionsObjectSetModification, type ActionsVersion, type ActiveActionTypeStatus, type ActiveInterfaceTypeStatus, type ActiveLinkTypeStatus, type ActiveObjectTypeStatus, type ActivePropertyTypeStatus, type AddInterfaceLinkRule, type AddInterfaceLinkRuleModification, type AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, type AllowedParameterValues, type AllowedParameterValuesModification, type AllowedParameterValuesModification_attachment, type AllowedParameterValuesModification_boolean, type AllowedParameterValuesModification_cbacMarking, type AllowedParameterValuesModification_datetime, type AllowedParameterValuesModification_geohash, type AllowedParameterValuesModification_geoshape, type AllowedParameterValuesModification_geotimeSeriesReference, type AllowedParameterValuesModification_interfaceObjectQuery, type AllowedParameterValuesModification_interfacePropertyValue, type AllowedParameterValuesModification_mandatoryMarking, type AllowedParameterValuesModification_mediaReference, type AllowedParameterValuesModification_multipassGroup, type AllowedParameterValuesModification_objectList, type AllowedParameterValuesModification_objectPropertyValue, type AllowedParameterValuesModification_objectQuery, type AllowedParameterValuesModification_objectSetRid, type AllowedParameterValuesModification_objectTypeReference, type AllowedParameterValuesModification_oneOf, type AllowedParameterValuesModification_range, type AllowedParameterValuesModification_redacted, type AllowedParameterValuesModification_struct, type AllowedParameterValuesModification_text, type AllowedParameterValuesModification_timeSeriesReference, type AllowedParameterValuesModification_user, type AllowedParameterValues_attachment, type AllowedParameterValues_boolean, type AllowedParameterValues_cbacMarking, type AllowedParameterValues_datetime, type AllowedParameterValues_geohash, type AllowedParameterValues_geoshape, type AllowedParameterValues_geotimeSeriesReference, type AllowedParameterValues_interfaceObjectQuery, type AllowedParameterValues_interfacePropertyValue, type AllowedParameterValues_mandatoryMarking, type AllowedParameterValues_mediaReference, type AllowedParameterValues_multipassGroup, type AllowedParameterValues_objectList, type AllowedParameterValues_objectPropertyValue, type AllowedParameterValues_objectQuery, type AllowedParameterValues_objectSetRid, type AllowedParameterValues_objectTypeReference, type AllowedParameterValues_oneOf, type AllowedParameterValues_range, type AllowedParameterValues_redacted, type AllowedParameterValues_struct, type AllowedParameterValues_text, type AllowedParameterValues_timeSeriesReference, type AllowedParameterValues_user, type AllowedStructFieldValues, type AllowedStructFieldValuesModification, type AllowedStructFieldValuesModification_boolean, type AllowedStructFieldValuesModification_datetime, type AllowedStructFieldValuesModification_geohash, type AllowedStructFieldValuesModification_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, type AllowedStructFieldValues_oneOf, type AllowedStructFieldValues_range, type AllowedStructFieldValues_text, type AllowedValuesOverride, type AllowedValuesOverrideModification, type Analyzer, type Analyzer_languageAnalyzer, type Analyzer_notAnalyzed, type Analyzer_simpleAnalyzer, type Analyzer_standardAnalyzer, type Analyzer_whitespaceAnalyzer, type AndCondition, type AndConditionModification, type AnyNotificationRenderingCanFail, type ApiNameValueTypeReference, type ArrayPropertyType, type ArrayTypeDataConstraints$1 as ArrayTypeDataConstraints, type ArrayTypeDataValue$1 as ArrayTypeDataValue, type ArrayTypeElementsUniqueConstraint$1 as ArrayTypeElementsUniqueConstraint, type ArrayTypeSizeConstraint$1 as ArrayTypeSizeConstraint, type AsynchronousPostWritebackWebhook, type AsynchronousPostWritebackWebhookModification, type AsynchronousPostWritebackWebhookModification_staticDirectInput, type AsynchronousPostWritebackWebhookModification_staticFunctionInput, type AsynchronousPostWritebackWebhook_staticDirectInput, type AsynchronousPostWritebackWebhook_staticFunctionInput, type AttachmentPropertyType, type Attribution, type BaseFormatter, type BaseFormatter_boolean, type BaseFormatter_date, type BaseFormatter_knownFormatter, type BaseFormatter_number, type BaseFormatter_string, type BaseFormatter_timeDependent, type BaseFormatter_timestamp, type BaseParameterSubtype, type BaseParameterSubtype_marking, type BasePropertyType, type BaseType, type BasicEmailBody, type BasicEmailBodyModification, type BatchedFunctionRule, type BatchedFunctionRuleModification, type BidirectionalRelation, type BidirectionalRelationCreateRequest, type BidirectionalRelationDeleteRequest, type BidirectionalRelationModifyRequest, type BidirectionalRelationModifyRequest_create, type BidirectionalRelationModifyRequest_delete, type BidirectionalRelationModifyRequest_update, type BidirectionalRelationUpdateRequest, type BidirectionalRelationWithoutRid, type BlueprintIcon, type BooleanFormatter, type BooleanPropertyType, type BooleanTypeDataConstraintValue$1 as BooleanTypeDataConstraintValue, type BooleanTypeDataConstraints$1 as BooleanTypeDataConstraints, type BooleanTypeDataValue$1 as BooleanTypeDataValue, type BranchClosedEvent, type BranchDeletedEvent, type BranchId, type BranchMergedEvent, type BuilderPipelineRid, type BulkExecutionModeConfig, type ButtonDisplayMetadata, type BytePropertyType, type ByteTypeDataValue$1 as ByteTypeDataValue, type CarbonWorkspaceComponentUrlTarget, type CarbonWorkspaceComponentUrlTargetModification, type CarbonWorkspaceComponentUrlTargetModification_rid, type CarbonWorkspaceComponentUrlTarget_rid, type CarbonWorkspaceUrlTarget, type CarbonWorkspaceUrlTargetModification, type CategoryId, type CipherTextPropertyType, type ClassificationConstraint, type ColumnLocator, type ColumnName, type ComparisonCondition, type ComparisonConditionModification, type ComparisonOperator, type CompassProjectRid, type Condition, type ConditionDisplayMetadata, type ConditionIndex, type ConditionModification, type ConditionModification_and, type ConditionModification_comparison, type ConditionModification_markings, type ConditionModification_not, type ConditionModification_or, type ConditionModification_redacted, type ConditionModification_regex, type ConditionModification_true, type ConditionValue, type ConditionValueModification, type ConditionValueModification_interfaceParameterPropertyValue, type ConditionValueModification_objectParameterPropertyValue, type ConditionValueModification_parameterId, type ConditionValueModification_parameterLength, type ConditionValueModification_staticValue, type ConditionValueModification_userProperty, type ConditionValue_interfaceParameterPropertyValue, type ConditionValue_objectParameterPropertyValue, type ConditionValue_parameterId, type ConditionValue_parameterLength, type ConditionValue_staticValue, type ConditionValue_userProperty, type Condition_and, type Condition_comparison, type Condition_markings, type Condition_not, type Condition_or, type Condition_redacted, type Condition_regex, type Condition_true, type ConditionalOverride, type ConditionalOverrideModification, type ConditionalValidationBlock, type ConditionalValidationBlockModification, type CurrentTime, type CurrentUser, type DataConstraint, type DataConstraintWrapper, type DataConstraints, type DataNullability, type DataNullabilityV2, type DataSecurity, type DataType, type DataType_baseType, type DatasetRid, type DatasetRidAndBranchId, type DatasetTransactionRid, type DatasourceBackingRid, type DatasourceBackingRid_datasetRid, type DatasourceBackingRid_derivedPropertiesSourceRid, type DatasourceBackingRid_directSourceRid, type DatasourceBackingRid_editsOnlyRid, type DatasourceBackingRid_geotimeSeriesIntegrationRid, type DatasourceBackingRid_mediaSetRid, type DatasourceBackingRid_mediaSetViewRid, type DatasourceBackingRid_restrictedStreamRid, type DatasourceBackingRid_restrictedViewRid, type DatasourceBackingRid_streamLocatorRid, type DatasourceBackingRid_tableRid, type DatasourceBackingRid_timeSeriesSyncRid, type DatasourceIdentifier, type DatasourceIdentifier_datasetRidAndBranchId, type DatasourceIdentifier_derivedPropertiesSourceRid, type DatasourceIdentifier_directSourceRid, type DatasourceIdentifier_editsOnly, type DatasourceIdentifier_geotimeSeriesIntegrationRid, type DatasourceIdentifier_mediaSetView, type DatasourceIdentifier_mediaSourceRids, type DatasourceIdentifier_restrictedStream, type DatasourceIdentifier_restrictedViewRid, type DatasourceIdentifier_streamLocator, type DatasourceIdentifier_table, type DatasourceIdentifier_timeSeriesSyncRid, type DatasourceRid, type DatasourceType, type DateFormatter, type DatePropertyType, type DateRangeValue, type DateRangeValueModification, type DateRangeValueModification_fixed, type DateRangeValueModification_now, type DateRangeValueModification_relative, type DateRangeValue_fixed, type DateRangeValue_now, type DateRangeValue_relative, type DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, type DatetimeFormat, type DatetimeFormat_localizedFormat, type DatetimeFormat_stringFormat, type DatetimeLocalizedFormat, type DatetimeStringFormat, type DatetimeTimezone, type DatetimeTimezoneDefinition, type DatetimeTimezoneDefinition_zoneId, type DatetimeTimezone_static, type DatetimeTimezone_user, type DecimalPropertyType, type DecimalTypeDataConstraints$1 as DecimalTypeDataConstraints, type DecimalTypeDataConstraints_oneOf$1 as DecimalTypeDataConstraints_oneOf, type DecimalTypeDataConstraints_range$1 as DecimalTypeDataConstraints_range, type DecimalTypeDataValue$1 as DecimalTypeDataValue, type DecimalTypeRangeConstraint$1 as DecimalTypeRangeConstraint, type DelegateToAllowedStructFieldValues, type DeleteInterfaceLinkRule, type DeleteInterfaceLinkRuleModification, type DeleteLinkRule, type DeleteObjectRule, type DeletedLinkTypesStillInUseError, type DeletedLinkTypesStillInUseInWorkflowError, type DeletedObjectTypesStillInUseError, type DeletedObjectTypesStillInUseInWorkflowError, type DeletingAndEditingTheSameActionTypeError, type DeletionMetadata, type DeprecatedActionTypeGetOrganizationsResponse, type DeprecatedActionTypeSetOrganizationsRequest, type DeprecatedActionTypeStatus, type DeprecatedInterfaceTypeStatus, type DeprecatedLinkTypeStatus, type DeprecatedObjectTypeStatus, type DeprecatedPropertyTypeStatus, type DerivedPropertiesSourceRid, type DirectSourceRid, type DirectedLinkTypeRid, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, type DoublePropertyType, type DoubleTypeDataConstraints$1 as DoubleTypeDataConstraints, type DoubleTypeDataConstraints_oneOf$1 as DoubleTypeDataConstraints_oneOf, type DoubleTypeDataConstraints_range$1 as DoubleTypeDataConstraints_range, type DoubleTypeDataValue$1 as DoubleTypeDataValue, type DoubleTypeRangeConstraint$1 as DoubleTypeRangeConstraint, type Duration, type DurationBaseValue, type DurationFormatStyle, type DurationFormatStyle_humanReadable, type DurationFormatStyle_timecode, type DurationPrecision, type DynamicObjectSet, type DynamicObjectSetInput, type DynamicObjectSetInputBase, type DynamicObjectSetInputParameter, type DynamicObjectSetInputUnioned, type DynamicObjectSetInput_base, type DynamicObjectSetInput_parameter, type DynamicObjectSetInput_unioned, type EditActionTypeRequest, type EditOnlyPropertyType, type EditParameterRequest, type EditParameterRequestModification, type EditSectionRequest, type EditSectionRequestModification, type EditValidationRuleRequest, type EditsConfiguration, type EditsHistoryObjectTypeRid, type EditsOnlyRid, type EmailBody, type EmailBodyModification, type EmailBodyModification_basic, type EmailBody_basic, type EmbeddingModel, type EmbeddingModel_text, type Empty, type EndorsedObjectTypeStatus, type EnrollmentRid, type EntityLoadByDatasourceResponse, type EntityLoadByDatasourceResponse_linkType, type EntityLoadByDatasourceResponse_objectType, type EntityMetadataLoadRequest, type EntityStatus, type EventMetadata, type EventsTopicRid, type EveryoneTrustedRedactionOverride, type ExampleActionTypeStatus, type ExampleInterfaceTypeStatus, type ExampleLinkTypeStatus, type ExampleObjectTypeStatus, type ExamplePropertyTypeStatus, type ExampleValue, type ExperimentalActionTypeStatus, type ExperimentalDeclarativeEditInformation, type ExperimentalInterfaceTypeStatus, type ExperimentalLinkTypeStatus, type ExperimentalObjectTypeStatus, type ExperimentalPropertyTypeStatus, type ExperimentalTimeDependentPropertyTypeV1, type FailureMessage, type FieldDisplayMetadata, type FieldMetadata, type FloatPropertyType, type FloatTypeDataConstraints$1 as FloatTypeDataConstraints, type FloatTypeDataConstraints_oneOf$1 as FloatTypeDataConstraints_oneOf, type FloatTypeDataConstraints_range$1 as FloatTypeDataConstraints_range, type FloatTypeDataValue$1 as FloatTypeDataValue, type FloatTypeRangeConstraint$1 as FloatTypeRangeConstraint, type FormContent, type FormContent_parameterId, type FormContent_sectionId, type FormatterUserId, type FoundryFieldType, type FoundryLiveDeployment, type FoundryObjectReference, type FunctionApiName, type FunctionAtVersion, type FunctionExecutionWithRecipientInput, type FunctionExecutionWithRecipientInputModification, type FunctionExecutionWithRecipientInputModification_logicRuleValue, type FunctionExecutionWithRecipientInputModification_recipient, type FunctionExecutionWithRecipientInput_logicRuleValue, type FunctionExecutionWithRecipientInput_recipient, type FunctionGeneratedActionNotificationRecipients, type FunctionGeneratedActionNotificationRecipientsModification, type FunctionGeneratedNotificationBody, type FunctionGeneratedNotificationBodyModification, type FunctionInputName, type FunctionReference, type FunctionRid, type FunctionRule, type FunctionRuleCustomExecutionMode, type FunctionRuleCustomExecutionMode_bulkExecutionModeConfig, type FunctionRuleModification, type FunctionVersion, type GenericOntologyMetadataError, type GeohashPropertyType, type GeoshapePropertyType, type GeotimeSeriesIntegrationRid, type GeotimeSeriesReferencePropertyType, type GetActionTypesForInterfaceTypePageToken, type GetActionTypesForInterfaceTypeRequest, type GetActionTypesForInterfaceTypeResponse, type GetActionTypesForObjectTypePageToken, type GetActionTypesForObjectTypeRequest, type GetActionTypesForObjectTypeResponse, type GetBulkLinksPageRequest, type GetFeatureConfigurationsResponse, type GetLinkMetadataForObjectTypesRequest, type GetLinkMetadataForObjectTypesResponse, type GetLinkTypesForObjectTypesRequest, type GetLinkTypesForObjectTypesResponse, type GetObjectTypesForInterfaceTypesRequest, type GetObjectTypesForInterfaceTypesResponse, type GetObjectTypesForSharedPropertyTypesRequest, type GetObjectTypesForSharedPropertyTypesResponse, type GetObjectTypesForTypeGroupsRequest, type GetObjectTypesForTypeGroupsResponse, type GetOntologyEntitiesForTypeGroupsRequest, type GetOntologyEntitiesForTypeGroupsResponse, type GetOntologySummaryRequest, type GetOntologySummaryResponse, type GetRelationsForObjectTypesRequest, type GetRelationsForObjectTypesResponse, type GlobalBranchRid, type GroupId, type HandlebarsInputName, type HumanReadableFormat, type Icon, type IconReference, type Icon_blueprint, type ImportedOntologyEntitiesForProjectSpanOntologies, type ImportedSharedPropertyTypes, type ImportedTypes, type InlineActionDisplayOptions, type InlineActionType, type InlineActionTypeCannotBeReferencedByMultipleObjectTypesError, type IntegerPropertyType, type IntegerTypeDataConstraints$1 as IntegerTypeDataConstraints, type IntegerTypeDataConstraints_oneOf$1 as IntegerTypeDataConstraints_oneOf, type IntegerTypeDataConstraints_range$1 as IntegerTypeDataConstraints_range, type IntegerTypeDataValue$1 as IntegerTypeDataValue, type IntegerTypeRangeConstraint$1 as IntegerTypeRangeConstraint, type InterfaceLinkType, type InterfaceLinkTypeApiName, type InterfaceLinkTypeCardinality, type InterfaceLinkTypeIdInRequest, type InterfaceLinkTypeMetadata, type InterfaceLinkTypeRid, type InterfaceLinkTypeRidOrIdInRequest, type InterfaceLinkTypeRidOrIdInRequest_idInRequest, type InterfaceLinkTypeRidOrIdInRequest_rid, type InterfaceParameterPropertyValue, type InterfaceParameterPropertyValueModification, type InterfacePropertyImplementation, type InterfaceSharedPropertyType, type InterfaceType, type InterfaceTypeApiName, type InterfaceTypeCreatedEvent, type InterfaceTypeDeletedEvent, type InterfaceTypeDisplayMetadata, type InterfaceTypeError, type InterfaceTypeError_interfaceTypesAlreadyExist, type InterfaceTypeError_interfaceTypesNotFound, type InterfaceTypeIdInRequest, type InterfaceTypeLoadRequest, type InterfaceTypeLoadResponse, type InterfaceTypeRid, type InterfaceTypeRidOrIdInRequest, type InterfaceTypeRidOrIdInRequest_idInRequest, type InterfaceTypeRidOrIdInRequest_rid, type InterfaceTypeStatus, type InterfaceTypeStatus_active, type InterfaceTypeStatus_deprecated, type InterfaceTypeStatus_example, type InterfaceTypeStatus_experimental, type InterfaceTypeUpdatedEvent, type InterfaceTypesAlreadyExistError, type InterfaceTypesNotFoundError, type InterfacesSummary, type IntermediaryLinkDefinition, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_ridFormatter, type KnownFormatter_userId, type LabelledValue, type LanguageAnalyzer, type LimeIndexRid, type LinkDefinition, type LinkDefinition_intermediary, type LinkDefinition_manyToMany, type LinkDefinition_oneToMany, type LinkMetadata, type LinkMetadata_linkType, type LinkMetadata_softLink, type LinkType, type LinkTypeCreatedEvent, type LinkTypeDeletedEvent, type LinkTypeDisplayMetadata, type LinkTypeError, type LinkTypeError_deletedLinkTypesStillInUse, type LinkTypeError_deletedObjectsStillInUse, type LinkTypeError_linkTypeRidsNotFound, type LinkTypeError_linkTypesAlreadyExist, type LinkTypeError_linkTypesNotFound, type LinkTypeError_referencedLinkTypesNotFound, type LinkTypeError_referencedObjectTypesNotFound, type LinkTypeId, type LinkTypeIdentifier, type LinkTypeIdentifier_linkTypeId, type LinkTypeIdentifier_linkTypeRid, type LinkTypeInputManagerRid, type LinkTypeInputSpec, type LinkTypeLoadRequest, type LinkTypeLoadResponse, type LinkTypeMetadata, type LinkTypeMetadataInputManagerRid, type LinkTypePeeringMetadata, type LinkTypePeeringMetadataV1, type LinkTypePeeringMetadata_v1, type LinkTypePeeringRid, type LinkTypeRid, type LinkTypeRidsNotFoundError, type LinkTypeStatus, type LinkTypeStatus_active, type LinkTypeStatus_deprecated, type LinkTypeStatus_example, type LinkTypeStatus_experimental, type LinkTypeUpdatedEvent, type LinkTypesAlreadyExistError, type LinkTypesNotFoundError, type LinkTypesSummary, type LinkedEntityTypeId, type LinkedEntityTypeId_interfaceType, type LinkedEntityTypeId_objectType, type LinkedEntityTypeRidOrIdInRequest, type LinkedEntityTypeRidOrIdInRequest_interfaceType, type LinkedEntityTypeRidOrIdInRequest_objectType, type LiveDeploymentRid, type LmsEmbeddingModel, type LoadActionTypesFromOntologyRequest, type LoadActionTypesFromOntologyResponse, type LoadAllActionTypesFromOntologyRequest, type LoadAllActionTypesPageItem, type LoadAllActionTypesPageRequest, type LoadAllActionTypesPageResponse, type LoadAllActionTypesPageToken, type LoadAllInterfaceTypesPageItem, type LoadAllInterfaceTypesPageRequest, type LoadAllInterfaceTypesPageResponse, type LoadAllInterfaceTypesPageToken, type LoadAllObjectTypesFromOntologyPageRequest, type LoadAllObjectTypesFromOntologyPageResponse, type LoadAllObjectTypesPageItem, type LoadAllObjectTypesPageRequest, type LoadAllObjectTypesPageResponse, type LoadAllObjectTypesPageToken, type LoadAllOntologiesRequest, type LoadAllOntologiesResponse, type LoadAllSharedPropertyTypesPageItem, type LoadAllSharedPropertyTypesPageRequest, type LoadAllSharedPropertyTypesPageResponse, type LoadAllSharedPropertyTypesPageToken, type LoadAllTypeGroupsPageItem, type LoadAllTypeGroupsPageRequest, type LoadAllTypeGroupsPageResponse, type LoadAllTypeGroupsPageToken, type LogicRule, type LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, type LogicRuleModification_addInterfaceRule, type LogicRuleModification_addLinkRule, type LogicRuleModification_addObjectRule, type LogicRuleModification_addOrModifyObjectRule, type LogicRuleModification_addOrModifyObjectRuleV2, type LogicRuleModification_batchedFunctionRule, type LogicRuleModification_deleteInterfaceLinkRule, type LogicRuleModification_deleteLinkRule, type LogicRuleModification_deleteObjectRule, type LogicRuleModification_functionRule, type LogicRuleModification_modifyInterfaceRule, type LogicRuleModification_modifyObjectRule, type LogicRuleValue, type LogicRuleValueModification, type LogicRuleValueModification_currentTime, type LogicRuleValueModification_currentUser, type LogicRuleValueModification_interfaceParameterPropertyValue, type LogicRuleValueModification_objectParameterPropertyValue, type LogicRuleValueModification_parameterId, type LogicRuleValueModification_staticValue, type LogicRuleValueModification_synchronousWebhookOutput, type LogicRuleValueModification_uniqueIdentifier, type LogicRuleValue_currentTime, type LogicRuleValue_currentUser, type LogicRuleValue_interfaceParameterPropertyValue, type LogicRuleValue_objectParameterPropertyValue, type LogicRuleValue_parameterId, type LogicRuleValue_staticValue, type LogicRuleValue_synchronousWebhookOutput, type LogicRuleValue_uniqueIdentifier, type LogicRule_addInterfaceLinkRule, type LogicRule_addInterfaceRule, type LogicRule_addLinkRule, type LogicRule_addObjectRule, type LogicRule_addOrModifyObjectRule, type LogicRule_addOrModifyObjectRuleV2, type LogicRule_batchedFunctionRule, type LogicRule_deleteInterfaceLinkRule, type LogicRule_deleteLinkRule, type LogicRule_deleteObjectRule, type LogicRule_functionRule, type LogicRule_modifyInterfaceRule, type LogicRule_modifyObjectRule, type LongPropertyType, type LongTypeDataConstraints$1 as LongTypeDataConstraints, type LongTypeDataConstraints_oneOf$1 as LongTypeDataConstraints_oneOf, type LongTypeDataConstraints_range$1 as LongTypeDataConstraints_range, type LongTypeDataValue$1 as LongTypeDataValue, type LongTypeRangeConstraint$1 as LongTypeRangeConstraint, type MandatoryMarkingConstraint, type ManyToManyJoinDefinition, type ManyToManyLinkDefinition, type ManyToManyLinkTypeDatasetDatasource, type ManyToManyLinkTypeDatasource, type ManyToManyLinkTypeDatasourceDefinition, type ManyToManyLinkTypeDatasourceDefinition_dataset, type ManyToManyLinkTypeDatasourceDefinition_stream, type ManyToManyLinkTypeStreamDatasource, type MarkingFilter, type MarkingFilter_markingTypes, type MarkingId, type MarkingPropertyType, type MarkingSubtype, type MarkingType, type MarkingTypesFilter, type MarkingsCondition, type MarkingsConditionModification, type MediaItemRid, type MediaReferencePropertyType, type MediaSetBranchRid, type MediaSetRid, type MediaSetViewLocator, type MediaSetViewRid, type MediaSourceRid, type MediaSourceRid_datasetRid, type MediaSourceRid_mediaSetRid, type MissingAffectedObjectTypesForFunctionRule, type ModifyInterfaceRule, type ModifyInterfaceRuleModification, type ModifyObjectRule, type ModifyObjectRuleModification, type ModuleRid, type MultipassUserFilter, type MultipassUserFilterModification, type MultipassUserFilterModification_groupFilter, type MultipassUserFilter_groupFilter, type MultipassUserInGroupFilter, type MultipassUserInGroupFilterModification, type MustBeEmpty, type NestedStructFieldApiNameMapping, type NewObjectUrlTarget, type NewObjectUrlTargetModification, type NoRetentionPolicy, type NonExistentParametersUsedInParameterPrefillError, type NonNumericInternalInterpolation, type NonNumericSeriesValueMetadata, type NonNumericSeriesValueUnit, type NoneEntityProvenance, type NotAnalyzedAnalyzer, type NotCondition, type NotConditionModification, type NotepadReference, type NotepadRid, type NotificationRecipient, type NotificationResultTypeLink, type NotificationResultTypeLinkModification, type NotificationTemplateInputValue, type NotificationTemplateInputValueModification, type NotificationTemplateInputValueModification_actionTriggererValue, type NotificationTemplateInputValueModification_logicRuleValue, type NotificationTemplateInputValueModification_recipientValue, type NotificationTemplateInputValue_actionTriggererValue, type NotificationTemplateInputValue_logicRuleValue, type NotificationTemplateInputValue_recipientValue, type NumberFormatBase, type NumberFormatBasisPoint, type NumberFormatBillions, type NumberFormatCurrency, type NumberFormatCurrencyStyle, type NumberFormatCustomUnit, type NumberFormatDuration, type NumberFormatMillions, type NumberFormatNotation, type NumberFormatOrdinal, type NumberFormatPerMille, type NumberFormatPercentage, type NumberFormatPrePostFix, type NumberFormatThousands, type NumberFormatUnit, type NumberFormatter, type NumberFormatter_base, type NumberFormatter_basisPoint, type NumberFormatter_billions, type NumberFormatter_currency, type NumberFormatter_customUnit, type NumberFormatter_duration, type NumberFormatter_millions, type NumberFormatter_ordinal, type NumberFormatter_perMille, type NumberFormatter_percentage, type NumberFormatter_prePost, type NumberFormatter_thousands, type NumberFormatter_unit, type NumberRoundingMode, type NumericInternalInterpolation, type NumericOrNonNumericSeriesValueMetadata, type NumericOrNonNumericSeriesValueMetadataV2, type NumericSeriesValueMetadata, type NumericSeriesValueUnit, type NumericSeriesValueUnit_customUnit, type NumericSeriesValueUnit_standardUnit, type ObjectDbRid, type ObjectDbSyncRid, type ObjectDisplayMetadata, type ObjectIdentifier, type ObjectMonitoringFrontendConsumer, type ObjectParameterPropertyValue, type ObjectParameterStructFieldValue, type ObjectParameterStructFieldValueModification, type ObjectParameterStructListFieldValue, type ObjectParameterStructListFieldValueModification, type ObjectQueryPrefill, type ObjectQueryPrefillModification, type ObjectQueryPropertyValue, type ObjectQueryPropertyValueModification, type ObjectRid, type ObjectSet, type ObjectSetFilter$1 as ObjectSetFilter, type ObjectSetRidPrefill, type ObjectSetRidPrefillModification, type ObjectSetSearchAround, type ObjectSetTransform, type ObjectSetTransform_propertyFilter, type ObjectSetTransform_searchAround, type ObjectType, type ObjectTypeApiName, type ObjectTypeCreatedEvent, type ObjectTypeDatasetDatasource, type ObjectTypeDatasetDatasourceV2, type ObjectTypeDatasetDatasourceV3, type ObjectTypeDatasource, type ObjectTypeDatasourceDefinition, type ObjectTypeDatasourceDefinition_dataset, type ObjectTypeDatasourceDefinition_datasetV2, type ObjectTypeDatasourceDefinition_datasetV3, type ObjectTypeDatasourceDefinition_derived, type ObjectTypeDatasourceDefinition_direct, type ObjectTypeDatasourceDefinition_editsOnly, type ObjectTypeDatasourceDefinition_geotimeSeries, type ObjectTypeDatasourceDefinition_media, type ObjectTypeDatasourceDefinition_mediaSetView, type ObjectTypeDatasourceDefinition_restrictedStream, type ObjectTypeDatasourceDefinition_restrictedView, type ObjectTypeDatasourceDefinition_restrictedViewV2, type ObjectTypeDatasourceDefinition_stream, type ObjectTypeDatasourceDefinition_streamV2, type ObjectTypeDatasourceDefinition_table, type ObjectTypeDatasourceDefinition_timeSeries, type ObjectTypeDeletedEvent, type ObjectTypeDerivedPropertiesDatasource, type ObjectTypeDirectDatasource, type ObjectTypeDisplayMetadata, type ObjectTypeEditsOnlyDatasource, type ObjectTypeEmbeddingInput, type ObjectTypeError, type ObjectTypeError_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, type ObjectTypeFieldApiName$1 as ObjectTypeFieldApiName, type ObjectTypeGeotimeSeriesDatasource, type ObjectTypeId, type ObjectTypeIdentifier, type ObjectTypeIdentifier_objectTypeId, type ObjectTypeIdentifier_objectTypeRid, type ObjectTypeIdsAndInterfaceTypeRids, type ObjectTypeInputManagerProperties, type ObjectTypeInputManagerRid, type ObjectTypeInputSpec, type ObjectTypeInterfaceImplementation, type ObjectTypeLoadRequest, type ObjectTypeLoadResponse, type ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypeRestrictedStreamDatasource, type ObjectTypeRestrictedViewDatasource, type ObjectTypeRestrictedViewDatasourceV2, type ObjectTypeRid, type ObjectTypeRidsAndInterfaceTypeRids, type ObjectTypeRidsNotFoundError, type ObjectTypeStatus, type ObjectTypeStatus_active, type ObjectTypeStatus_deprecated, type ObjectTypeStatus_endorsed, type ObjectTypeStatus_example, type ObjectTypeStatus_experimental, type ObjectTypeStreamDatasource, type ObjectTypeStreamDatasourceV2, type ObjectTypeTableDatasource, type ObjectTypeTimeSeriesDatasource, type ObjectTypeTraitPropertySpecification, type ObjectTypeTraits, type ObjectTypeUpdatedEvent, type ObjectTypeWithRestrictedViewWithGpsPolicyColumnsNotMappedAsPropertyTypes, type ObjectTypesAlreadyExistError, type ObjectTypesNotFoundError, type ObjectTypesSummary, type ObjectsPlatformRids, type OneOfDecimalTypeConstraint$1 as OneOfDecimalTypeConstraint, type OneOfDoubleTypeConstraint$1 as OneOfDoubleTypeConstraint, type OneOfFloatTypeConstraint$1 as OneOfFloatTypeConstraint, type OneOfIntegerTypeConstraint$1 as OneOfIntegerTypeConstraint, type OneOfLongTypeConstraint$1 as OneOfLongTypeConstraint, type OneOfShortTypeConstraint$1 as OneOfShortTypeConstraint, type OneOfStringTypeConstraint$1 as OneOfStringTypeConstraint, type OneToManyLinkCardinalityHint, type OneToManyLinkDefinition, type OntologyActionTypeLoadRequest, type OntologyApiName, type OntologyBranch, type OntologyBranchRid, type OntologyBulkLoadEntitiesByDatasourcesRequest, type OntologyBulkLoadEntitiesByDatasourcesResponse, type OntologyBulkLoadEntitiesRequest, type OntologyBulkLoadEntitiesResponse, type OntologyDatasetType, type OntologyEntitiesUsedInTypeGroup, type OntologyInformation, type OntologyIr, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, type OntologyIrActionLogValue, type OntologyIrActionLogValue_actionRid, type OntologyIrActionLogValue_actionTimestamp, type OntologyIrActionLogValue_actionTypeRid, type OntologyIrActionLogValue_actionTypeVersion, type OntologyIrActionLogValue_actionUser, type OntologyIrActionLogValue_allEditedObjects, type OntologyIrActionLogValue_asynchronousWebhookInstanceIds, type OntologyIrActionLogValue_editedObjects, type OntologyIrActionLogValue_interfaceParameterPropertyValue, type OntologyIrActionLogValue_isReverted, type OntologyIrActionLogValue_notificationIds, type OntologyIrActionLogValue_notifiedUsers, type OntologyIrActionLogValue_objectParameterPropertyValue, type OntologyIrActionLogValue_parameterValue, type OntologyIrActionLogValue_revertTimestamp, type OntologyIrActionLogValue_revertUser, type OntologyIrActionLogValue_scenarioRid, type OntologyIrActionLogValue_summary, type OntologyIrActionLogValue_synchronousWebhookInstanceId, type OntologyIrActionLogic, type OntologyIrActionNotification, type OntologyIrActionNotificationBody, type OntologyIrActionNotificationBodyFunctionExecution, type OntologyIrActionNotificationBody_functionGenerated, type OntologyIrActionNotificationBody_templateNotification, type OntologyIrActionNotificationRecipients, type OntologyIrActionNotificationRecipients_functionGenerated, type OntologyIrActionNotificationRecipients_parameter, type OntologyIrActionType, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeMetadata, type OntologyIrActionTypeStatus, type OntologyIrActionTypeStatus_active, type OntologyIrActionTypeStatus_deprecated, type OntologyIrActionTypeStatus_example, type OntologyIrActionTypeStatus_experimental, type OntologyIrActionValidation, type OntologyIrActionWebhooks, type OntologyIrActionsObjectSet, type OntologyIrAddInterfaceLinkRule, type OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, type OntologyIrAllEditedObjectsFieldMapping, type OntologyIrAllowedParameterValues, type OntologyIrAllowedParameterValues_attachment, type OntologyIrAllowedParameterValues_boolean, type OntologyIrAllowedParameterValues_cbacMarking, type OntologyIrAllowedParameterValues_datetime, type OntologyIrAllowedParameterValues_geohash, type OntologyIrAllowedParameterValues_geoshape, type OntologyIrAllowedParameterValues_geotimeSeriesReference, type OntologyIrAllowedParameterValues_interfaceObjectQuery, type OntologyIrAllowedParameterValues_interfacePropertyValue, type OntologyIrAllowedParameterValues_mandatoryMarking, type OntologyIrAllowedParameterValues_mediaReference, type OntologyIrAllowedParameterValues_multipassGroup, type OntologyIrAllowedParameterValues_objectList, type OntologyIrAllowedParameterValues_objectPropertyValue, type OntologyIrAllowedParameterValues_objectQuery, type OntologyIrAllowedParameterValues_objectSetRid, type OntologyIrAllowedParameterValues_objectTypeReference, type OntologyIrAllowedParameterValues_oneOf, type OntologyIrAllowedParameterValues_range, type OntologyIrAllowedParameterValues_redacted, type OntologyIrAllowedParameterValues_text, type OntologyIrAllowedParameterValues_timeSeriesReference, type OntologyIrAllowedParameterValues_user, type OntologyIrAllowedStructFieldValues, type OntologyIrAllowedStructFieldValuesOverride, type OntologyIrAllowedStructFieldValues_boolean, type OntologyIrAllowedStructFieldValues_datetime, type OntologyIrAllowedStructFieldValues_geohash, type OntologyIrAllowedStructFieldValues_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType$1 as OntologyIrArrayPropertyType, type OntologyIrAsynchronousPostWritebackWebhook, type OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput, type OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput, type OntologyIrBaseParameterType, type OntologyIrBaseParameterType_decimal, type OntologyIrBaseParameterType_decimalList, type OntologyIrBaseParameterType_interfaceReference, type OntologyIrBaseParameterType_interfaceReferenceList, type OntologyIrBaseParameterType_objectReference, type OntologyIrBaseParameterType_objectReferenceList, type OntologyIrBaseParameterType_objectSetRid, type OntologyIrBaseParameterType_struct, type OntologyIrBaseParameterType_structList, type OntologyIrBaseParameterType_timestamp, type OntologyIrBaseParameterType_timestampList, type OntologyIrBasicEmailBody, type OntologyIrBatchedFunctionRule, type OntologyIrCarbonWorkspaceComponentUrlTarget, type OntologyIrCarbonWorkspaceComponentUrlTarget_rid, type OntologyIrCarbonWorkspaceUrlTarget, type OntologyIrCipherTextPropertyType, type OntologyIrComparisonCondition, type OntologyIrCondition, type OntologyIrConditionValue, type OntologyIrConditionValue_interfaceParameterPropertyValue, type OntologyIrConditionValue_objectParameterPropertyValue, type OntologyIrConditionValue_parameterId, type OntologyIrConditionValue_parameterLength, type OntologyIrConditionValue_staticValue, type OntologyIrConditionValue_userProperty, type OntologyIrCondition_and, type OntologyIrCondition_comparison, type OntologyIrCondition_markings, type OntologyIrCondition_not, type OntologyIrCondition_or, type OntologyIrCondition_redacted, type OntologyIrCondition_regex, type OntologyIrCondition_true, type OntologyIrConditionalOverride, type OntologyIrConditionalValidationBlock, type OntologyIrDateRangeValue, type OntologyIrDateRangeValue_fixed, type OntologyIrDateRangeValue_now, type OntologyIrDateRangeValue_relative, type OntologyIrDeleteInterfaceLinkRule, type OntologyIrDeprecatedActionTypeStatus, type OntologyIrDeprecatedInterfaceTypeStatus, type OntologyIrDeprecatedLinkTypeStatus, type OntologyIrDeprecatedObjectTypeStatus, type OntologyIrDeprecatedPropertyTypeStatus, type OntologyIrEmailBody, type OntologyIrEmailBody_basic, type OntologyIrEventMetadata, type OntologyIrFormContent, type OntologyIrFormContent_parameterId, type OntologyIrFormContent_sectionId, type OntologyIrFunctionExecutionWithRecipientInput, type OntologyIrFunctionExecutionWithRecipientInput_logicRuleValue, type OntologyIrFunctionExecutionWithRecipientInput_recipient, type OntologyIrFunctionGeneratedActionNotificationRecipients, type OntologyIrFunctionGeneratedNotificationBody, type OntologyIrFunctionRule, type OntologyIrInlineActionType, type OntologyIrInterfaceLinkType$1 as OntologyIrInterfaceLinkType, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrInterfaceTypeStatus, type OntologyIrInterfaceTypeStatus_active, type OntologyIrInterfaceTypeStatus_deprecated, type OntologyIrInterfaceTypeStatus_example, type OntologyIrInterfaceTypeStatus_experimental, type OntologyIrIntermediaryLinkDefinition, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, type OntologyIrLinkDefinition_manyToMany, type OntologyIrLinkDefinition_oneToMany, type OntologyIrLinkType, type OntologyIrLinkTypeBlockDataV2, type OntologyIrLinkTypeStatus, type OntologyIrLinkTypeStatus_active, type OntologyIrLinkTypeStatus_deprecated, type OntologyIrLinkTypeStatus_example, type OntologyIrLinkTypeStatus_experimental, type OntologyIrLinkedEntityTypeId, type OntologyIrLinkedEntityTypeId_interfaceType, type OntologyIrLinkedEntityTypeId_objectType, type OntologyIrLogicRule, type OntologyIrLogicRuleValue, type OntologyIrLogicRuleValue_currentTime, type OntologyIrLogicRuleValue_currentUser, type OntologyIrLogicRuleValue_interfaceParameterPropertyValue, type OntologyIrLogicRuleValue_objectParameterPropertyValue, type OntologyIrLogicRuleValue_parameterId, type OntologyIrLogicRuleValue_staticValue, type OntologyIrLogicRuleValue_synchronousWebhookOutput, type OntologyIrLogicRuleValue_uniqueIdentifier, type OntologyIrLogicRule_addInterfaceRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarkingsCondition, type OntologyIrMediaSourceRid, type OntologyIrMediaSourceRid_datasetRid, type OntologyIrMediaSourceRid_mediaSetRid, type OntologyIrModifyInterfaceRule, type OntologyIrModifyObjectRule, type OntologyIrMultipassUserFilter, type OntologyIrMultipassUserFilter_groupFilter, type OntologyIrMultipassUserInGroupFilter, type OntologyIrNewObjectUrlTarget, type OntologyIrNotCondition, type OntologyIrNotificationResultTypeLink, type OntologyIrNotificationTemplateInputValue, type OntologyIrNotificationTemplateInputValue_actionTriggererValue, type OntologyIrNotificationTemplateInputValue_logicRuleValue, type OntologyIrNotificationTemplateInputValue_recipientValue, type OntologyIrObjectParameterStructFieldValue, type OntologyIrObjectParameterStructListFieldValue, type OntologyIrObjectQueryPrefill, type OntologyIrObjectQueryPropertyValue, type OntologyIrObjectSetRidPrefill, type OntologyIrObjectType, type OntologyIrObjectTypeBlockDataV2, type OntologyIrObjectTypeDatasetDatasource, type OntologyIrObjectTypeDatasetDatasourceV2, type OntologyIrObjectTypeDatasetDatasourceV3, type OntologyIrObjectTypeDatasource, type OntologyIrObjectTypeDatasourceDefinition, type OntologyIrObjectTypeDatasourceDefinition_datasetV2, type OntologyIrObjectTypeDatasourceDefinition_datasetV3, type OntologyIrObjectTypeDatasourceDefinition_derived, type OntologyIrObjectTypeDatasourceDefinition_direct, type OntologyIrObjectTypeDatasourceDefinition_editsOnly, type OntologyIrObjectTypeDatasourceDefinition_geotimeSeries, type OntologyIrObjectTypeDatasourceDefinition_mediaSetView, type OntologyIrObjectTypeDatasourceDefinition_restrictedStream, type OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2, type OntologyIrObjectTypeDatasourceDefinition_streamV2, type OntologyIrObjectTypeDatasourceDefinition_table, type OntologyIrObjectTypeDatasourceDefinition_timeSeries, type OntologyIrObjectTypeDerivedPropertiesDatasource, type OntologyIrObjectTypeDirectDatasource, type OntologyIrObjectTypeEditsOnlyDatasource, type OntologyIrObjectTypeGeotimeSeriesDatasource, type OntologyIrObjectTypeInterfaceImplementation, type OntologyIrObjectTypeMediaDatasource, type OntologyIrObjectTypeMediaSetViewDatasource, type OntologyIrObjectTypeRestrictedStreamDatasource, type OntologyIrObjectTypeRestrictedViewDatasource, type OntologyIrObjectTypeRestrictedViewDatasourceV2, type OntologyIrObjectTypeStatus, type OntologyIrObjectTypeStatus_active, type OntologyIrObjectTypeStatus_deprecated, type OntologyIrObjectTypeStatus_endorsed, type OntologyIrObjectTypeStatus_example, type OntologyIrObjectTypeStatus_experimental, type OntologyIrObjectTypeStreamDatasource, type OntologyIrObjectTypeStreamDatasourceV2, type OntologyIrObjectTypeTableDatasource, type OntologyIrObjectTypeTimeSeriesDatasource, type OntologyIrObjectTypeTraits, type OntologyIrOneToManyLinkDefinition, type OntologyIrOntologyBlockDataV2, type OntologyIrOrCondition, type OntologyIrPackagedValueType, type OntologyIrPackagedValueTypeMetadata, type OntologyIrParameter, type OntologyIrParameterActionNotificationRecipients, type OntologyIrParameterCbacConstraint, type OntologyIrParameterCbacMarking, type OntologyIrParameterCbacMarkingOrEmpty, type OntologyIrParameterCbacMarkingOrEmpty_cbacMarking, type OntologyIrParameterCbacMarkingOrEmpty_empty, type OntologyIrParameterDateRangeValue, type OntologyIrParameterDateTimeRange, type OntologyIrParameterDateTimeRangeOrEmpty, type OntologyIrParameterDateTimeRangeOrEmpty_datetime, type OntologyIrParameterDateTimeRangeOrEmpty_empty, type OntologyIrParameterDisplayMetadata, type OntologyIrParameterMultipassUser, type OntologyIrParameterMultipassUserOrEmpty, type OntologyIrParameterMultipassUserOrEmpty_empty, type OntologyIrParameterMultipassUserOrEmpty_user, type OntologyIrParameterObjectPropertyValue, type OntologyIrParameterObjectPropertyValueOrEmpty, type OntologyIrParameterObjectPropertyValueOrEmpty_empty, type OntologyIrParameterObjectPropertyValueOrEmpty_objectPropertyValue, type OntologyIrParameterObjectQuery, type OntologyIrParameterObjectQueryOrEmpty, type OntologyIrParameterObjectQueryOrEmpty_empty, type OntologyIrParameterObjectQueryOrEmpty_objectQuery, type OntologyIrParameterObjectTypeReference, type OntologyIrParameterObjectTypeReferenceOrEmpty, type OntologyIrParameterObjectTypeReferenceOrEmpty_empty, type OntologyIrParameterObjectTypeReferenceOrEmpty_objectTypeReference, type OntologyIrParameterPrefill, type OntologyIrParameterPrefillOverride, type OntologyIrParameterPrefill_interfaceParameterPropertyValue, type OntologyIrParameterPrefill_objectParameterPropertyValue, type OntologyIrParameterPrefill_objectQueryPrefill, type OntologyIrParameterPrefill_objectQueryPropertyValue, type OntologyIrParameterPrefill_objectSetRidPrefill, type OntologyIrParameterPrefill_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, type OntologyIrParameterValidation, type OntologyIrParameterValidationBlock, type OntologyIrParameterValidationBlockOverride, type OntologyIrParameterValidationBlockOverride_allowedValues, type OntologyIrParameterValidationBlockOverride_parameterRequired, type OntologyIrParameterValidationBlockOverride_prefill, type OntologyIrParameterValidationBlockOverride_visibility, type OntologyIrParameterValidationDisplayMetadata, type OntologyIrParameterValueOneOf, type OntologyIrParameterValueOneOfOrEmpty, type OntologyIrParameterValueOneOfOrEmpty_empty, type OntologyIrParameterValueOneOfOrEmpty_oneOf, type OntologyIrPropertySecurityGroup, type OntologyIrPropertySecurityGroups, type OntologyIrPropertyType, type OntologyIrPropertyTypeStatus, type OntologyIrPropertyTypeStatus_active, type OntologyIrPropertyTypeStatus_deprecated, type OntologyIrPropertyTypeStatus_example, type OntologyIrPropertyTypeStatus_experimental, type OntologyIrQualifiedSeriesIdPropertyValue, type OntologyIrRegexCondition, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, type OntologyIrSection, type OntologyIrSectionConditionalOverride, type OntologyIrSectionDisplayBlock, type OntologyIrSecurityGroupAndCondition, type OntologyIrSecurityGroupComparisonCondition, type OntologyIrSecurityGroupComparisonValue, type OntologyIrSecurityGroupComparisonValue_constant, type OntologyIrSecurityGroupComparisonValue_property, type OntologyIrSecurityGroupComparisonValue_userProperty, type OntologyIrSecurityGroupGranularCondition, type OntologyIrSecurityGroupGranularCondition_and, type OntologyIrSecurityGroupGranularCondition_comparison, type OntologyIrSecurityGroupGranularCondition_markings, type OntologyIrSecurityGroupGranularCondition_not, type OntologyIrSecurityGroupGranularCondition_or, type OntologyIrSecurityGroupGranularCondition_true, type OntologyIrSecurityGroupGranularPolicy, type OntologyIrSecurityGroupGranularSecurityDefinition, type OntologyIrSecurityGroupMarkingsCondition, type OntologyIrSecurityGroupNotCondition, type OntologyIrSecurityGroupOrCondition, type OntologyIrSecurityGroupSecurityDefinition, type OntologyIrSecurityGroupSecurityDefinition_granular, type OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly, type OntologyIrSensorTrait, type OntologyIrSharedPropertyType, type OntologyIrSharedPropertyTypeBlockDataV2, type OntologyIrShortBody, type OntologyIrShortBody_basic, type OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, type OntologyIrStructFieldPrefill, type OntologyIrStructFieldPrefillOverride, type OntologyIrStructFieldPrefill_objectParameterStructFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructListFieldValue, type OntologyIrStructFieldType, type OntologyIrStructFieldValidation, type OntologyIrStructFieldValidationBlock, type OntologyIrStructFieldValidationBlockOverride, type OntologyIrStructFieldValidationBlockOverride_allowedValues, type OntologyIrStructFieldValidationBlockOverride_parameterRequired, type OntologyIrStructFieldValidationBlockOverride_prefill, type OntologyIrStructFieldValidationBlockOverride_visibility, type OntologyIrStructFieldValidationDisplayMetadata, type OntologyIrStructPropertyType$1 as OntologyIrStructPropertyType, type OntologyIrStructuredShortBody, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, type OntologyIrTimeSeriesMetadata, type OntologyIrType, type OntologyIrType_array, type OntologyIrType_attachment, type OntologyIrType_boolean, type OntologyIrType_byte, type OntologyIrType_cipherText, type OntologyIrType_date, type OntologyIrType_decimal, type OntologyIrType_double, type OntologyIrType_experimentalTimeDependentV1, type OntologyIrType_float, type OntologyIrType_geohash, type OntologyIrType_geoshape, type OntologyIrType_geotimeSeriesReference, type OntologyIrType_integer, type OntologyIrType_long, type OntologyIrType_marking, type OntologyIrType_mediaReference, type OntologyIrType_short, type OntologyIrType_string, type OntologyIrType_struct, type OntologyIrType_timestamp, type OntologyIrType_vector, type OntologyIrUrlTarget, type OntologyIrUrlTarget_carbonWorkspace, type OntologyIrUrlTarget_logicRuleValue, type OntologyIrUrlTarget_newObject, type OntologyIrUrlTarget_relativeUrlString, type OntologyIrUrlTarget_rid, type OntologyIrValidationRule, type OntologyIrValueReferenceSource, type OntologyIrValueReferenceSource_propertyTypeRid, type OntologyIrValueTypeBlockData, type OntologyIrValueTypeBlockDataEntry, type OntologyIrWorkflowObjectTypeTraitImpl, type OntologyLoadAllEntitiesRequest, type OntologyLoadAllRequest, type OntologyLoadDatasourcesRequest, type OntologyLoadDatasourcesResponse, type OntologyLoadEntitiesRequest, type OntologyLoadEntitiesResponse, type OntologyLoadRequest, type OntologyLoadResponse, type OntologyMetadataValidationError, type OntologyMetadataValidationError_actionType, type OntologyMetadataValidationError_interfaceType, type OntologyMetadataValidationError_linkType, type OntologyMetadataValidationError_objectType, type OntologyMetadataValidationError_ruleSet, type OntologyMetadataValidationError_sharedPropertyType, type OntologyMetadataValidationError_typeGroup, type OntologyMetadataValidationError_workflow, type OntologyModificationEvent, type OntologyModificationEvent_actionTypeCreated, type OntologyModificationEvent_actionTypeDeleted, type OntologyModificationEvent_actionTypeUpdated, type OntologyModificationEvent_branchClosed, type OntologyModificationEvent_branchDeleted, type OntologyModificationEvent_branchMerged, type OntologyModificationEvent_interfaceTypeCreated, type OntologyModificationEvent_interfaceTypeDeleted, type OntologyModificationEvent_interfaceTypeUpdated, type OntologyModificationEvent_linkTypeCreated, type OntologyModificationEvent_linkTypeDeleted, type OntologyModificationEvent_linkTypeUpdated, type OntologyModificationEvent_objectTypeCreated, type OntologyModificationEvent_objectTypeDeleted, type OntologyModificationEvent_objectTypeUpdated, type OntologyModificationEvent_sharedPropertyTypeCreated, type OntologyModificationEvent_sharedPropertyTypeDeleted, type OntologyModificationEvent_sharedPropertyTypeUpdated, type OntologyModifyRequest, type OntologyModifyResponse, type OntologyPackageRid, type OntologyProposalIdentifier, type OntologyProposalIdentifier_ontologyVersion, type OntologyProposalRid, type OntologyRid, type OntologyRidAndBranch, type OntologyRidsForEntitiesRequest, type OntologyRidsForEntitiesResponse, type OntologySparkInputManagerRid, type OntologySparkInputProperties, type OntologyVersion, type OrCondition, type OrConditionModification, type OrganizationMarkingId, type OrganizationRid, type OrganizationRidsForOntologyResponse, type OtherValueAllowed, type PackagedEntityRid, type PackagedEntityRid_actionTypeRid, type PackagedEntityRid_interfaceTypeRid, type PackagedEntityRid_linkTypeRid, type PackagedEntityRid_objectTypeRid, type PackagedEntityRid_sharedPropertyTypeRid, type Parameter, type ParameterActionNotificationRecipients, type ParameterActionNotificationRecipientsModification, type ParameterAttachment, type ParameterAttachmentOrEmpty, type ParameterAttachmentOrEmpty_attachment, type ParameterAttachmentOrEmpty_empty, type ParameterBoolean, type ParameterBooleanOrEmpty, type ParameterBooleanOrEmpty_boolean, type ParameterBooleanOrEmpty_empty, type ParameterCbacConstraint, type ParameterCbacConstraintModification, type ParameterCbacMarking, type ParameterCbacMarkingModification, type ParameterCbacMarkingOrEmpty, type ParameterCbacMarkingOrEmptyModification, type ParameterCbacMarkingOrEmptyModification_cbacMarking, type ParameterCbacMarkingOrEmptyModification_empty, type ParameterCbacMarkingOrEmpty_cbacMarking, type ParameterCbacMarkingOrEmpty_empty, type ParameterDateRangeValue, type ParameterDateRangeValueModification, type ParameterDateTimeRange, type ParameterDateTimeRangeModification, type ParameterDateTimeRangeOrEmpty, type ParameterDateTimeRangeOrEmptyModification, type ParameterDateTimeRangeOrEmptyModification_datetime, type ParameterDateTimeRangeOrEmptyModification_empty, type ParameterDateTimeRangeOrEmpty_datetime, type ParameterDateTimeRangeOrEmpty_empty, type ParameterDisplayMetadata, type ParameterFreeText, type ParameterFreeTextOrEmpty, type ParameterFreeTextOrEmpty_empty, type ParameterFreeTextOrEmpty_text, type ParameterGeohash, type ParameterGeohashOrEmpty, type ParameterGeohashOrEmpty_empty, type ParameterGeohashOrEmpty_geohash, type ParameterGeoshape, type ParameterGeoshapeOrEmpty, type ParameterGeoshapeOrEmpty_empty, type ParameterGeoshapeOrEmpty_geoshape, type ParameterGeotimeSeriesReference, type ParameterGeotimeSeriesReferenceOrEmpty, type ParameterGeotimeSeriesReferenceOrEmpty_empty, type ParameterGeotimeSeriesReferenceOrEmpty_geotimeSeries, type ParameterId, type ParameterInterfaceObjectQuery, type ParameterInterfaceObjectQueryModification, type ParameterInterfaceObjectQueryOrEmpty, type ParameterInterfaceObjectQueryOrEmptyModification, type ParameterInterfaceObjectQueryOrEmptyModification_empty, type ParameterInterfaceObjectQueryOrEmptyModification_interfaceObjectQuery, type ParameterInterfaceObjectQueryOrEmpty_empty, type ParameterInterfaceObjectQueryOrEmpty_interfaceObjectQuery, type ParameterInterfacePropertyValueOrEmpty, type ParameterInterfacePropertyValueOrEmptyModification, type ParameterInterfacePropertyValueOrEmptyModification_empty, type ParameterInterfacePropertyValueOrEmptyModification_unrestricted, type ParameterInterfacePropertyValueOrEmpty_empty, type ParameterInterfacePropertyValueOrEmpty_unrestricted, type ParameterLength, type ParameterLength_parameterId, type ParameterMandatoryMarking, type ParameterMandatoryMarkingOrEmpty, type ParameterMandatoryMarkingOrEmpty_empty, type ParameterMandatoryMarkingOrEmpty_mandatoryMarking, type ParameterMediaReference, type ParameterMediaReferenceOrEmpty, type ParameterMediaReferenceOrEmpty_empty, type ParameterMediaReferenceOrEmpty_mediaReference, type ParameterMultipassGroup, type ParameterMultipassGroupOrEmpty, type ParameterMultipassGroupOrEmpty_empty, type ParameterMultipassGroupOrEmpty_group, type ParameterMultipassUser, type ParameterMultipassUserModification, type ParameterMultipassUserOrEmpty, type ParameterMultipassUserOrEmptyModification, type ParameterMultipassUserOrEmptyModification_empty, type ParameterMultipassUserOrEmptyModification_user, type ParameterMultipassUserOrEmpty_empty, type ParameterMultipassUserOrEmpty_user, type ParameterObjectList, type ParameterObjectListOrEmpty, type ParameterObjectListOrEmpty_empty, type ParameterObjectListOrEmpty_objectList, type ParameterObjectPropertyValue, type ParameterObjectPropertyValueModification, type ParameterObjectPropertyValueOrEmpty, type ParameterObjectPropertyValueOrEmptyModification, type ParameterObjectPropertyValueOrEmptyModification_empty, type ParameterObjectPropertyValueOrEmptyModification_objectPropertyValue, type ParameterObjectPropertyValueOrEmpty_empty, type ParameterObjectPropertyValueOrEmpty_objectPropertyValue, type ParameterObjectQuery, type ParameterObjectQueryModification, type ParameterObjectQueryOrEmpty, type ParameterObjectQueryOrEmptyModification, type ParameterObjectQueryOrEmptyModification_empty, type ParameterObjectQueryOrEmptyModification_objectQuery, type ParameterObjectQueryOrEmpty_empty, type ParameterObjectQueryOrEmpty_objectQuery, type ParameterObjectSetRid, type ParameterObjectSetRidOrEmpty, type ParameterObjectSetRidOrEmpty_empty, type ParameterObjectSetRidOrEmpty_objectSetRid, type ParameterObjectTypeReference, type ParameterObjectTypeReferenceModification, type ParameterObjectTypeReferenceOrEmpty, type ParameterObjectTypeReferenceOrEmptyModification, type ParameterObjectTypeReferenceOrEmptyModification_empty, type ParameterObjectTypeReferenceOrEmptyModification_objectTypeReference, type ParameterObjectTypeReferenceOrEmpty_empty, type ParameterObjectTypeReferenceOrEmpty_objectTypeReference, type ParameterPrefill, type ParameterPrefillModification, type ParameterPrefillModification_interfaceParameterPropertyValue, type ParameterPrefillModification_objectParameterPropertyValue, type ParameterPrefillModification_objectQueryPrefill, type ParameterPrefillModification_objectQueryPropertyValue, type ParameterPrefillModification_objectSetRidPrefill, type ParameterPrefillModification_redacted, type ParameterPrefillModification_staticObject, type ParameterPrefillModification_staticValue, type ParameterPrefillOverride, type ParameterPrefillOverrideModification, type ParameterPrefill_interfaceParameterPropertyValue, type ParameterPrefill_objectParameterPropertyValue, type ParameterPrefill_objectQueryPrefill, type ParameterPrefill_objectQueryPropertyValue, type ParameterPrefill_objectSetRidPrefill, type ParameterPrefill_redacted, type ParameterPrefill_staticObject, type ParameterPrefill_staticValue, type ParameterRange, type ParameterRangeModification, type ParameterRangeOrEmpty, type ParameterRangeOrEmptyModification, type ParameterRangeOrEmptyModification_empty, type ParameterRangeOrEmptyModification_range, type ParameterRangeOrEmpty_empty, type ParameterRangeOrEmpty_range, type ParameterRangeValue, type ParameterRangeValueModification, type ParameterRenderHint, type ParameterRequiredConfiguration, type ParameterRequiredOverride, type ParameterRid, type ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, type ParameterValidation, type ParameterValidationBlock, type ParameterValidationBlockModification, type ParameterValidationBlockOverride, type ParameterValidationBlockOverrideModification, type ParameterValidationBlockOverrideModification_allowedValues, type ParameterValidationBlockOverrideModification_parameterRequired, type ParameterValidationBlockOverrideModification_prefill, type ParameterValidationBlockOverrideModification_visibility, type ParameterValidationBlockOverride_allowedValues, type ParameterValidationBlockOverride_parameterRequired, type ParameterValidationBlockOverride_prefill, type ParameterValidationBlockOverride_visibility, type ParameterValidationDisplayMetadata, type ParameterValidationDisplayMetadataModification, type ParameterValidationModification, type ParameterValidationNotFoundError, type ParameterValidationReferencesLaterParametersError, type ParameterValueOneOf, type ParameterValueOneOfOrEmpty, type ParameterValueOneOfOrEmpty_empty, type ParameterValueOneOfOrEmpty_oneOf, type ParametersDoNotMatchParameterOrderingError, type PartialObjectType, type PartialObjectTypeCreateRequest, type PartialObjectTypeDeleteRequest, type PartialObjectTypeModifyRequest, type PartialObjectTypeModifyRequest_create, type PartialObjectTypeModifyRequest_delete, type PartialObjectTypeModifyRequest_update, type PartialObjectTypeUpdateRequest, type PartialObjectTypeWithoutRids, type PatchBackupInitializationConfigurationSourceDoesNotExistError, type PolicyVersion, type PrePostFix, type PrincipalId, type PropertiesReferenceDuplicateColumnNameWrapper, type Property, type PropertyId, type PropertyRenderHint, type PropertySecurityGroup, type PropertySecurityGroupModification, type PropertySecurityGroupRid, type PropertySecurityGroups, type PropertySecurityGroupsModification, type PropertyType, type PropertyTypeDataConstraints, type PropertyTypeDataConstraintsWrapper, type PropertyTypeDataConstraints_array, type PropertyTypeDataConstraints_boolean, type PropertyTypeDataConstraints_date, type PropertyTypeDataConstraints_decimal, type PropertyTypeDataConstraints_double, type PropertyTypeDataConstraints_float, type PropertyTypeDataConstraints_integer, type PropertyTypeDataConstraints_long, type PropertyTypeDataConstraints_short, type PropertyTypeDataConstraints_string, type PropertyTypeDataConstraints_struct, type PropertyTypeDataConstraints_timestamp, type PropertyTypeDataValue, type PropertyTypeDataValue_array, type PropertyTypeDataValue_boolean, type PropertyTypeDataValue_byte, type PropertyTypeDataValue_date, type PropertyTypeDataValue_decimal, type PropertyTypeDataValue_double, type PropertyTypeDataValue_float, type PropertyTypeDataValue_integer, type PropertyTypeDataValue_long, type PropertyTypeDataValue_short, type PropertyTypeDataValue_string, type PropertyTypeDataValue_timestamp, type PropertyTypeDisplayMetadata, type PropertyTypeId, type PropertyTypeIdentifier, type PropertyTypeIdentifier_id, type PropertyTypeIdentifier_rid, type PropertyTypeLocator, type PropertyTypeMappingInfo, type PropertyTypeMappingInfo_column, type PropertyTypeMappingInfo_editOnly, type PropertyTypeMappingInfo_struct, type PropertyTypeReference, type PropertyTypeReferenceOrNonNumericInternalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrNumericInternalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrStringConstant, type PropertyTypeReferenceOrStringConstant_constant, type PropertyTypeReferenceOrStringConstant_propertyType, type PropertyTypeReference_baseType, type PropertyTypeRid, type PropertyTypeStatus, type PropertyTypeStatus_active, type PropertyTypeStatus_deprecated, type PropertyTypeStatus_example, type PropertyTypeStatus_experimental, type PropertyWithoutRid, type PutActionTypeRequest, type PutParameterRequest, type PutParameterRequestModification, type PutSectionRequest, type PutSectionRequestModification, type QualifiedSeriesIdPropertyValue, type QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, type ReferencedLinkTypesInWorkflowNotFoundError, type ReferencedLinkTypesNotFoundError, type ReferencedObjectTypesChange, type ReferencedObjectTypesInWorkflowNotFoundError, type ReferencedObjectTypesNotFoundError, type RegexCondition, type RegexConditionModification, type RegexConstraint$1 as RegexConstraint, type RelationCardinality, type RelationDisplayMetadata, type RelationId, type RelationRid, type RelativeDateRangeTense, type RelativeDateRangeValue, type RenderingSettings, type RenderingSettings_allNotificationRenderingMustSucceed, type RenderingSettings_anyNotificationRenderingCanFail, type RestrictedViewRid, type RestrictedViewTransactionRid, type RetentionPolicy, type RetentionPolicy_none, type RetentionPolicy_time, type RidFormatter, type RidFormatter_allFoundryRids, type RidFormatter_objectsPlatformRids, type RidUrlTarget, type RidUrlTargetModification, type RoleId, type RoleSetId, type RuleSetBinding, type RuleSetError, type RuleSetError_ruleSetsAlreadyExist, type RuleSetError_ruleSetsNotFound, type RuleSetRid, type RuleSetsAlreadyExistError, type RuleSetsNotFoundError, type SafeArg, type SafeDatasourceIdentifier, type SafeDatasourceIdentifier_datasetRid, type SafeDatasourceIdentifier_derivedPropertiesSourceRid, type SafeDatasourceIdentifier_directSourceRid, type SafeDatasourceIdentifier_editsOnly, type SafeDatasourceIdentifier_geotimeSeriesIntegrationRid, type SafeDatasourceIdentifier_mediaSetView, type SafeDatasourceIdentifier_mediaSourceRids, type SafeDatasourceIdentifier_restrictedStream, type SafeDatasourceIdentifier_restrictedViewRid, type SafeDatasourceIdentifier_streamLocatorRid, type SafeDatasourceIdentifier_tableRid, type SafeDatasourceIdentifier_timeSeriesSyncRid, type SchemaMigrationRid, type SchemaVersion, type Section, type SectionConditionalOverride, type SectionConditionalOverrideModification, type SectionContent, type SectionContent_parameterId, type SectionDisplayBlock, type SectionDisplayBlockModification, type SectionDisplayBlockOverride, type SectionDisplayBlockOverride_visibility, type SectionDisplayMetadata, type SectionId, type SectionRid, type SectionStyle, type SectionStyle_box, type SectionStyle_minimal, type SectionValidationDisplayMetadata, type SectionVisibilityOverride, type SecurityGroupAndCondition, type SecurityGroupAndConditionModification, type SecurityGroupComparisonCondition, type SecurityGroupComparisonConditionModification, type SecurityGroupComparisonConstant, type SecurityGroupComparisonConstant_boolean, type SecurityGroupComparisonConstant_string, type SecurityGroupComparisonConstant_strings, type SecurityGroupComparisonOperator, type SecurityGroupComparisonUserProperty, type SecurityGroupComparisonUserProperty_groupIds, type SecurityGroupComparisonUserProperty_groupNames, type SecurityGroupComparisonUserProperty_userAttributes, type SecurityGroupComparisonUserProperty_userId, type SecurityGroupComparisonUserProperty_username, type SecurityGroupComparisonValue, type SecurityGroupComparisonValueModification, type SecurityGroupComparisonValueModification_constant, type SecurityGroupComparisonValueModification_property, type SecurityGroupComparisonValueModification_userProperty, type SecurityGroupComparisonValue_constant, type SecurityGroupComparisonValue_property, type SecurityGroupComparisonValue_userProperty, type SecurityGroupGranularCondition, type SecurityGroupGranularConditionModification, type SecurityGroupGranularConditionModification_and, type SecurityGroupGranularConditionModification_comparison, type SecurityGroupGranularConditionModification_markings, type SecurityGroupGranularConditionModification_not, type SecurityGroupGranularConditionModification_or, type SecurityGroupGranularConditionModification_true, type SecurityGroupGranularCondition_and, type SecurityGroupGranularCondition_comparison, type SecurityGroupGranularCondition_markings, type SecurityGroupGranularCondition_not, type SecurityGroupGranularCondition_or, type SecurityGroupGranularCondition_true, type SecurityGroupGranularPolicy, type SecurityGroupGranularPolicyModification, type SecurityGroupGranularSecurityDefinition, type SecurityGroupGranularSecurityDefinitionModification, type SecurityGroupGroupIdsUserProperty, type SecurityGroupGroupNamesUserProperty, type SecurityGroupMandatoryOnlySecurityDefinition, type SecurityGroupMandatoryOnlySecurityDefinitionModification, type SecurityGroupMandatoryPolicy, type SecurityGroupMarkingsCondition, type SecurityGroupMarkingsConditionModification, type SecurityGroupNotCondition, type SecurityGroupNotConditionModification, type SecurityGroupOrCondition, type SecurityGroupOrConditionModification, type SecurityGroupSecurityDefinition, type SecurityGroupSecurityDefinitionModification, type SecurityGroupSecurityDefinitionModification_granular, type SecurityGroupSecurityDefinitionModification_mandatoryOnly, type SecurityGroupSecurityDefinition_granular, type SecurityGroupSecurityDefinition_mandatoryOnly, type SecurityGroupTrueCondition, type SecurityGroupTrueConditionModification, type SecurityGroupUserAttributesUserProperty, type SecurityGroupUserIdUserProperty, type SecurityGroupUsernameUserProperty, type SemanticFunctionVersion, type SensorTrait, type SeriesIdPropertyValue, type SeriesValueMetadata, type SeriesValueMetadata_enum, type SeriesValueMetadata_numeric, type SeriesValueMetadata_numericOrNonNumeric, type SeriesValueMetadata_numericOrNonNumericV2, type SharedPropertiesSummary, type SharedPropertyType, type SharedPropertyTypeCreatedEvent, type SharedPropertyTypeDeletedEvent, type SharedPropertyTypeDisplayMetadata, type SharedPropertyTypeError, type SharedPropertyTypeError_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, type SharedPropertyTypeRid, type SharedPropertyTypeRidOrIdInRequest, type SharedPropertyTypeRidOrIdInRequest_idInRequest, type SharedPropertyTypeRidOrIdInRequest_rid, type SharedPropertyTypeSoftLinkType, type SharedPropertyTypeStructFieldLogicRuleValueModification, type SharedPropertyTypeUpdatedEvent, type SharedPropertyTypesAlreadyExistError, type SharedPropertyTypesNotFoundError, type ShortBody, type ShortBodyModification, type ShortBodyModification_basic, type ShortBody_basic, type ShortPropertyType, type ShortTypeDataConstraints$1 as ShortTypeDataConstraints, type ShortTypeDataConstraints_oneOf$1 as ShortTypeDataConstraints_oneOf, type ShortTypeDataConstraints_range$1 as ShortTypeDataConstraints_range, type ShortTypeDataValue$1 as ShortTypeDataValue, type ShortTypeRangeConstraint$1 as ShortTypeRangeConstraint, type SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamViewRid, type StringFormatter, type StringPropertyType, type StringTypeDataConstraints$1 as StringTypeDataConstraints, type StringTypeDataConstraints_isRid$1 as StringTypeDataConstraints_isRid, type StringTypeDataConstraints_isUuid$1 as StringTypeDataConstraints_isUuid, type StringTypeDataConstraints_length$1 as StringTypeDataConstraints_length, type StringTypeDataConstraints_oneOf$1 as StringTypeDataConstraints_oneOf, type StringTypeDataConstraints_regex$1 as StringTypeDataConstraints_regex, type StringTypeDataValue$1 as StringTypeDataValue, type StringTypeIsRidConstraint$1 as StringTypeIsRidConstraint, type StringTypeIsUuidConstraint$1 as StringTypeIsUuidConstraint, type StringTypeLengthConstraint$1 as StringTypeLengthConstraint, type StructFieldAlias, type StructFieldApiNameMapping, type StructFieldApiNameOrRid, type StructFieldApiNameOrRid_apiName, type StructFieldApiNameOrRid_rid, type StructFieldConditionalOverride, type StructFieldConditionalOverrideModification, type StructFieldConditionalValidationBlock, type StructFieldConditionalValidationBlockModification, type StructFieldDisplayMetadata, type StructFieldLogicRuleValue, type StructFieldLogicRuleValueMappingModification, type StructFieldLogicRuleValueModification, type StructFieldLogicRuleValueModification_structListParameterFieldValue, type StructFieldLogicRuleValueModification_structParameterFieldValue, type StructFieldLogicRuleValue_structListParameterFieldValue, type StructFieldLogicRuleValue_structParameterFieldValue, type StructFieldName, type StructFieldPrefill, type StructFieldPrefillModification, type StructFieldPrefillModification_objectParameterStructFieldValue, type StructFieldPrefillModification_objectParameterStructListFieldValue, type StructFieldPrefillOverride, type StructFieldPrefillOverrideModification, type StructFieldPrefill_objectParameterStructFieldValue, type StructFieldPrefill_objectParameterStructListFieldValue, type StructFieldRid, type StructFieldType, type StructFieldValidation, type StructFieldValidationBlock, type StructFieldValidationBlockModification, type StructFieldValidationBlockOverride, type StructFieldValidationBlockOverrideModification, type StructFieldValidationBlockOverrideModification_allowedValues, type StructFieldValidationBlockOverrideModification_parameterRequired, type StructFieldValidationBlockOverrideModification_prefill, type StructFieldValidationBlockOverrideModification_visibility, type StructFieldValidationBlockOverride_allowedValues, type StructFieldValidationBlockOverride_parameterRequired, type StructFieldValidationBlockOverride_prefill, type StructFieldValidationBlockOverride_visibility, type StructFieldValidationDisplayMetadata, type StructFieldValidationDisplayMetadataModification, type StructFieldValidationModification, type StructListParameterFieldValue, type StructParameterFieldDisplayMetadata, type StructParameterFieldDisplayMetadataV2, type StructParameterFieldValue, type StructPropertyFieldType, type StructPropertyFieldType_boolean, type StructPropertyFieldType_date, type StructPropertyFieldType_double, type StructPropertyFieldType_geohash, type StructPropertyFieldType_integer, type StructPropertyFieldType_long, type StructPropertyFieldType_string, type StructPropertyFieldType_timestamp, type StructPropertyType, type StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, type SynchronousPreWritebackWebhook, type SynchronousPreWritebackWebhookModification, type SynchronousPreWritebackWebhookModification_staticDirectInput, type SynchronousPreWritebackWebhookModification_staticFunctionInput, type SynchronousPreWritebackWebhook_staticDirectInput, type SynchronousPreWritebackWebhook_staticFunctionInput, type TableDisplayAndFormat, type TableLocator, type TableRid, type TemplateNotificationBody, type TemplateNotificationBodyModification, type TemplateRidPropertyValue, type TextEmbeddingModel, type TextEmbeddingModel_foundryLiveDeployment, type TextEmbeddingModel_lms, type TimeBasedRetentionPolicy, type TimeCodeFormat, type TimeDependentFormatter, type TimeDependentNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormatV2, type TimeDependentNumericSeriesFormat, type TimeDependentSeriesFormat, type TimeDependentSeriesFormat_nonNumeric, type TimeDependentSeriesFormat_numeric, type TimeDependentSeriesFormat_numericOrNonNumeric, type TimeDependentSeriesFormat_numericOrNonNumericV2, type TimeSeriesMetadata, type TimeSeriesSyncRid, type TimeSeriesSyncViewRid, type TimestampFormatter, type TimestampPropertyType, type TimestampTypeDataConstraints$1 as TimestampTypeDataConstraints, type TimestampTypeDataValue$1 as TimestampTypeDataValue, type TimestampTypeRangeConstraint$1 as TimestampTypeRangeConstraint, type TrueCondition, type Type, type TypeClass, type TypeClassEntityIdentifier, type TypeClassEntityIdentifier_actionTypeRid, type TypeClassEntityIdentifier_linkTypeRid, type TypeClassEntityIdentifier_objectTypeRid, type TypeClassEntityIdentifier_sharedPropertyTypeRid, type TypeGroup, type TypeGroupDisplayMetadata, type TypeGroupError, type TypeGroupError_typeGroupsAlreadyExist, type TypeGroupError_typeGroupsNotFound, type TypeGroupGetOrganizationsRequest, type TypeGroupGetOrganizationsResponse, type TypeGroupIconColors, type TypeGroupIdInRequest, type TypeGroupLoadRequest, type TypeGroupLoadResponse, type TypeGroupRid, type TypeGroupRidOrIdInRequest, type TypeGroupRidOrIdInRequest_idInRequest, type TypeGroupRidOrIdInRequest_rid, type TypeGroupSetOrganizationsRequest, type TypeGroupsAlreadyExistError, type TypeGroupsNotFoundError, type TypeGroupsSummary, type Type_array, type Type_attachment, type Type_boolean, type Type_byte, type Type_cipherText, type Type_date, type Type_decimal, type Type_double, type Type_experimentalTimeDependentV1, type Type_float, type Type_geohash, type Type_geoshape, type Type_geotimeSeriesReference, type Type_integer, type Type_long, type Type_marking, type Type_mediaReference, type Type_short, type Type_string, type Type_struct, type Type_timestamp, type Type_vector, type UniqueIdentifier, type UnresolvedOntologySparkInputProperties, type UnrestrictedParameterInterfacePropertyValue, type UnsafeArg, type UrlTarget, type UrlTargetModification, type UrlTargetModification_carbonWorkspace, type UrlTargetModification_logicRuleValue, type UrlTargetModification_newObject, type UrlTargetModification_relativeUrlString, type UrlTargetModification_rid, type UrlTarget_carbonWorkspace, type UrlTarget_logicRuleValue, type UrlTarget_newObject, type UrlTarget_relativeUrlString, type UrlTarget_rid, type UseCaseRid, type UserAttributes, type UserId, type UserOrGroupId, type UserOrGroupId_groupId, type UserOrGroupId_userId, type UserProperty, type UserPropertyId, type UserPropertyId_currentUser, type UserPropertyValue, type UserPropertyValue_groupIds, type UserPropertyValue_groupNames, type UserPropertyValue_organizationMarkingIds, type UserPropertyValue_userAttributes, type UserPropertyValue_userId, type UserPropertyValue_userName, type UserTimezone, type UserValue, type ValidationRule, type ValidationRuleDisplayMetadata, type ValidationRuleIdInRequest, type ValidationRuleIdentifier, type ValidationRuleIdentifier_rid, type ValidationRuleIdentifier_validationRuleIdInRequest, type ValidationRuleModification, type ValidationRuleRid, type ValueReferenceId, type ValueReferenceSource, type ValueReferenceSource_propertyTypeRid, type ValueTypeApiName, type ValueTypeApiNameReference, type ValueTypeDataConstraint, type ValueTypeDisplayMetadata, type ValueTypeIdInRequest, type ValueTypeInputManagerRid, type ValueTypeLabel, type ValueTypeReference$1 as ValueTypeReference, type ValueTypeRid$1 as ValueTypeRid, type ValueTypeStatus, type ValueTypeVersion, type ValueTypeVersionId$1 as ValueTypeVersionId, type VectorPropertyType, type VectorSimilarityFunction, type VersionReference, type VersionReference_ontologyBranch, type VersionReference_ontologyVersion, type VersionedActionTypeRid, type VersionedActionTypesNotFoundError, type VersionedLinkTypeRid, type VersionedObjectTypeRid, type Visibility, type VisibilityOverride, type WebhookInputParamName, type WebhookOutputParamName, type WebhookRid, type WebhookVersion, type WhitespaceAnalyzer, type WorkflowError, type WorkflowError_deletedLinkTypesStillInUseInWorkflow, type WorkflowError_deletedObjectTypesStillInUseInWorkflow, type WorkflowError_referencedLinkTypesInWorkflowNotFound, type WorkflowError_referencedObjectTypesInWorkflowNotFound, type WorkflowError_workflowsAlreadyExist, type WorkflowError_workflowsNotFound, type WorkflowObjectTypeTrait, type WorkflowObjectTypeTraitDescription, type WorkflowObjectTypeTraitDisplayName, type WorkflowObjectTypeTraitId, type WorkflowObjectTypeTraitImpl, type WorkflowObjectTypeTraitProperty, type WorkflowObjectTypeTraitPropertyDescription, type WorkflowObjectTypeTraitPropertyDisplayName, type WorkflowObjectTypeTraitPropertyId, type WorkflowObjectTypeTraitReference, type WorkflowObjectTypeTraitVersion, type WorkflowsAlreadyExistError, type WorkflowsNotFoundError, type WorkshopModuleRid, type WorkshopReference, bulkLoadOntologyEntities, createTemporaryObjectSet, getBulkLinksPage, getLinkTypesForObjectTypes, loadAllOntologies };
|
|
17081
|
+
export { type AccessRequestRid, type AccessRequestVersion, type AccessSubRequestRid, type AccessSubRequestVersion, type ActionApplierRevertConfig, type ActionApplyClientPreferences, type ActionApplyClientPreferences_disallowedClients, type ActionApplyDisallowedClients, type ActionLogConfiguration, type ActionLogMessage, type ActionLogMetadata, type ActionLogParameterReference, type ActionLogRule, type ActionLogRuleModification, type ActionLogSummaryPart, type ActionLogSummaryPart_message, type ActionLogSummaryPart_parameter, type ActionLogValue, type ActionLogValueModification, type ActionLogValueModification_actionRid, type ActionLogValueModification_actionTimestamp, type ActionLogValueModification_actionTypeRid, type ActionLogValueModification_actionTypeVersion, type ActionLogValueModification_actionUser, type ActionLogValueModification_allEditedObjects, type ActionLogValueModification_asynchronousWebhookInstanceIds, type ActionLogValueModification_editedObjects, type ActionLogValueModification_interfaceParameterPropertyValue, type ActionLogValueModification_isReverted, type ActionLogValueModification_notificationIds, type ActionLogValueModification_notifiedUsers, type ActionLogValueModification_objectParameterPropertyValue, type ActionLogValueModification_parameterValue, type ActionLogValueModification_revertTimestamp, type ActionLogValueModification_revertUser, type ActionLogValueModification_scenarioRid, type ActionLogValueModification_summary, type ActionLogValueModification_synchronousWebhookInstanceId, type ActionLogValue_actionRid, type ActionLogValue_actionTimestamp, type ActionLogValue_actionTypeRid, type ActionLogValue_actionTypeVersion, type ActionLogValue_actionUser, type ActionLogValue_allEditedObjects, type ActionLogValue_asynchronousWebhookInstanceIds, type ActionLogValue_editedObjects, type ActionLogValue_interfaceParameterPropertyValue, type ActionLogValue_isReverted, type ActionLogValue_notificationIds, type ActionLogValue_notifiedUsers, type ActionLogValue_objectParameterPropertyValue, type ActionLogValue_parameterValue, type ActionLogValue_revertTimestamp, type ActionLogValue_revertUser, type ActionLogValue_scenarioRid, type ActionLogValue_summary, type ActionLogValue_synchronousWebhookInstanceId, type ActionLogic, type ActionLogicModification, type ActionNotification, type ActionNotificationBody, type ActionNotificationBodyFunctionExecution, type ActionNotificationBodyFunctionExecutionModification, type ActionNotificationBodyModification, type ActionNotificationBodyModification_functionGenerated, type ActionNotificationBodyModification_templateNotification, type ActionNotificationBody_functionGenerated, type ActionNotificationBody_templateNotification, type ActionNotificationModification, type ActionNotificationRecipients, type ActionNotificationRecipientsModification, type ActionNotificationRecipientsModification_functionGenerated, type ActionNotificationRecipientsModification_parameter, type ActionNotificationRecipients_functionGenerated, type ActionNotificationRecipients_parameter, type ActionNotificationSettings, type ActionRevert, type ActionRevertEnabledFor, type ActionRevertEnabledFor_actionApplier, type ActionSubmissionConfiguration, type ActionTableSubmissionMode, type ActionTableSubmissionModeConfiguration, type ActionTableSubmissionMode_submitAllValidOrNothingThrowing, type ActionTableSubmissionMode_submitValidEntriesInOrderUntilFirstFailure, type ActionType, type ActionTypeApiName, type ActionTypeCreate, type ActionTypeCreatedEvent, type ActionTypeDeletedEvent, type ActionTypeDisplayMetadata, type ActionTypeDisplayMetadataConfiguration, type ActionTypeDisplayMetadataModification, type ActionTypeDoesNotHaveActionTypeLevelValidationError, type ActionTypeEditingNonEditablePropertyTypeError, type ActionTypeEntities, type ActionTypeError, type ActionTypeError_actionTypeDoesNotHaveActionTypeLevelValidation, type ActionTypeError_actionTypeEditingNonEditablePropertyType, type ActionTypeError_actionTypesAlreadyExist, type ActionTypeError_actionTypesNotFound, type ActionTypeError_deletingAndEditingTheSameActionType, type ActionTypeError_inlineActionTypeCannotBeReferencedByMultipleObjectTypes, type ActionTypeError_nonExistentParametersUsedInParameterPrefill, type ActionTypeError_parameterValidationNotFound, type ActionTypeError_parameterValidationReferencesLaterParameters, type ActionTypeError_parametersDoNotMatchParameterOrdering, type ActionTypeError_versionedActionTypesNotFound, type ActionTypeFrontendConsumer, type ActionTypeFrontendConsumer_objectMonitoring, type ActionTypeGetOrganizationsRequest, type ActionTypeGetOrganizationsResponse, type ActionTypeIdInRequest, type ActionTypeIdentifier, type ActionTypeIdentifier_actionTypeIdInRequest, type ActionTypeIdentifier_rid, type ActionTypeInputManagerRid, type ActionTypeLevelValidation, type ActionTypeLoadAllRequest, type ActionTypeLoadRequest, type ActionTypeLoadRequestV2, type ActionTypeLoadResponse, type ActionTypeLoadResponseV2, type ActionTypeLoadVersionedRequest, type ActionTypeLoadVersionedResponse, type ActionTypeLogic, type ActionTypeMetadata, type ActionTypeMetadataModification, type ActionTypeModificationRequest, type ActionTypeModifyRequest, type ActionTypeModifyResponse, type ActionTypeParameterIdentifier, type ActionTypeParameterIdentifier_id, type ActionTypeParameterIdentifier_rid, type ActionTypeProvenanceModification, type ActionTypeProvenanceSourceModification, type ActionTypeProvenanceSourceModification_marketplace, type ActionTypeProvenanceSourceModification_none, type ActionTypeRichTextComponent, type ActionTypeRichTextComponent_message, type ActionTypeRichTextComponent_parameter, type ActionTypeRichTextComponent_parameterProperty, type ActionTypeRichTextMessage, type ActionTypeRichTextParameterPropertyReference, type ActionTypeRichTextParameterReference, type ActionTypeRid, type ActionTypeSetOrganizationsRequest, type ActionTypeStatus, type ActionTypeStatus_active, type ActionTypeStatus_deprecated, type ActionTypeStatus_example, type ActionTypeStatus_experimental, type ActionTypeUpdate, type ActionTypeUpdatedEvent, type ActionTypeVersion, type ActionTypesAlreadyExistError, type ActionTypesNotFoundError, type ActionTypesSummary, type ActionValidation, type ActionWebhooks, type ActionWebhooksModification, type ActionsObjectSet, type ActionsObjectSetModification, type ActionsVersion, type ActiveActionTypeStatus, type ActiveInterfaceTypeStatus, type ActiveLinkTypeStatus, type ActiveObjectTypeStatus, type ActivePropertyTypeStatus, type AddInterfaceLinkRule, type AddInterfaceLinkRuleModification, type AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, type AllowedParameterValues, type AllowedParameterValuesModification, type AllowedParameterValuesModification_attachment, type AllowedParameterValuesModification_boolean, type AllowedParameterValuesModification_cbacMarking, type AllowedParameterValuesModification_datetime, type AllowedParameterValuesModification_geohash, type AllowedParameterValuesModification_geoshape, type AllowedParameterValuesModification_geotimeSeriesReference, type AllowedParameterValuesModification_interfaceObjectQuery, type AllowedParameterValuesModification_interfacePropertyValue, type AllowedParameterValuesModification_mandatoryMarking, type AllowedParameterValuesModification_mediaReference, type AllowedParameterValuesModification_multipassGroup, type AllowedParameterValuesModification_objectList, type AllowedParameterValuesModification_objectPropertyValue, type AllowedParameterValuesModification_objectQuery, type AllowedParameterValuesModification_objectSetRid, type AllowedParameterValuesModification_objectTypeReference, type AllowedParameterValuesModification_oneOf, type AllowedParameterValuesModification_range, type AllowedParameterValuesModification_redacted, type AllowedParameterValuesModification_struct, type AllowedParameterValuesModification_text, type AllowedParameterValuesModification_timeSeriesReference, type AllowedParameterValuesModification_user, type AllowedParameterValues_attachment, type AllowedParameterValues_boolean, type AllowedParameterValues_cbacMarking, type AllowedParameterValues_datetime, type AllowedParameterValues_geohash, type AllowedParameterValues_geoshape, type AllowedParameterValues_geotimeSeriesReference, type AllowedParameterValues_interfaceObjectQuery, type AllowedParameterValues_interfacePropertyValue, type AllowedParameterValues_mandatoryMarking, type AllowedParameterValues_mediaReference, type AllowedParameterValues_multipassGroup, type AllowedParameterValues_objectList, type AllowedParameterValues_objectPropertyValue, type AllowedParameterValues_objectQuery, type AllowedParameterValues_objectSetRid, type AllowedParameterValues_objectTypeReference, type AllowedParameterValues_oneOf, type AllowedParameterValues_range, type AllowedParameterValues_redacted, type AllowedParameterValues_struct, type AllowedParameterValues_text, type AllowedParameterValues_timeSeriesReference, type AllowedParameterValues_user, type AllowedStructFieldValues, type AllowedStructFieldValuesModification, type AllowedStructFieldValuesModification_boolean, type AllowedStructFieldValuesModification_datetime, type AllowedStructFieldValuesModification_geohash, type AllowedStructFieldValuesModification_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, type AllowedStructFieldValues_oneOf, type AllowedStructFieldValues_range, type AllowedStructFieldValues_text, type AllowedValuesOverride, type AllowedValuesOverrideModification, type Analyzer, type Analyzer_languageAnalyzer, type Analyzer_notAnalyzed, type Analyzer_simpleAnalyzer, type Analyzer_standardAnalyzer, type Analyzer_whitespaceAnalyzer, type AndCondition, type AndConditionModification, type AnyNotificationRenderingCanFail, type ApiNameValueTypeReference, type ArrayPropertyType, type ArrayTypeDataConstraints$1 as ArrayTypeDataConstraints, type ArrayTypeDataValue$1 as ArrayTypeDataValue, type ArrayTypeElementsUniqueConstraint$1 as ArrayTypeElementsUniqueConstraint, type ArrayTypeSizeConstraint$1 as ArrayTypeSizeConstraint, type AsynchronousPostWritebackWebhook, type AsynchronousPostWritebackWebhookModification, type AsynchronousPostWritebackWebhookModification_staticDirectInput, type AsynchronousPostWritebackWebhookModification_staticFunctionInput, type AsynchronousPostWritebackWebhook_staticDirectInput, type AsynchronousPostWritebackWebhook_staticFunctionInput, type AttachmentPropertyType, type Attribution, type BaseFormatter, type BaseFormatter_boolean, type BaseFormatter_date, type BaseFormatter_knownFormatter, type BaseFormatter_number, type BaseFormatter_string, type BaseFormatter_timeDependent, type BaseFormatter_timestamp, type BaseParameterSubtype, type BaseParameterSubtype_marking, type BasePropertyType, type BaseType, type BasicEmailBody, type BasicEmailBodyModification, type BatchedFunctionRule, type BatchedFunctionRuleModification, type BidirectionalRelation, type BidirectionalRelationCreateRequest, type BidirectionalRelationDeleteRequest, type BidirectionalRelationModifyRequest, type BidirectionalRelationModifyRequest_create, type BidirectionalRelationModifyRequest_delete, type BidirectionalRelationModifyRequest_update, type BidirectionalRelationUpdateRequest, type BidirectionalRelationWithoutRid, type BlueprintIcon, type BooleanFormatter, type BooleanPropertyType, type BooleanTypeDataConstraintValue$1 as BooleanTypeDataConstraintValue, type BooleanTypeDataConstraints$1 as BooleanTypeDataConstraints, type BooleanTypeDataValue$1 as BooleanTypeDataValue, type BranchClosedEvent, type BranchDeletedEvent, type BranchId, type BranchMergedEvent, type BuilderPipelineRid, type BulkExecutionModeConfig, type ButtonDisplayMetadata, type BytePropertyType, type ByteTypeDataValue$1 as ByteTypeDataValue, type CarbonWorkspaceComponentUrlTarget, type CarbonWorkspaceComponentUrlTargetModification, type CarbonWorkspaceComponentUrlTargetModification_rid, type CarbonWorkspaceComponentUrlTarget_rid, type CarbonWorkspaceUrlTarget, type CarbonWorkspaceUrlTargetModification, type CategoryId, type CipherTextPropertyType, type ClassificationConstraint, type ColumnLocator, type ColumnName, type ComparisonCondition, type ComparisonConditionModification, type ComparisonOperator, type CompassProjectRid, type Condition, type ConditionDisplayMetadata, type ConditionIndex, type ConditionModification, type ConditionModification_and, type ConditionModification_comparison, type ConditionModification_markings, type ConditionModification_not, type ConditionModification_or, type ConditionModification_redacted, type ConditionModification_regex, type ConditionModification_true, type ConditionValue, type ConditionValueModification, type ConditionValueModification_interfaceParameterPropertyValue, type ConditionValueModification_objectParameterPropertyValue, type ConditionValueModification_parameterId, type ConditionValueModification_parameterLength, type ConditionValueModification_staticValue, type ConditionValueModification_userProperty, type ConditionValue_interfaceParameterPropertyValue, type ConditionValue_objectParameterPropertyValue, type ConditionValue_parameterId, type ConditionValue_parameterLength, type ConditionValue_staticValue, type ConditionValue_userProperty, type Condition_and, type Condition_comparison, type Condition_markings, type Condition_not, type Condition_or, type Condition_redacted, type Condition_regex, type Condition_true, type ConditionalOverride, type ConditionalOverrideModification, type ConditionalValidationBlock, type ConditionalValidationBlockModification, type CurrentTime, type CurrentUser, type DataConstraint, type DataConstraintWrapper, type DataConstraints, type DataNullability, type DataNullabilityV2, type DataSecurity, type DataType, type DataType_baseType, type DatasetRid, type DatasetRidAndBranchId, type DatasetTransactionRid, type DatasourceBackingRid, type DatasourceBackingRid_datasetRid, type DatasourceBackingRid_derivedPropertiesSourceRid, type DatasourceBackingRid_directSourceRid, type DatasourceBackingRid_editsOnlyRid, type DatasourceBackingRid_geotimeSeriesIntegrationRid, type DatasourceBackingRid_mediaSetRid, type DatasourceBackingRid_mediaSetViewRid, type DatasourceBackingRid_restrictedStreamRid, type DatasourceBackingRid_restrictedViewRid, type DatasourceBackingRid_streamLocatorRid, type DatasourceBackingRid_tableRid, type DatasourceBackingRid_timeSeriesSyncRid, type DatasourceIdentifier, type DatasourceIdentifier_datasetRidAndBranchId, type DatasourceIdentifier_derivedPropertiesSourceRid, type DatasourceIdentifier_directSourceRid, type DatasourceIdentifier_editsOnly, type DatasourceIdentifier_geotimeSeriesIntegrationRid, type DatasourceIdentifier_mediaSetView, type DatasourceIdentifier_mediaSourceRids, type DatasourceIdentifier_restrictedStream, type DatasourceIdentifier_restrictedViewRid, type DatasourceIdentifier_streamLocator, type DatasourceIdentifier_table, type DatasourceIdentifier_timeSeriesSyncRid, type DatasourceRid, type DatasourceType, type DateFormatter, type DatePropertyType, type DateRangeValue, type DateRangeValueModification, type DateRangeValueModification_fixed, type DateRangeValueModification_now, type DateRangeValueModification_relative, type DateRangeValue_fixed, type DateRangeValue_now, type DateRangeValue_relative, type DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, type DatetimeFormat, type DatetimeFormat_localizedFormat, type DatetimeFormat_stringFormat, type DatetimeLocalizedFormat, type DatetimeStringFormat, type DatetimeTimezone, type DatetimeTimezoneDefinition, type DatetimeTimezoneDefinition_zoneId, type DatetimeTimezone_static, type DatetimeTimezone_user, type DecimalPropertyType, type DecimalTypeDataConstraints$1 as DecimalTypeDataConstraints, type DecimalTypeDataConstraints_oneOf$1 as DecimalTypeDataConstraints_oneOf, type DecimalTypeDataConstraints_range$1 as DecimalTypeDataConstraints_range, type DecimalTypeDataValue$1 as DecimalTypeDataValue, type DecimalTypeRangeConstraint$1 as DecimalTypeRangeConstraint, type DelegateToAllowedStructFieldValues, type DeleteInterfaceLinkRule, type DeleteInterfaceLinkRuleModification, type DeleteLinkRule, type DeleteObjectRule, type DeletedLinkTypesStillInUseError, type DeletedLinkTypesStillInUseInWorkflowError, type DeletedObjectTypesStillInUseError, type DeletedObjectTypesStillInUseInWorkflowError, type DeletingAndEditingTheSameActionTypeError, type DeletionMetadata, type DeprecatedActionTypeGetOrganizationsResponse, type DeprecatedActionTypeSetOrganizationsRequest, type DeprecatedActionTypeStatus, type DeprecatedInterfaceTypeStatus, type DeprecatedLinkTypeStatus, type DeprecatedObjectTypeStatus, type DeprecatedPropertyTypeStatus, type DerivedPropertiesSourceRid, type DirectSourceRid, type DirectedLinkTypeRid, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, type DoublePropertyType, type DoubleTypeDataConstraints$1 as DoubleTypeDataConstraints, type DoubleTypeDataConstraints_oneOf$1 as DoubleTypeDataConstraints_oneOf, type DoubleTypeDataConstraints_range$1 as DoubleTypeDataConstraints_range, type DoubleTypeDataValue$1 as DoubleTypeDataValue, type DoubleTypeRangeConstraint$1 as DoubleTypeRangeConstraint, type Duration, type DurationBaseValue, type DurationFormatStyle, type DurationFormatStyle_humanReadable, type DurationFormatStyle_timecode, type DurationPrecision, type DynamicObjectSet, type DynamicObjectSetInput, type DynamicObjectSetInputBase, type DynamicObjectSetInputParameter, type DynamicObjectSetInputUnioned, type DynamicObjectSetInput_base, type DynamicObjectSetInput_parameter, type DynamicObjectSetInput_unioned, type EditActionTypeRequest, type EditOnlyPropertyType, type EditParameterRequest, type EditParameterRequestModification, type EditSectionRequest, type EditSectionRequestModification, type EditValidationRuleRequest, type EditsConfiguration, type EditsHistoryObjectTypeRid, type EditsOnlyRid, type EmailBody, type EmailBodyModification, type EmailBodyModification_basic, type EmailBody_basic, type EmbeddingModel, type EmbeddingModel_text, type Empty, type EndorsedObjectTypeStatus, type EnrollmentRid, type EntityLoadByDatasourceResponse, type EntityLoadByDatasourceResponse_linkType, type EntityLoadByDatasourceResponse_objectType, type EntityMetadataLoadRequest, type EntityStatus, type EventMetadata, type EventsTopicRid, type EveryoneTrustedRedactionOverride, type ExampleActionTypeStatus, type ExampleInterfaceTypeStatus, type ExampleLinkTypeStatus, type ExampleObjectTypeStatus, type ExamplePropertyTypeStatus, type ExampleValue, type ExperimentalActionTypeStatus, type ExperimentalDeclarativeEditInformation, type ExperimentalInterfaceTypeStatus, type ExperimentalLinkTypeStatus, type ExperimentalObjectTypeStatus, type ExperimentalPropertyTypeStatus, type ExperimentalTimeDependentPropertyTypeV1, type FailureMessage, type FieldDisplayMetadata, type FieldMetadata, type FloatPropertyType, type FloatTypeDataConstraints$1 as FloatTypeDataConstraints, type FloatTypeDataConstraints_oneOf$1 as FloatTypeDataConstraints_oneOf, type FloatTypeDataConstraints_range$1 as FloatTypeDataConstraints_range, type FloatTypeDataValue$1 as FloatTypeDataValue, type FloatTypeRangeConstraint$1 as FloatTypeRangeConstraint, type FormContent, type FormContent_parameterId, type FormContent_sectionId, type FormatterUserId, type FoundryFieldType, type FoundryLiveDeployment, type FoundryObjectReference, type FunctionApiName, type FunctionAtVersion, type FunctionExecutionWithRecipientInput, type FunctionExecutionWithRecipientInputModification, type FunctionExecutionWithRecipientInputModification_logicRuleValue, type FunctionExecutionWithRecipientInputModification_recipient, type FunctionExecutionWithRecipientInput_logicRuleValue, type FunctionExecutionWithRecipientInput_recipient, type FunctionGeneratedActionNotificationRecipients, type FunctionGeneratedActionNotificationRecipientsModification, type FunctionGeneratedNotificationBody, type FunctionGeneratedNotificationBodyModification, type FunctionInputName, type FunctionReference, type FunctionRid, type FunctionRule, type FunctionRuleCustomExecutionMode, type FunctionRuleCustomExecutionMode_bulkExecutionModeConfig, type FunctionRuleModification, type FunctionVersion, type GenericOntologyMetadataError, type GeohashPropertyType, type GeoshapePropertyType, type GeotimeSeriesIntegrationRid, type GeotimeSeriesReferencePropertyType, type GetActionTypesForInterfaceTypePageToken, type GetActionTypesForInterfaceTypeRequest, type GetActionTypesForInterfaceTypeResponse, type GetActionTypesForObjectTypePageToken, type GetActionTypesForObjectTypeRequest, type GetActionTypesForObjectTypeResponse, type GetBulkLinksPageRequest, type GetFeatureConfigurationsResponse, type GetLinkMetadataForObjectTypesRequest, type GetLinkMetadataForObjectTypesResponse, type GetLinkTypesForObjectTypesRequest, type GetLinkTypesForObjectTypesResponse, type GetObjectTypesForInterfaceTypesRequest, type GetObjectTypesForInterfaceTypesResponse, type GetObjectTypesForSharedPropertyTypesRequest, type GetObjectTypesForSharedPropertyTypesResponse, type GetObjectTypesForTypeGroupsRequest, type GetObjectTypesForTypeGroupsResponse, type GetOntologyEntitiesForTypeGroupsRequest, type GetOntologyEntitiesForTypeGroupsResponse, type GetOntologySummaryRequest, type GetOntologySummaryResponse, type GetRelationsForObjectTypesRequest, type GetRelationsForObjectTypesResponse, type GlobalBranchRid, type GroupId, type HandlebarsInputName, type HumanReadableFormat, type Icon, type IconReference, type Icon_blueprint, type ImportedOntologyEntitiesForProjectSpanOntologies, type ImportedSharedPropertyTypes, type ImportedTypes, type InlineActionDisplayOptions, type InlineActionType, type InlineActionTypeCannotBeReferencedByMultipleObjectTypesError, type IntegerPropertyType, type IntegerTypeDataConstraints$1 as IntegerTypeDataConstraints, type IntegerTypeDataConstraints_oneOf$1 as IntegerTypeDataConstraints_oneOf, type IntegerTypeDataConstraints_range$1 as IntegerTypeDataConstraints_range, type IntegerTypeDataValue$1 as IntegerTypeDataValue, type IntegerTypeRangeConstraint$1 as IntegerTypeRangeConstraint, type InterfaceLinkType, type InterfaceLinkTypeApiName, type InterfaceLinkTypeCardinality, type InterfaceLinkTypeIdInRequest, type InterfaceLinkTypeMetadata, type InterfaceLinkTypeRid, type InterfaceLinkTypeRidOrIdInRequest, type InterfaceLinkTypeRidOrIdInRequest_idInRequest, type InterfaceLinkTypeRidOrIdInRequest_rid, type InterfaceParameterPropertyValue, type InterfaceParameterPropertyValueModification, type InterfacePropertyImplementation, type InterfaceSharedPropertyType, type InterfaceType, type InterfaceTypeApiName, type InterfaceTypeCreatedEvent, type InterfaceTypeDeletedEvent, type InterfaceTypeDisplayMetadata, type InterfaceTypeError, type InterfaceTypeError_interfaceTypesAlreadyExist, type InterfaceTypeError_interfaceTypesNotFound, type InterfaceTypeIdInRequest, type InterfaceTypeLoadRequest, type InterfaceTypeLoadResponse, type InterfaceTypeRid, type InterfaceTypeRidOrIdInRequest, type InterfaceTypeRidOrIdInRequest_idInRequest, type InterfaceTypeRidOrIdInRequest_rid, type InterfaceTypeStatus, type InterfaceTypeStatus_active, type InterfaceTypeStatus_deprecated, type InterfaceTypeStatus_example, type InterfaceTypeStatus_experimental, type InterfaceTypeUpdatedEvent, type InterfaceTypesAlreadyExistError, type InterfaceTypesNotFoundError, type InterfacesSummary, type IntermediaryLinkDefinition, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_ridFormatter, type KnownFormatter_userId, type LabelledValue, type LanguageAnalyzer, type LimeIndexRid, type LinkDefinition, type LinkDefinition_intermediary, type LinkDefinition_manyToMany, type LinkDefinition_oneToMany, type LinkMetadata, type LinkMetadata_linkType, type LinkMetadata_softLink, type LinkType, type LinkTypeCreatedEvent, type LinkTypeDeletedEvent, type LinkTypeDisplayMetadata, type LinkTypeError, type LinkTypeError_deletedLinkTypesStillInUse, type LinkTypeError_deletedObjectsStillInUse, type LinkTypeError_linkTypeRidsNotFound, type LinkTypeError_linkTypesAlreadyExist, type LinkTypeError_linkTypesNotFound, type LinkTypeError_referencedLinkTypesNotFound, type LinkTypeError_referencedObjectTypesNotFound, type LinkTypeId, type LinkTypeIdentifier, type LinkTypeIdentifier_linkTypeId, type LinkTypeIdentifier_linkTypeRid, type LinkTypeInputManagerRid, type LinkTypeInputSpec, type LinkTypeLoadRequest, type LinkTypeLoadResponse, type LinkTypeMetadata, type LinkTypeMetadataInputManagerRid, type LinkTypePeeringMetadata, type LinkTypePeeringMetadataV1, type LinkTypePeeringMetadata_v1, type LinkTypePeeringRid, type LinkTypeRid, type LinkTypeRidsNotFoundError, type LinkTypeStatus, type LinkTypeStatus_active, type LinkTypeStatus_deprecated, type LinkTypeStatus_example, type LinkTypeStatus_experimental, type LinkTypeUpdatedEvent, type LinkTypesAlreadyExistError, type LinkTypesNotFoundError, type LinkTypesSummary, type LinkedEntityTypeId, type LinkedEntityTypeId_interfaceType, type LinkedEntityTypeId_objectType, type LinkedEntityTypeRidOrIdInRequest, type LinkedEntityTypeRidOrIdInRequest_interfaceType, type LinkedEntityTypeRidOrIdInRequest_objectType, type LiveDeploymentRid, type LmsEmbeddingModel, type LoadActionTypesFromOntologyRequest, type LoadActionTypesFromOntologyResponse, type LoadAllActionTypesFromOntologyRequest, type LoadAllActionTypesPageItem, type LoadAllActionTypesPageRequest, type LoadAllActionTypesPageResponse, type LoadAllActionTypesPageToken, type LoadAllInterfaceTypesPageItem, type LoadAllInterfaceTypesPageRequest, type LoadAllInterfaceTypesPageResponse, type LoadAllInterfaceTypesPageToken, type LoadAllObjectTypesFromOntologyPageRequest, type LoadAllObjectTypesFromOntologyPageResponse, type LoadAllObjectTypesPageItem, type LoadAllObjectTypesPageRequest, type LoadAllObjectTypesPageResponse, type LoadAllObjectTypesPageToken, type LoadAllOntologiesRequest, type LoadAllOntologiesResponse, type LoadAllSharedPropertyTypesPageItem, type LoadAllSharedPropertyTypesPageRequest, type LoadAllSharedPropertyTypesPageResponse, type LoadAllSharedPropertyTypesPageToken, type LoadAllTypeGroupsPageItem, type LoadAllTypeGroupsPageRequest, type LoadAllTypeGroupsPageResponse, type LoadAllTypeGroupsPageToken, type LogicRule, type LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, type LogicRuleModification_addInterfaceRule, type LogicRuleModification_addLinkRule, type LogicRuleModification_addObjectRule, type LogicRuleModification_addOrModifyObjectRule, type LogicRuleModification_addOrModifyObjectRuleV2, type LogicRuleModification_batchedFunctionRule, type LogicRuleModification_deleteInterfaceLinkRule, type LogicRuleModification_deleteLinkRule, type LogicRuleModification_deleteObjectRule, type LogicRuleModification_functionRule, type LogicRuleModification_modifyInterfaceRule, type LogicRuleModification_modifyObjectRule, type LogicRuleValue, type LogicRuleValueModification, type LogicRuleValueModification_currentTime, type LogicRuleValueModification_currentUser, type LogicRuleValueModification_interfaceParameterPropertyValue, type LogicRuleValueModification_objectParameterPropertyValue, type LogicRuleValueModification_parameterId, type LogicRuleValueModification_staticValue, type LogicRuleValueModification_synchronousWebhookOutput, type LogicRuleValueModification_uniqueIdentifier, type LogicRuleValue_currentTime, type LogicRuleValue_currentUser, type LogicRuleValue_interfaceParameterPropertyValue, type LogicRuleValue_objectParameterPropertyValue, type LogicRuleValue_parameterId, type LogicRuleValue_staticValue, type LogicRuleValue_synchronousWebhookOutput, type LogicRuleValue_uniqueIdentifier, type LogicRule_addInterfaceLinkRule, type LogicRule_addInterfaceRule, type LogicRule_addLinkRule, type LogicRule_addObjectRule, type LogicRule_addOrModifyObjectRule, type LogicRule_addOrModifyObjectRuleV2, type LogicRule_batchedFunctionRule, type LogicRule_deleteInterfaceLinkRule, type LogicRule_deleteLinkRule, type LogicRule_deleteObjectRule, type LogicRule_functionRule, type LogicRule_modifyInterfaceRule, type LogicRule_modifyObjectRule, type LongPropertyType, type LongTypeDataConstraints$1 as LongTypeDataConstraints, type LongTypeDataConstraints_oneOf$1 as LongTypeDataConstraints_oneOf, type LongTypeDataConstraints_range$1 as LongTypeDataConstraints_range, type LongTypeDataValue$1 as LongTypeDataValue, type LongTypeRangeConstraint$1 as LongTypeRangeConstraint, type MandatoryMarkingConstraint, type ManyToManyJoinDefinition, type ManyToManyLinkDefinition, type ManyToManyLinkTypeDatasetDatasource, type ManyToManyLinkTypeDatasource, type ManyToManyLinkTypeDatasourceDefinition, type ManyToManyLinkTypeDatasourceDefinition_dataset, type ManyToManyLinkTypeDatasourceDefinition_stream, type ManyToManyLinkTypeStreamDatasource, type MarkingFilter, type MarkingFilter_markingTypes, type MarkingId, type MarkingPropertyType, type MarkingSubtype, type MarkingType, type MarkingTypesFilter, type MarkingsCondition, type MarkingsConditionModification, type MediaItemRid, type MediaReferencePropertyType, type MediaSetBranchRid, type MediaSetRid, type MediaSetViewLocator, type MediaSetViewRid, type MediaSourceRid, type MediaSourceRid_datasetRid, type MediaSourceRid_mediaSetRid, type MissingAffectedObjectTypesForFunctionRule, type ModifyInterfaceRule, type ModifyInterfaceRuleModification, type ModifyObjectRule, type ModifyObjectRuleModification, type ModuleRid, type MultipassUserFilter, type MultipassUserFilterModification, type MultipassUserFilterModification_groupFilter, type MultipassUserFilter_groupFilter, type MultipassUserInGroupFilter, type MultipassUserInGroupFilterModification, type MustBeEmpty, type NestedStructFieldApiNameMapping, type NewObjectUrlTarget, type NewObjectUrlTargetModification, type NoRetentionPolicy, type NonExistentParametersUsedInParameterPrefillError, type NonNumericInternalInterpolation, type NonNumericSeriesValueMetadata, type NonNumericSeriesValueUnit, type NoneEntityProvenance, type NotAnalyzedAnalyzer, type NotCondition, type NotConditionModification, type NotepadReference, type NotepadRid, type NotificationRecipient, type NotificationResultTypeLink, type NotificationResultTypeLinkModification, type NotificationTemplateInputValue, type NotificationTemplateInputValueModification, type NotificationTemplateInputValueModification_actionTriggererValue, type NotificationTemplateInputValueModification_logicRuleValue, type NotificationTemplateInputValueModification_recipientValue, type NotificationTemplateInputValue_actionTriggererValue, type NotificationTemplateInputValue_logicRuleValue, type NotificationTemplateInputValue_recipientValue, type NumberFormatBase, type NumberFormatBasisPoint, type NumberFormatBillions, type NumberFormatCurrency, type NumberFormatCurrencyStyle, type NumberFormatCustomUnit, type NumberFormatDuration, type NumberFormatMillions, type NumberFormatNotation, type NumberFormatOrdinal, type NumberFormatPerMille, type NumberFormatPercentage, type NumberFormatPrePostFix, type NumberFormatThousands, type NumberFormatUnit, type NumberFormatter, type NumberFormatter_base, type NumberFormatter_basisPoint, type NumberFormatter_billions, type NumberFormatter_currency, type NumberFormatter_customUnit, type NumberFormatter_duration, type NumberFormatter_millions, type NumberFormatter_ordinal, type NumberFormatter_perMille, type NumberFormatter_percentage, type NumberFormatter_prePost, type NumberFormatter_thousands, type NumberFormatter_unit, type NumberRoundingMode, type NumericInternalInterpolation, type NumericOrNonNumericSeriesValueMetadata, type NumericOrNonNumericSeriesValueMetadataV2, type NumericSeriesValueMetadata, type NumericSeriesValueUnit, type NumericSeriesValueUnit_customUnit, type NumericSeriesValueUnit_standardUnit, type ObjectDbRid, type ObjectDbSyncRid, type ObjectDisplayMetadata, type ObjectIdentifier, type ObjectMonitoringFrontendConsumer, type ObjectParameterPropertyValue, type ObjectParameterStructFieldValue, type ObjectParameterStructFieldValueModification, type ObjectParameterStructListFieldValue, type ObjectParameterStructListFieldValueModification, type ObjectQueryPrefill, type ObjectQueryPrefillModification, type ObjectQueryPropertyValue, type ObjectQueryPropertyValueModification, type ObjectRid, type ObjectSet, type ObjectSetFilter$1 as ObjectSetFilter, type ObjectSetRidPrefill, type ObjectSetRidPrefillModification, type ObjectSetSearchAround, type ObjectSetTransform, type ObjectSetTransform_propertyFilter, type ObjectSetTransform_searchAround, type ObjectType, type ObjectTypeApiName, type ObjectTypeCreatedEvent, type ObjectTypeDatasetDatasource, type ObjectTypeDatasetDatasourceV2, type ObjectTypeDatasetDatasourceV3, type ObjectTypeDatasource, type ObjectTypeDatasourceDefinition, type ObjectTypeDatasourceDefinition_dataset, type ObjectTypeDatasourceDefinition_datasetV2, type ObjectTypeDatasourceDefinition_datasetV3, type ObjectTypeDatasourceDefinition_derived, type ObjectTypeDatasourceDefinition_direct, type ObjectTypeDatasourceDefinition_editsOnly, type ObjectTypeDatasourceDefinition_geotimeSeries, type ObjectTypeDatasourceDefinition_media, type ObjectTypeDatasourceDefinition_mediaSetView, type ObjectTypeDatasourceDefinition_restrictedStream, type ObjectTypeDatasourceDefinition_restrictedView, type ObjectTypeDatasourceDefinition_restrictedViewV2, type ObjectTypeDatasourceDefinition_stream, type ObjectTypeDatasourceDefinition_streamV2, type ObjectTypeDatasourceDefinition_table, type ObjectTypeDatasourceDefinition_timeSeries, type ObjectTypeDeletedEvent, type ObjectTypeDerivedPropertiesDatasource, type ObjectTypeDirectDatasource, type ObjectTypeDisplayMetadata, type ObjectTypeEditsOnlyDatasource, type ObjectTypeEmbeddingInput, type ObjectTypeError, type ObjectTypeError_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, type ObjectTypeFieldApiName$1 as ObjectTypeFieldApiName, type ObjectTypeGeotimeSeriesDatasource, type ObjectTypeId, type ObjectTypeIdentifier, type ObjectTypeIdentifier_objectTypeId, type ObjectTypeIdentifier_objectTypeRid, type ObjectTypeIdsAndInterfaceTypeRids, type ObjectTypeInputManagerProperties, type ObjectTypeInputManagerRid, type ObjectTypeInputSpec, type ObjectTypeInterfaceImplementation, type ObjectTypeLoadRequest, type ObjectTypeLoadResponse, type ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypeRestrictedStreamDatasource, type ObjectTypeRestrictedViewDatasource, type ObjectTypeRestrictedViewDatasourceV2, type ObjectTypeRid, type ObjectTypeRidsAndInterfaceTypeRids, type ObjectTypeRidsNotFoundError, type ObjectTypeStatus, type ObjectTypeStatus_active, type ObjectTypeStatus_deprecated, type ObjectTypeStatus_endorsed, type ObjectTypeStatus_example, type ObjectTypeStatus_experimental, type ObjectTypeStreamDatasource, type ObjectTypeStreamDatasourceV2, type ObjectTypeTableDatasource, type ObjectTypeTimeSeriesDatasource, type ObjectTypeTraitPropertySpecification, type ObjectTypeTraits, type ObjectTypeUpdatedEvent, type ObjectTypeWithRestrictedViewWithGpsPolicyColumnsNotMappedAsPropertyTypes, type ObjectTypesAlreadyExistError, type ObjectTypesNotFoundError, type ObjectTypesSummary, type ObjectsPlatformRids, type OneOfDecimalTypeConstraint$1 as OneOfDecimalTypeConstraint, type OneOfDoubleTypeConstraint$1 as OneOfDoubleTypeConstraint, type OneOfFloatTypeConstraint$1 as OneOfFloatTypeConstraint, type OneOfIntegerTypeConstraint$1 as OneOfIntegerTypeConstraint, type OneOfLongTypeConstraint$1 as OneOfLongTypeConstraint, type OneOfShortTypeConstraint$1 as OneOfShortTypeConstraint, type OneOfStringTypeConstraint$1 as OneOfStringTypeConstraint, type OneToManyLinkCardinalityHint, type OneToManyLinkDefinition, type OntologyActionTypeLoadRequest, type OntologyApiName, type OntologyBranch, type OntologyBranchRid, type OntologyBulkLoadEntitiesByDatasourcesRequest, type OntologyBulkLoadEntitiesByDatasourcesResponse, type OntologyBulkLoadEntitiesRequest, type OntologyBulkLoadEntitiesResponse, type OntologyDatasetType, type OntologyEntitiesUsedInTypeGroup, type OntologyInformation, type OntologyIr, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, type OntologyIrActionLogValue, type OntologyIrActionLogValue_actionRid, type OntologyIrActionLogValue_actionTimestamp, type OntologyIrActionLogValue_actionTypeRid, type OntologyIrActionLogValue_actionTypeVersion, type OntologyIrActionLogValue_actionUser, type OntologyIrActionLogValue_allEditedObjects, type OntologyIrActionLogValue_asynchronousWebhookInstanceIds, type OntologyIrActionLogValue_editedObjects, type OntologyIrActionLogValue_interfaceParameterPropertyValue, type OntologyIrActionLogValue_isReverted, type OntologyIrActionLogValue_notificationIds, type OntologyIrActionLogValue_notifiedUsers, type OntologyIrActionLogValue_objectParameterPropertyValue, type OntologyIrActionLogValue_parameterValue, type OntologyIrActionLogValue_revertTimestamp, type OntologyIrActionLogValue_revertUser, type OntologyIrActionLogValue_scenarioRid, type OntologyIrActionLogValue_summary, type OntologyIrActionLogValue_synchronousWebhookInstanceId, type OntologyIrActionLogic, type OntologyIrActionNotification, type OntologyIrActionNotificationBody, type OntologyIrActionNotificationBodyFunctionExecution, type OntologyIrActionNotificationBody_functionGenerated, type OntologyIrActionNotificationBody_templateNotification, type OntologyIrActionNotificationRecipients, type OntologyIrActionNotificationRecipients_functionGenerated, type OntologyIrActionNotificationRecipients_parameter, type OntologyIrActionType, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeDisplayMetadata, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeMetadata, type OntologyIrActionTypeRichTextComponent, type OntologyIrActionTypeRichTextComponent_message, type OntologyIrActionTypeRichTextComponent_parameter, type OntologyIrActionTypeRichTextComponent_parameterProperty, type OntologyIrActionTypeRichTextParameterPropertyReference, type OntologyIrActionTypeStatus, type OntologyIrActionTypeStatus_active, type OntologyIrActionTypeStatus_deprecated, type OntologyIrActionTypeStatus_example, type OntologyIrActionTypeStatus_experimental, type OntologyIrActionValidation, type OntologyIrActionWebhooks, type OntologyIrActionsObjectSet, type OntologyIrAddInterfaceLinkRule, type OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, type OntologyIrAllEditedObjectsFieldMapping, type OntologyIrAllowedParameterValues, type OntologyIrAllowedParameterValues_attachment, type OntologyIrAllowedParameterValues_boolean, type OntologyIrAllowedParameterValues_cbacMarking, type OntologyIrAllowedParameterValues_datetime, type OntologyIrAllowedParameterValues_geohash, type OntologyIrAllowedParameterValues_geoshape, type OntologyIrAllowedParameterValues_geotimeSeriesReference, type OntologyIrAllowedParameterValues_interfaceObjectQuery, type OntologyIrAllowedParameterValues_interfacePropertyValue, type OntologyIrAllowedParameterValues_mandatoryMarking, type OntologyIrAllowedParameterValues_mediaReference, type OntologyIrAllowedParameterValues_multipassGroup, type OntologyIrAllowedParameterValues_objectList, type OntologyIrAllowedParameterValues_objectPropertyValue, type OntologyIrAllowedParameterValues_objectQuery, type OntologyIrAllowedParameterValues_objectSetRid, type OntologyIrAllowedParameterValues_objectTypeReference, type OntologyIrAllowedParameterValues_oneOf, type OntologyIrAllowedParameterValues_range, type OntologyIrAllowedParameterValues_redacted, type OntologyIrAllowedParameterValues_text, type OntologyIrAllowedParameterValues_timeSeriesReference, type OntologyIrAllowedParameterValues_user, type OntologyIrAllowedStructFieldValues, type OntologyIrAllowedStructFieldValuesOverride, type OntologyIrAllowedStructFieldValues_boolean, type OntologyIrAllowedStructFieldValues_datetime, type OntologyIrAllowedStructFieldValues_geohash, type OntologyIrAllowedStructFieldValues_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType$1 as OntologyIrArrayPropertyType, type OntologyIrAsynchronousPostWritebackWebhook, type OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput, type OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput, type OntologyIrBaseFormatter, type OntologyIrBaseFormatter_boolean, type OntologyIrBaseFormatter_date, type OntologyIrBaseFormatter_knownFormatter, type OntologyIrBaseFormatter_number, type OntologyIrBaseFormatter_string, type OntologyIrBaseFormatter_timeDependent, type OntologyIrBaseFormatter_timestamp, type OntologyIrBaseParameterType, type OntologyIrBaseParameterType_decimal, type OntologyIrBaseParameterType_decimalList, type OntologyIrBaseParameterType_interfaceReference, type OntologyIrBaseParameterType_interfaceReferenceList, type OntologyIrBaseParameterType_objectReference, type OntologyIrBaseParameterType_objectReferenceList, type OntologyIrBaseParameterType_objectSetRid, type OntologyIrBaseParameterType_objectTypeReference, type OntologyIrBaseParameterType_struct, type OntologyIrBaseParameterType_structList, type OntologyIrBaseParameterType_timestamp, type OntologyIrBaseParameterType_timestampList, type OntologyIrBasicEmailBody, type OntologyIrBatchedFunctionRule, type OntologyIrCarbonWorkspaceComponentUrlTarget, type OntologyIrCarbonWorkspaceComponentUrlTarget_rid, type OntologyIrCarbonWorkspaceUrlTarget, type OntologyIrCipherTextPropertyType, type OntologyIrComparisonCondition, type OntologyIrCondition, type OntologyIrConditionValue, type OntologyIrConditionValue_interfaceParameterPropertyValue, type OntologyIrConditionValue_objectParameterPropertyValue, type OntologyIrConditionValue_parameterId, type OntologyIrConditionValue_parameterLength, type OntologyIrConditionValue_staticValue, type OntologyIrConditionValue_userProperty, type OntologyIrCondition_and, type OntologyIrCondition_comparison, type OntologyIrCondition_markings, type OntologyIrCondition_not, type OntologyIrCondition_or, type OntologyIrCondition_redacted, type OntologyIrCondition_regex, type OntologyIrCondition_true, type OntologyIrConditionalOverride, type OntologyIrConditionalValidationBlock, type OntologyIrDateRangeValue, type OntologyIrDateRangeValue_fixed, type OntologyIrDateRangeValue_now, type OntologyIrDateRangeValue_relative, type OntologyIrDatetimeTimezone, type OntologyIrDatetimeTimezoneDefinition, type OntologyIrDatetimeTimezoneDefinition_zoneId, type OntologyIrDatetimeTimezone_static, type OntologyIrDatetimeTimezone_user, type OntologyIrDeleteInterfaceLinkRule, type OntologyIrDeprecatedActionTypeStatus, type OntologyIrDeprecatedInterfaceTypeStatus, type OntologyIrDeprecatedLinkTypeStatus, type OntologyIrDeprecatedObjectTypeStatus, type OntologyIrDeprecatedPropertyTypeStatus, type OntologyIrDynamicObjectSet, type OntologyIrDynamicObjectSetInput, type OntologyIrDynamicObjectSetInputBase, type OntologyIrDynamicObjectSetInputUnioned, type OntologyIrDynamicObjectSetInput_base, type OntologyIrDynamicObjectSetInput_parameter, type OntologyIrDynamicObjectSetInput_unioned, type OntologyIrEmailBody, type OntologyIrEmailBody_basic, type OntologyIrEventMetadata, type OntologyIrExperimentalTimeDependentPropertyTypeV1, type OntologyIrFormContent, type OntologyIrFormContent_parameterId, type OntologyIrFormContent_sectionId, type OntologyIrFunctionExecutionWithRecipientInput, type OntologyIrFunctionExecutionWithRecipientInput_logicRuleValue, type OntologyIrFunctionExecutionWithRecipientInput_recipient, type OntologyIrFunctionGeneratedActionNotificationRecipients, type OntologyIrFunctionGeneratedNotificationBody, type OntologyIrFunctionRule, type OntologyIrInlineActionType, type OntologyIrInterfaceLinkType$1 as OntologyIrInterfaceLinkType, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrInterfaceTypeStatus, type OntologyIrInterfaceTypeStatus_active, type OntologyIrInterfaceTypeStatus_deprecated, type OntologyIrInterfaceTypeStatus_example, type OntologyIrInterfaceTypeStatus_experimental, type OntologyIrIntermediaryLinkDefinition, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, type OntologyIrLinkDefinition_manyToMany, type OntologyIrLinkDefinition_oneToMany, type OntologyIrLinkType, type OntologyIrLinkTypeBlockDataV2, type OntologyIrLinkTypeStatus, type OntologyIrLinkTypeStatus_active, type OntologyIrLinkTypeStatus_deprecated, type OntologyIrLinkTypeStatus_example, type OntologyIrLinkTypeStatus_experimental, type OntologyIrLinkedEntityTypeId, type OntologyIrLinkedEntityTypeId_interfaceType, type OntologyIrLinkedEntityTypeId_objectType, type OntologyIrLogicRule, type OntologyIrLogicRuleValue, type OntologyIrLogicRuleValue_currentTime, type OntologyIrLogicRuleValue_currentUser, type OntologyIrLogicRuleValue_interfaceParameterPropertyValue, type OntologyIrLogicRuleValue_objectParameterPropertyValue, type OntologyIrLogicRuleValue_parameterId, type OntologyIrLogicRuleValue_staticValue, type OntologyIrLogicRuleValue_synchronousWebhookOutput, type OntologyIrLogicRuleValue_uniqueIdentifier, type OntologyIrLogicRule_addInterfaceRule, type OntologyIrLogicRule_addObjectRule, type OntologyIrLogicRule_addOrModifyObjectRuleV2, type OntologyIrLogicRule_deleteObjectRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrLogicRule_modifyObjectRule, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarkingsCondition, type OntologyIrMediaSourceRid, type OntologyIrMediaSourceRid_datasetRid, type OntologyIrMediaSourceRid_mediaSetRid, type OntologyIrModifyInterfaceRule, type OntologyIrModifyObjectRule, type OntologyIrMultipassUserFilter, type OntologyIrMultipassUserFilter_groupFilter, type OntologyIrMultipassUserInGroupFilter, type OntologyIrNewObjectUrlTarget, type OntologyIrNonNumericSeriesValueMetadata, type OntologyIrNonNumericSeriesValueUnit, type OntologyIrNotCondition, type OntologyIrNotificationResultTypeLink, type OntologyIrNotificationTemplateInputValue, type OntologyIrNotificationTemplateInputValue_actionTriggererValue, type OntologyIrNotificationTemplateInputValue_logicRuleValue, type OntologyIrNotificationTemplateInputValue_recipientValue, type OntologyIrNumberFormatCurrency, type OntologyIrNumberFormatCustomUnit, type OntologyIrNumberFormatPrePostFix, type OntologyIrNumberFormatUnit, type OntologyIrNumberFormatter, type OntologyIrNumberFormatter_base, type OntologyIrNumberFormatter_basisPoint, type OntologyIrNumberFormatter_billions, type OntologyIrNumberFormatter_currency, type OntologyIrNumberFormatter_customUnit, type OntologyIrNumberFormatter_duration, type OntologyIrNumberFormatter_millions, type OntologyIrNumberFormatter_ordinal, type OntologyIrNumberFormatter_perMille, type OntologyIrNumberFormatter_percentage, type OntologyIrNumberFormatter_prePost, type OntologyIrNumberFormatter_thousands, type OntologyIrNumberFormatter_unit, type OntologyIrNumericOrNonNumericSeriesValueMetadataV2, type OntologyIrNumericSeriesValueMetadata, type OntologyIrNumericSeriesValueUnit, type OntologyIrNumericSeriesValueUnit_customUnit, type OntologyIrNumericSeriesValueUnit_standardUnit, type OntologyIrObjectParameterPropertyValue, type OntologyIrObjectParameterStructFieldValue, type OntologyIrObjectParameterStructListFieldValue, type OntologyIrObjectQueryPrefill, type OntologyIrObjectQueryPropertyValue, type OntologyIrObjectSetRidPrefill, type OntologyIrObjectSetSearchAround, type OntologyIrObjectSetTransform, type OntologyIrObjectSetTransform_propertyFilter, type OntologyIrObjectSetTransform_searchAround, type OntologyIrObjectType, type OntologyIrObjectTypeBlockDataV2, type OntologyIrObjectTypeDatasetDatasource, type OntologyIrObjectTypeDatasetDatasourceV2, type OntologyIrObjectTypeDatasetDatasourceV3, type OntologyIrObjectTypeDatasource, type OntologyIrObjectTypeDatasourceDefinition, type OntologyIrObjectTypeDatasourceDefinition_datasetV2, type OntologyIrObjectTypeDatasourceDefinition_datasetV3, type OntologyIrObjectTypeDatasourceDefinition_derived, type OntologyIrObjectTypeDatasourceDefinition_direct, type OntologyIrObjectTypeDatasourceDefinition_editsOnly, type OntologyIrObjectTypeDatasourceDefinition_geotimeSeries, type OntologyIrObjectTypeDatasourceDefinition_mediaSetView, type OntologyIrObjectTypeDatasourceDefinition_restrictedStream, type OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2, type OntologyIrObjectTypeDatasourceDefinition_streamV2, type OntologyIrObjectTypeDatasourceDefinition_table, type OntologyIrObjectTypeDatasourceDefinition_timeSeries, type OntologyIrObjectTypeDerivedPropertiesDatasource, type OntologyIrObjectTypeDirectDatasource, type OntologyIrObjectTypeEditsOnlyDatasource, type OntologyIrObjectTypeGeotimeSeriesDatasource, type OntologyIrObjectTypeInterfaceImplementation, type OntologyIrObjectTypeMediaDatasource, type OntologyIrObjectTypeMediaSetViewDatasource, type OntologyIrObjectTypeRestrictedStreamDatasource, type OntologyIrObjectTypeRestrictedViewDatasource, type OntologyIrObjectTypeRestrictedViewDatasourceV2, type OntologyIrObjectTypeStatus, type OntologyIrObjectTypeStatus_active, type OntologyIrObjectTypeStatus_deprecated, type OntologyIrObjectTypeStatus_endorsed, type OntologyIrObjectTypeStatus_example, type OntologyIrObjectTypeStatus_experimental, type OntologyIrObjectTypeStreamDatasource, type OntologyIrObjectTypeStreamDatasourceV2, type OntologyIrObjectTypeTableDatasource, type OntologyIrObjectTypeTimeSeriesDatasource, type OntologyIrObjectTypeTraits, type OntologyIrOneToManyLinkDefinition, type OntologyIrOntologyBlockDataV2, type OntologyIrOrCondition, type OntologyIrPackagedValueType, type OntologyIrPackagedValueTypeMetadata, type OntologyIrParameter, type OntologyIrParameterActionNotificationRecipients, type OntologyIrParameterCbacConstraint, type OntologyIrParameterCbacMarking, type OntologyIrParameterCbacMarkingOrEmpty, type OntologyIrParameterCbacMarkingOrEmpty_cbacMarking, type OntologyIrParameterCbacMarkingOrEmpty_empty, type OntologyIrParameterDateRangeValue, type OntologyIrParameterDateTimeRange, type OntologyIrParameterDateTimeRangeOrEmpty, type OntologyIrParameterDateTimeRangeOrEmpty_datetime, type OntologyIrParameterDateTimeRangeOrEmpty_empty, type OntologyIrParameterDisplayMetadata, type OntologyIrParameterMultipassUser, type OntologyIrParameterMultipassUserOrEmpty, type OntologyIrParameterMultipassUserOrEmpty_empty, type OntologyIrParameterMultipassUserOrEmpty_user, type OntologyIrParameterObjectPropertyValue, type OntologyIrParameterObjectPropertyValueOrEmpty, type OntologyIrParameterObjectPropertyValueOrEmpty_empty, type OntologyIrParameterObjectPropertyValueOrEmpty_objectPropertyValue, type OntologyIrParameterObjectQuery, type OntologyIrParameterObjectQueryOrEmpty, type OntologyIrParameterObjectQueryOrEmpty_empty, type OntologyIrParameterObjectQueryOrEmpty_objectQuery, type OntologyIrParameterObjectTypeReference, type OntologyIrParameterObjectTypeReferenceOrEmpty, type OntologyIrParameterObjectTypeReferenceOrEmpty_empty, type OntologyIrParameterObjectTypeReferenceOrEmpty_objectTypeReference, type OntologyIrParameterPrefill, type OntologyIrParameterPrefillOverride, type OntologyIrParameterPrefill_interfaceParameterPropertyValue, type OntologyIrParameterPrefill_objectParameterPropertyValue, type OntologyIrParameterPrefill_objectQueryPrefill, type OntologyIrParameterPrefill_objectQueryPropertyValue, type OntologyIrParameterPrefill_objectSetRidPrefill, type OntologyIrParameterPrefill_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, type OntologyIrParameterValidation, type OntologyIrParameterValidationBlock, type OntologyIrParameterValidationBlockOverride, type OntologyIrParameterValidationBlockOverride_allowedValues, type OntologyIrParameterValidationBlockOverride_parameterRequired, type OntologyIrParameterValidationBlockOverride_prefill, type OntologyIrParameterValidationBlockOverride_visibility, type OntologyIrParameterValidationDisplayMetadata, type OntologyIrParameterValueOneOf, type OntologyIrParameterValueOneOfOrEmpty, type OntologyIrParameterValueOneOfOrEmpty_empty, type OntologyIrParameterValueOneOfOrEmpty_oneOf, type OntologyIrPrePostFix, type OntologyIrPropertySecurityGroup, type OntologyIrPropertySecurityGroups, type OntologyIrPropertyType, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrStringConstant, type OntologyIrPropertyTypeReferenceOrStringConstant_constant, type OntologyIrPropertyTypeReferenceOrStringConstant_propertyType, type OntologyIrPropertyTypeStatus, type OntologyIrPropertyTypeStatus_active, type OntologyIrPropertyTypeStatus_deprecated, type OntologyIrPropertyTypeStatus_example, type OntologyIrPropertyTypeStatus_experimental, type OntologyIrQualifiedSeriesIdPropertyValue, type OntologyIrRegexCondition, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, type OntologyIrSection, type OntologyIrSectionConditionalOverride, type OntologyIrSectionDisplayBlock, type OntologyIrSecurityGroupAndCondition, type OntologyIrSecurityGroupComparisonCondition, type OntologyIrSecurityGroupComparisonValue, type OntologyIrSecurityGroupComparisonValue_constant, type OntologyIrSecurityGroupComparisonValue_property, type OntologyIrSecurityGroupComparisonValue_userProperty, type OntologyIrSecurityGroupGranularCondition, type OntologyIrSecurityGroupGranularCondition_and, type OntologyIrSecurityGroupGranularCondition_comparison, type OntologyIrSecurityGroupGranularCondition_markings, type OntologyIrSecurityGroupGranularCondition_not, type OntologyIrSecurityGroupGranularCondition_or, type OntologyIrSecurityGroupGranularCondition_true, type OntologyIrSecurityGroupGranularPolicy, type OntologyIrSecurityGroupGranularSecurityDefinition, type OntologyIrSecurityGroupMarkingsCondition, type OntologyIrSecurityGroupNotCondition, type OntologyIrSecurityGroupOrCondition, type OntologyIrSecurityGroupSecurityDefinition, type OntologyIrSecurityGroupSecurityDefinition_granular, type OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly, type OntologyIrSensorTrait, type OntologyIrSeriesValueMetadata, type OntologyIrSeriesValueMetadata_enum, type OntologyIrSeriesValueMetadata_numeric, type OntologyIrSeriesValueMetadata_numericOrNonNumeric, type OntologyIrSeriesValueMetadata_numericOrNonNumericV2, type OntologyIrSharedPropertyType, type OntologyIrSharedPropertyTypeBlockDataV2, type OntologyIrShortBody, type OntologyIrShortBody_basic, type OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, type OntologyIrStructFieldPrefill, type OntologyIrStructFieldPrefillOverride, type OntologyIrStructFieldPrefill_objectParameterStructFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructListFieldValue, type OntologyIrStructFieldType, type OntologyIrStructFieldValidation, type OntologyIrStructFieldValidationBlock, type OntologyIrStructFieldValidationBlockOverride, type OntologyIrStructFieldValidationBlockOverride_allowedValues, type OntologyIrStructFieldValidationBlockOverride_parameterRequired, type OntologyIrStructFieldValidationBlockOverride_prefill, type OntologyIrStructFieldValidationBlockOverride_visibility, type OntologyIrStructFieldValidationDisplayMetadata, type OntologyIrStructPropertyType$1 as OntologyIrStructPropertyType, type OntologyIrStructuredShortBody, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, type OntologyIrTimeDependentFormatter, type OntologyIrTimeDependentNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2, type OntologyIrTimeDependentNumericSeriesFormat, type OntologyIrTimeDependentSeriesFormat, type OntologyIrTimeDependentSeriesFormat_nonNumeric, type OntologyIrTimeDependentSeriesFormat_numeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumericV2, type OntologyIrTimeSeriesMetadata, type OntologyIrTimestampFormatter, type OntologyIrType, type OntologyIrType_array, type OntologyIrType_attachment, type OntologyIrType_boolean, type OntologyIrType_byte, type OntologyIrType_cipherText, type OntologyIrType_date, type OntologyIrType_decimal, type OntologyIrType_double, type OntologyIrType_experimentalTimeDependentV1, type OntologyIrType_float, type OntologyIrType_geohash, type OntologyIrType_geoshape, type OntologyIrType_geotimeSeriesReference, type OntologyIrType_integer, type OntologyIrType_long, type OntologyIrType_marking, type OntologyIrType_mediaReference, type OntologyIrType_short, type OntologyIrType_string, type OntologyIrType_struct, type OntologyIrType_timestamp, type OntologyIrType_vector, type OntologyIrUrlTarget, type OntologyIrUrlTarget_carbonWorkspace, type OntologyIrUrlTarget_logicRuleValue, type OntologyIrUrlTarget_newObject, type OntologyIrUrlTarget_relativeUrlString, type OntologyIrUrlTarget_rid, type OntologyIrValidationRule, type OntologyIrValueReferenceSource, type OntologyIrValueReferenceSource_propertyTypeRid, type OntologyIrValueTypeBlockData, type OntologyIrValueTypeBlockDataEntry, type OntologyIrWorkflowObjectTypeTraitImpl, type OntologyLoadAllEntitiesRequest, type OntologyLoadAllRequest, type OntologyLoadDatasourcesRequest, type OntologyLoadDatasourcesResponse, type OntologyLoadEntitiesRequest, type OntologyLoadEntitiesResponse, type OntologyLoadRequest, type OntologyLoadResponse, type OntologyMetadataValidationError, type OntologyMetadataValidationError_actionType, type OntologyMetadataValidationError_interfaceType, type OntologyMetadataValidationError_linkType, type OntologyMetadataValidationError_objectType, type OntologyMetadataValidationError_ruleSet, type OntologyMetadataValidationError_sharedPropertyType, type OntologyMetadataValidationError_typeGroup, type OntologyMetadataValidationError_workflow, type OntologyModificationEvent, type OntologyModificationEvent_actionTypeCreated, type OntologyModificationEvent_actionTypeDeleted, type OntologyModificationEvent_actionTypeUpdated, type OntologyModificationEvent_branchClosed, type OntologyModificationEvent_branchDeleted, type OntologyModificationEvent_branchMerged, type OntologyModificationEvent_interfaceTypeCreated, type OntologyModificationEvent_interfaceTypeDeleted, type OntologyModificationEvent_interfaceTypeUpdated, type OntologyModificationEvent_linkTypeCreated, type OntologyModificationEvent_linkTypeDeleted, type OntologyModificationEvent_linkTypeUpdated, type OntologyModificationEvent_objectTypeCreated, type OntologyModificationEvent_objectTypeDeleted, type OntologyModificationEvent_objectTypeUpdated, type OntologyModificationEvent_sharedPropertyTypeCreated, type OntologyModificationEvent_sharedPropertyTypeDeleted, type OntologyModificationEvent_sharedPropertyTypeUpdated, type OntologyModifyRequest, type OntologyModifyResponse, type OntologyPackageRid, type OntologyProposalIdentifier, type OntologyProposalIdentifier_ontologyVersion, type OntologyProposalRid, type OntologyRid, type OntologyRidAndBranch, type OntologyRidsForEntitiesRequest, type OntologyRidsForEntitiesResponse, type OntologySparkInputManagerRid, type OntologySparkInputProperties, type OntologyVersion, type OrCondition, type OrConditionModification, type OrganizationMarkingId, type OrganizationRid, type OrganizationRidsAndEntityResourceIdentifiers, type OrganizationRidsForOntologyResponse, type OtherValueAllowed, type PackagedEntityRid, type PackagedEntityRid_actionTypeRid, type PackagedEntityRid_interfaceTypeRid, type PackagedEntityRid_linkTypeRid, type PackagedEntityRid_objectTypeRid, type PackagedEntityRid_sharedPropertyTypeRid, type Parameter, type ParameterActionNotificationRecipients, type ParameterActionNotificationRecipientsModification, type ParameterAttachment, type ParameterAttachmentOrEmpty, type ParameterAttachmentOrEmpty_attachment, type ParameterAttachmentOrEmpty_empty, type ParameterBoolean, type ParameterBooleanOrEmpty, type ParameterBooleanOrEmpty_boolean, type ParameterBooleanOrEmpty_empty, type ParameterCbacConstraint, type ParameterCbacConstraintModification, type ParameterCbacMarking, type ParameterCbacMarkingModification, type ParameterCbacMarkingOrEmpty, type ParameterCbacMarkingOrEmptyModification, type ParameterCbacMarkingOrEmptyModification_cbacMarking, type ParameterCbacMarkingOrEmptyModification_empty, type ParameterCbacMarkingOrEmpty_cbacMarking, type ParameterCbacMarkingOrEmpty_empty, type ParameterDateRangeValue, type ParameterDateRangeValueModification, type ParameterDateTimeRange, type ParameterDateTimeRangeModification, type ParameterDateTimeRangeOrEmpty, type ParameterDateTimeRangeOrEmptyModification, type ParameterDateTimeRangeOrEmptyModification_datetime, type ParameterDateTimeRangeOrEmptyModification_empty, type ParameterDateTimeRangeOrEmpty_datetime, type ParameterDateTimeRangeOrEmpty_empty, type ParameterDisplayMetadata, type ParameterFreeText, type ParameterFreeTextOrEmpty, type ParameterFreeTextOrEmpty_empty, type ParameterFreeTextOrEmpty_text, type ParameterGeohash, type ParameterGeohashOrEmpty, type ParameterGeohashOrEmpty_empty, type ParameterGeohashOrEmpty_geohash, type ParameterGeoshape, type ParameterGeoshapeOrEmpty, type ParameterGeoshapeOrEmpty_empty, type ParameterGeoshapeOrEmpty_geoshape, type ParameterGeotimeSeriesReference, type ParameterGeotimeSeriesReferenceOrEmpty, type ParameterGeotimeSeriesReferenceOrEmpty_empty, type ParameterGeotimeSeriesReferenceOrEmpty_geotimeSeries, type ParameterId, type ParameterInterfaceObjectQuery, type ParameterInterfaceObjectQueryModification, type ParameterInterfaceObjectQueryOrEmpty, type ParameterInterfaceObjectQueryOrEmptyModification, type ParameterInterfaceObjectQueryOrEmptyModification_empty, type ParameterInterfaceObjectQueryOrEmptyModification_interfaceObjectQuery, type ParameterInterfaceObjectQueryOrEmpty_empty, type ParameterInterfaceObjectQueryOrEmpty_interfaceObjectQuery, type ParameterInterfacePropertyValueOrEmpty, type ParameterInterfacePropertyValueOrEmptyModification, type ParameterInterfacePropertyValueOrEmptyModification_empty, type ParameterInterfacePropertyValueOrEmptyModification_unrestricted, type ParameterInterfacePropertyValueOrEmpty_empty, type ParameterInterfacePropertyValueOrEmpty_unrestricted, type ParameterLength, type ParameterLength_parameterId, type ParameterMandatoryMarking, type ParameterMandatoryMarkingOrEmpty, type ParameterMandatoryMarkingOrEmpty_empty, type ParameterMandatoryMarkingOrEmpty_mandatoryMarking, type ParameterMediaReference, type ParameterMediaReferenceOrEmpty, type ParameterMediaReferenceOrEmpty_empty, type ParameterMediaReferenceOrEmpty_mediaReference, type ParameterMultipassGroup, type ParameterMultipassGroupOrEmpty, type ParameterMultipassGroupOrEmpty_empty, type ParameterMultipassGroupOrEmpty_group, type ParameterMultipassUser, type ParameterMultipassUserModification, type ParameterMultipassUserOrEmpty, type ParameterMultipassUserOrEmptyModification, type ParameterMultipassUserOrEmptyModification_empty, type ParameterMultipassUserOrEmptyModification_user, type ParameterMultipassUserOrEmpty_empty, type ParameterMultipassUserOrEmpty_user, type ParameterObjectList, type ParameterObjectListOrEmpty, type ParameterObjectListOrEmpty_empty, type ParameterObjectListOrEmpty_objectList, type ParameterObjectPropertyValue, type ParameterObjectPropertyValueModification, type ParameterObjectPropertyValueOrEmpty, type ParameterObjectPropertyValueOrEmptyModification, type ParameterObjectPropertyValueOrEmptyModification_empty, type ParameterObjectPropertyValueOrEmptyModification_objectPropertyValue, type ParameterObjectPropertyValueOrEmpty_empty, type ParameterObjectPropertyValueOrEmpty_objectPropertyValue, type ParameterObjectQuery, type ParameterObjectQueryModification, type ParameterObjectQueryOrEmpty, type ParameterObjectQueryOrEmptyModification, type ParameterObjectQueryOrEmptyModification_empty, type ParameterObjectQueryOrEmptyModification_objectQuery, type ParameterObjectQueryOrEmpty_empty, type ParameterObjectQueryOrEmpty_objectQuery, type ParameterObjectSetRid, type ParameterObjectSetRidOrEmpty, type ParameterObjectSetRidOrEmpty_empty, type ParameterObjectSetRidOrEmpty_objectSetRid, type ParameterObjectTypeReference, type ParameterObjectTypeReferenceModification, type ParameterObjectTypeReferenceOrEmpty, type ParameterObjectTypeReferenceOrEmptyModification, type ParameterObjectTypeReferenceOrEmptyModification_empty, type ParameterObjectTypeReferenceOrEmptyModification_objectTypeReference, type ParameterObjectTypeReferenceOrEmpty_empty, type ParameterObjectTypeReferenceOrEmpty_objectTypeReference, type ParameterPrefill, type ParameterPrefillModification, type ParameterPrefillModification_interfaceParameterPropertyValue, type ParameterPrefillModification_objectParameterPropertyValue, type ParameterPrefillModification_objectQueryPrefill, type ParameterPrefillModification_objectQueryPropertyValue, type ParameterPrefillModification_objectSetRidPrefill, type ParameterPrefillModification_redacted, type ParameterPrefillModification_staticObject, type ParameterPrefillModification_staticValue, type ParameterPrefillOverride, type ParameterPrefillOverrideModification, type ParameterPrefill_interfaceParameterPropertyValue, type ParameterPrefill_objectParameterPropertyValue, type ParameterPrefill_objectQueryPrefill, type ParameterPrefill_objectQueryPropertyValue, type ParameterPrefill_objectSetRidPrefill, type ParameterPrefill_redacted, type ParameterPrefill_staticObject, type ParameterPrefill_staticValue, type ParameterRange, type ParameterRangeModification, type ParameterRangeOrEmpty, type ParameterRangeOrEmptyModification, type ParameterRangeOrEmptyModification_empty, type ParameterRangeOrEmptyModification_range, type ParameterRangeOrEmpty_empty, type ParameterRangeOrEmpty_range, type ParameterRangeValue, type ParameterRangeValueModification, type ParameterRenderHint, type ParameterRequiredConfiguration, type ParameterRequiredOverride, type ParameterRid, type ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, type ParameterValidation, type ParameterValidationBlock, type ParameterValidationBlockModification, type ParameterValidationBlockOverride, type ParameterValidationBlockOverrideModification, type ParameterValidationBlockOverrideModification_allowedValues, type ParameterValidationBlockOverrideModification_parameterRequired, type ParameterValidationBlockOverrideModification_prefill, type ParameterValidationBlockOverrideModification_visibility, type ParameterValidationBlockOverride_allowedValues, type ParameterValidationBlockOverride_parameterRequired, type ParameterValidationBlockOverride_prefill, type ParameterValidationBlockOverride_visibility, type ParameterValidationDisplayMetadata, type ParameterValidationDisplayMetadataModification, type ParameterValidationModification, type ParameterValidationNotFoundError, type ParameterValidationReferencesLaterParametersError, type ParameterValueOneOf, type ParameterValueOneOfOrEmpty, type ParameterValueOneOfOrEmpty_empty, type ParameterValueOneOfOrEmpty_oneOf, type ParametersDoNotMatchParameterOrderingError, type PartialObjectType, type PartialObjectTypeCreateRequest, type PartialObjectTypeDeleteRequest, type PartialObjectTypeModifyRequest, type PartialObjectTypeModifyRequest_create, type PartialObjectTypeModifyRequest_delete, type PartialObjectTypeModifyRequest_update, type PartialObjectTypeUpdateRequest, type PartialObjectTypeWithoutRids, type PatchBackupInitializationConfigurationSourceDoesNotExistError, type PolicyVersion, type PrePostFix, type PrincipalId, type PropertiesReferenceDuplicateColumnNameWrapper, type Property, type PropertyId, type PropertyRenderHint, type PropertySecurityGroup, type PropertySecurityGroupModification, type PropertySecurityGroupRid, type PropertySecurityGroups, type PropertySecurityGroupsModification, type PropertyType, type PropertyTypeDataConstraints, type PropertyTypeDataConstraintsWrapper, type PropertyTypeDataConstraints_array, type PropertyTypeDataConstraints_boolean, type PropertyTypeDataConstraints_date, type PropertyTypeDataConstraints_decimal, type PropertyTypeDataConstraints_double, type PropertyTypeDataConstraints_float, type PropertyTypeDataConstraints_integer, type PropertyTypeDataConstraints_long, type PropertyTypeDataConstraints_short, type PropertyTypeDataConstraints_string, type PropertyTypeDataConstraints_struct, type PropertyTypeDataConstraints_timestamp, type PropertyTypeDataValue, type PropertyTypeDataValue_array, type PropertyTypeDataValue_boolean, type PropertyTypeDataValue_byte, type PropertyTypeDataValue_date, type PropertyTypeDataValue_decimal, type PropertyTypeDataValue_double, type PropertyTypeDataValue_float, type PropertyTypeDataValue_integer, type PropertyTypeDataValue_long, type PropertyTypeDataValue_short, type PropertyTypeDataValue_string, type PropertyTypeDataValue_timestamp, type PropertyTypeDisplayMetadata, type PropertyTypeId, type PropertyTypeIdentifier, type PropertyTypeIdentifier_id, type PropertyTypeIdentifier_rid, type PropertyTypeLocator, type PropertyTypeMappingInfo, type PropertyTypeMappingInfo_column, type PropertyTypeMappingInfo_editOnly, type PropertyTypeMappingInfo_struct, type PropertyTypeReference, type PropertyTypeReferenceOrNonNumericInternalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrNumericInternalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrStringConstant, type PropertyTypeReferenceOrStringConstant_constant, type PropertyTypeReferenceOrStringConstant_propertyType, type PropertyTypeReference_baseType, type PropertyTypeRid, type PropertyTypeStatus, type PropertyTypeStatus_active, type PropertyTypeStatus_deprecated, type PropertyTypeStatus_example, type PropertyTypeStatus_experimental, type PropertyWithoutRid, type PutActionTypeRequest, type PutParameterRequest, type PutParameterRequestModification, type PutSectionRequest, type PutSectionRequestModification, type QualifiedSeriesIdPropertyValue, type QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, type ReferencedLinkTypesInWorkflowNotFoundError, type ReferencedLinkTypesNotFoundError, type ReferencedObjectTypesChange, type ReferencedObjectTypesInWorkflowNotFoundError, type ReferencedObjectTypesNotFoundError, type RegexCondition, type RegexConditionModification, type RegexConstraint$1 as RegexConstraint, type RelationCardinality, type RelationDisplayMetadata, type RelationId, type RelationRid, type RelativeDateRangeTense, type RelativeDateRangeValue, type RenderingSettings, type RenderingSettings_allNotificationRenderingMustSucceed, type RenderingSettings_anyNotificationRenderingCanFail, type RestrictedViewRid, type RestrictedViewTransactionRid, type RetentionPolicy, type RetentionPolicy_none, type RetentionPolicy_time, type RidFormatter, type RidFormatter_allFoundryRids, type RidFormatter_objectsPlatformRids, type RidUrlTarget, type RidUrlTargetModification, type RoleId, type RoleSetId, type RuleSetBinding, type RuleSetError, type RuleSetError_ruleSetsAlreadyExist, type RuleSetError_ruleSetsNotFound, type RuleSetRid, type RuleSetsAlreadyExistError, type RuleSetsNotFoundError, type SafeArg, type SafeDatasourceIdentifier, type SafeDatasourceIdentifier_datasetRid, type SafeDatasourceIdentifier_derivedPropertiesSourceRid, type SafeDatasourceIdentifier_directSourceRid, type SafeDatasourceIdentifier_editsOnly, type SafeDatasourceIdentifier_geotimeSeriesIntegrationRid, type SafeDatasourceIdentifier_mediaSetView, type SafeDatasourceIdentifier_mediaSourceRids, type SafeDatasourceIdentifier_restrictedStream, type SafeDatasourceIdentifier_restrictedViewRid, type SafeDatasourceIdentifier_streamLocatorRid, type SafeDatasourceIdentifier_tableRid, type SafeDatasourceIdentifier_timeSeriesSyncRid, type SchemaMigrationRid, type SchemaVersion, type Section, type SectionConditionalOverride, type SectionConditionalOverrideModification, type SectionContent, type SectionContent_parameterId, type SectionDisplayBlock, type SectionDisplayBlockModification, type SectionDisplayBlockOverride, type SectionDisplayBlockOverride_visibility, type SectionDisplayMetadata, type SectionId, type SectionRid, type SectionStyle, type SectionStyle_box, type SectionStyle_minimal, type SectionValidationDisplayMetadata, type SectionVisibilityOverride, type SecurityGroupAndCondition, type SecurityGroupAndConditionModification, type SecurityGroupComparisonCondition, type SecurityGroupComparisonConditionModification, type SecurityGroupComparisonConstant, type SecurityGroupComparisonConstant_boolean, type SecurityGroupComparisonConstant_string, type SecurityGroupComparisonConstant_strings, type SecurityGroupComparisonOperator, type SecurityGroupComparisonUserProperty, type SecurityGroupComparisonUserProperty_groupIds, type SecurityGroupComparisonUserProperty_groupNames, type SecurityGroupComparisonUserProperty_userAttributes, type SecurityGroupComparisonUserProperty_userId, type SecurityGroupComparisonUserProperty_username, type SecurityGroupComparisonValue, type SecurityGroupComparisonValueModification, type SecurityGroupComparisonValueModification_constant, type SecurityGroupComparisonValueModification_property, type SecurityGroupComparisonValueModification_userProperty, type SecurityGroupComparisonValue_constant, type SecurityGroupComparisonValue_property, type SecurityGroupComparisonValue_userProperty, type SecurityGroupGranularCondition, type SecurityGroupGranularConditionModification, type SecurityGroupGranularConditionModification_and, type SecurityGroupGranularConditionModification_comparison, type SecurityGroupGranularConditionModification_markings, type SecurityGroupGranularConditionModification_not, type SecurityGroupGranularConditionModification_or, type SecurityGroupGranularConditionModification_true, type SecurityGroupGranularCondition_and, type SecurityGroupGranularCondition_comparison, type SecurityGroupGranularCondition_markings, type SecurityGroupGranularCondition_not, type SecurityGroupGranularCondition_or, type SecurityGroupGranularCondition_true, type SecurityGroupGranularPolicy, type SecurityGroupGranularPolicyModification, type SecurityGroupGranularSecurityDefinition, type SecurityGroupGranularSecurityDefinitionModification, type SecurityGroupGroupIdsUserProperty, type SecurityGroupGroupNamesUserProperty, type SecurityGroupMandatoryOnlySecurityDefinition, type SecurityGroupMandatoryOnlySecurityDefinitionModification, type SecurityGroupMandatoryPolicy, type SecurityGroupMarkingsCondition, type SecurityGroupMarkingsConditionModification, type SecurityGroupNotCondition, type SecurityGroupNotConditionModification, type SecurityGroupOrCondition, type SecurityGroupOrConditionModification, type SecurityGroupSecurityDefinition, type SecurityGroupSecurityDefinitionModification, type SecurityGroupSecurityDefinitionModification_granular, type SecurityGroupSecurityDefinitionModification_mandatoryOnly, type SecurityGroupSecurityDefinition_granular, type SecurityGroupSecurityDefinition_mandatoryOnly, type SecurityGroupTrueCondition, type SecurityGroupTrueConditionModification, type SecurityGroupUserAttributesUserProperty, type SecurityGroupUserIdUserProperty, type SecurityGroupUsernameUserProperty, type SemanticFunctionVersion, type SensorTrait, type SeriesIdPropertyValue, type SeriesValueMetadata, type SeriesValueMetadata_enum, type SeriesValueMetadata_numeric, type SeriesValueMetadata_numericOrNonNumeric, type SeriesValueMetadata_numericOrNonNumericV2, type SharedPropertiesSummary, type SharedPropertyType, type SharedPropertyTypeCreatedEvent, type SharedPropertyTypeDeletedEvent, type SharedPropertyTypeDisplayMetadata, type SharedPropertyTypeError, type SharedPropertyTypeError_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, type SharedPropertyTypeRid, type SharedPropertyTypeRidOrIdInRequest, type SharedPropertyTypeRidOrIdInRequest_idInRequest, type SharedPropertyTypeRidOrIdInRequest_rid, type SharedPropertyTypeSoftLinkType, type SharedPropertyTypeStructFieldLogicRuleValueModification, type SharedPropertyTypeUpdatedEvent, type SharedPropertyTypesAlreadyExistError, type SharedPropertyTypesNotFoundError, type ShortBody, type ShortBodyModification, type ShortBodyModification_basic, type ShortBody_basic, type ShortPropertyType, type ShortTypeDataConstraints$1 as ShortTypeDataConstraints, type ShortTypeDataConstraints_oneOf$1 as ShortTypeDataConstraints_oneOf, type ShortTypeDataConstraints_range$1 as ShortTypeDataConstraints_range, type ShortTypeDataValue$1 as ShortTypeDataValue, type ShortTypeRangeConstraint$1 as ShortTypeRangeConstraint, type SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamViewRid, type StringFormatter, type StringPropertyType, type StringTypeDataConstraints$1 as StringTypeDataConstraints, type StringTypeDataConstraints_isRid$1 as StringTypeDataConstraints_isRid, type StringTypeDataConstraints_isUuid$1 as StringTypeDataConstraints_isUuid, type StringTypeDataConstraints_length$1 as StringTypeDataConstraints_length, type StringTypeDataConstraints_oneOf$1 as StringTypeDataConstraints_oneOf, type StringTypeDataConstraints_regex$1 as StringTypeDataConstraints_regex, type StringTypeDataValue$1 as StringTypeDataValue, type StringTypeIsRidConstraint$1 as StringTypeIsRidConstraint, type StringTypeIsUuidConstraint$1 as StringTypeIsUuidConstraint, type StringTypeLengthConstraint$1 as StringTypeLengthConstraint, type StructFieldAlias, type StructFieldApiNameMapping, type StructFieldApiNameOrRid, type StructFieldApiNameOrRid_apiName, type StructFieldApiNameOrRid_rid, type StructFieldConditionalOverride, type StructFieldConditionalOverrideModification, type StructFieldConditionalValidationBlock, type StructFieldConditionalValidationBlockModification, type StructFieldDisplayMetadata, type StructFieldLogicRuleValue, type StructFieldLogicRuleValueMappingModification, type StructFieldLogicRuleValueModification, type StructFieldLogicRuleValueModification_structListParameterFieldValue, type StructFieldLogicRuleValueModification_structParameterFieldValue, type StructFieldLogicRuleValue_structListParameterFieldValue, type StructFieldLogicRuleValue_structParameterFieldValue, type StructFieldName, type StructFieldPrefill, type StructFieldPrefillModification, type StructFieldPrefillModification_objectParameterStructFieldValue, type StructFieldPrefillModification_objectParameterStructListFieldValue, type StructFieldPrefillOverride, type StructFieldPrefillOverrideModification, type StructFieldPrefill_objectParameterStructFieldValue, type StructFieldPrefill_objectParameterStructListFieldValue, type StructFieldRid, type StructFieldType, type StructFieldValidation, type StructFieldValidationBlock, type StructFieldValidationBlockModification, type StructFieldValidationBlockOverride, type StructFieldValidationBlockOverrideModification, type StructFieldValidationBlockOverrideModification_allowedValues, type StructFieldValidationBlockOverrideModification_parameterRequired, type StructFieldValidationBlockOverrideModification_prefill, type StructFieldValidationBlockOverrideModification_visibility, type StructFieldValidationBlockOverride_allowedValues, type StructFieldValidationBlockOverride_parameterRequired, type StructFieldValidationBlockOverride_prefill, type StructFieldValidationBlockOverride_visibility, type StructFieldValidationDisplayMetadata, type StructFieldValidationDisplayMetadataModification, type StructFieldValidationModification, type StructListParameterFieldValue, type StructParameterFieldDisplayMetadata, type StructParameterFieldDisplayMetadataV2, type StructParameterFieldValue, type StructPropertyFieldType, type StructPropertyFieldType_boolean, type StructPropertyFieldType_date, type StructPropertyFieldType_double, type StructPropertyFieldType_geohash, type StructPropertyFieldType_integer, type StructPropertyFieldType_long, type StructPropertyFieldType_string, type StructPropertyFieldType_timestamp, type StructPropertyType, type StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, type SynchronousPreWritebackWebhook, type SynchronousPreWritebackWebhookModification, type SynchronousPreWritebackWebhookModification_staticDirectInput, type SynchronousPreWritebackWebhookModification_staticFunctionInput, type SynchronousPreWritebackWebhook_staticDirectInput, type SynchronousPreWritebackWebhook_staticFunctionInput, type TableDisplayAndFormat, type TableLocator, type TableRid, type TemplateNotificationBody, type TemplateNotificationBodyModification, type TemplateRidPropertyValue, type TextEmbeddingModel, type TextEmbeddingModel_foundryLiveDeployment, type TextEmbeddingModel_lms, type TimeBasedRetentionPolicy, type TimeCodeFormat, type TimeDependentFormatter, type TimeDependentNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormatV2, type TimeDependentNumericSeriesFormat, type TimeDependentSeriesFormat, type TimeDependentSeriesFormat_nonNumeric, type TimeDependentSeriesFormat_numeric, type TimeDependentSeriesFormat_numericOrNonNumeric, type TimeDependentSeriesFormat_numericOrNonNumericV2, type TimeSeriesMetadata, type TimeSeriesSyncRid, type TimeSeriesSyncViewRid, type TimestampFormatter, type TimestampPropertyType, type TimestampTypeDataConstraints$1 as TimestampTypeDataConstraints, type TimestampTypeDataValue$1 as TimestampTypeDataValue, type TimestampTypeRangeConstraint$1 as TimestampTypeRangeConstraint, type TrueCondition, type Type, type TypeClass, type TypeClassEntityIdentifier, type TypeClassEntityIdentifier_actionTypeRid, type TypeClassEntityIdentifier_linkTypeRid, type TypeClassEntityIdentifier_objectTypeRid, type TypeClassEntityIdentifier_sharedPropertyTypeRid, type TypeGroup, type TypeGroupDisplayMetadata, type TypeGroupError, type TypeGroupError_typeGroupsAlreadyExist, type TypeGroupError_typeGroupsNotFound, type TypeGroupGetOrganizationsRequest, type TypeGroupGetOrganizationsResponse, type TypeGroupIconColors, type TypeGroupIdInRequest, type TypeGroupLoadRequest, type TypeGroupLoadResponse, type TypeGroupRid, type TypeGroupRidOrIdInRequest, type TypeGroupRidOrIdInRequest_idInRequest, type TypeGroupRidOrIdInRequest_rid, type TypeGroupSetOrganizationsRequest, type TypeGroupsAlreadyExistError, type TypeGroupsNotFoundError, type TypeGroupsSummary, type Type_array, type Type_attachment, type Type_boolean, type Type_byte, type Type_cipherText, type Type_date, type Type_decimal, type Type_double, type Type_experimentalTimeDependentV1, type Type_float, type Type_geohash, type Type_geoshape, type Type_geotimeSeriesReference, type Type_integer, type Type_long, type Type_marking, type Type_mediaReference, type Type_short, type Type_string, type Type_struct, type Type_timestamp, type Type_vector, type UniqueIdentifier, type UnresolvedOntologySparkInputProperties, type UnrestrictedParameterInterfacePropertyValue, type UnsafeArg, type UrlTarget, type UrlTargetModification, type UrlTargetModification_carbonWorkspace, type UrlTargetModification_logicRuleValue, type UrlTargetModification_newObject, type UrlTargetModification_relativeUrlString, type UrlTargetModification_rid, type UrlTarget_carbonWorkspace, type UrlTarget_logicRuleValue, type UrlTarget_newObject, type UrlTarget_relativeUrlString, type UrlTarget_rid, type UseCaseRid, type UserAttributes, type UserId, type UserOrGroupId, type UserOrGroupId_groupId, type UserOrGroupId_userId, type UserProperty, type UserPropertyId, type UserPropertyId_currentUser, type UserPropertyValue, type UserPropertyValue_groupIds, type UserPropertyValue_groupNames, type UserPropertyValue_organizationMarkingIds, type UserPropertyValue_userAttributes, type UserPropertyValue_userId, type UserPropertyValue_userName, type UserTimezone, type UserValue, type ValidationRule, type ValidationRuleDisplayMetadata, type ValidationRuleIdInRequest, type ValidationRuleIdentifier, type ValidationRuleIdentifier_rid, type ValidationRuleIdentifier_validationRuleIdInRequest, type ValidationRuleModification, type ValidationRuleRid, type ValueReferenceId, type ValueReferenceSource, type ValueReferenceSource_propertyTypeRid, type ValueTypeApiName, type ValueTypeApiNameReference, type ValueTypeDataConstraint, type ValueTypeDisplayMetadata, type ValueTypeIdInRequest, type ValueTypeInputManagerRid, type ValueTypeLabel, type ValueTypeReference$1 as ValueTypeReference, type ValueTypeRid$1 as ValueTypeRid, type ValueTypeStatus, type ValueTypeVersion, type ValueTypeVersionId$1 as ValueTypeVersionId, type VectorPropertyType, type VectorSimilarityFunction, type VersionReference, type VersionReference_ontologyBranch, type VersionReference_ontologyVersion, type VersionedActionTypeRid, type VersionedActionTypesNotFoundError, type VersionedLinkTypeRid, type VersionedObjectTypeRid, type Visibility, type VisibilityOverride, type WebhookInputParamName, type WebhookOutputParamName, type WebhookRid, type WebhookVersion, type WhitespaceAnalyzer, type WorkflowError, type WorkflowError_deletedLinkTypesStillInUseInWorkflow, type WorkflowError_deletedObjectTypesStillInUseInWorkflow, type WorkflowError_referencedLinkTypesInWorkflowNotFound, type WorkflowError_referencedObjectTypesInWorkflowNotFound, type WorkflowError_workflowsAlreadyExist, type WorkflowError_workflowsNotFound, type WorkflowObjectTypeTrait, type WorkflowObjectTypeTraitDescription, type WorkflowObjectTypeTraitDisplayName, type WorkflowObjectTypeTraitId, type WorkflowObjectTypeTraitImpl, type WorkflowObjectTypeTraitProperty, type WorkflowObjectTypeTraitPropertyDescription, type WorkflowObjectTypeTraitPropertyDisplayName, type WorkflowObjectTypeTraitPropertyId, type WorkflowObjectTypeTraitReference, type WorkflowObjectTypeTraitVersion, type WorkflowsAlreadyExistError, type WorkflowsNotFoundError, type WorkshopModuleRid, type WorkshopReference, bulkLoadOntologyEntities, createTemporaryObjectSet, getBulkLinksPage, getLinkTypesForObjectTypes, loadAllOntologies };
|