@osdk/client.unstable 2.2.0-beta.21 → 2.2.0-beta.23
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 +17 -0
- package/build/cjs/index.d.cts +513 -188
- package/build/types/blockDataIr.d.ts +3 -62
- package/build/types/blockDataIr.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +125 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts.map +1 -1
- package/build/types/index.d.ts +2 -2
- package/build/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/build/cjs/index.d.cts
CHANGED
|
@@ -2928,7 +2928,7 @@ interface OntologyIrObjectLocatorListValue {
|
|
|
2928
2928
|
* A parameter value type that is an ObjectLocator.
|
|
2929
2929
|
*/
|
|
2930
2930
|
type OntologyIrObjectLocatorValue = OntologyIrObjectLocator;
|
|
2931
|
-
type OntologyIrObjectPrimaryKey = Record<ObjectTypeFieldApiName
|
|
2931
|
+
type OntologyIrObjectPrimaryKey = Record<ObjectTypeFieldApiName, PrimaryKeyValue>;
|
|
2932
2932
|
/**
|
|
2933
2933
|
* ObjectReferenceListType specifies that this parameter must be a list of ObjectLocators.
|
|
2934
2934
|
*/
|
|
@@ -3490,7 +3490,7 @@ type MultiHopStepDefinition = MultiHopStepDefinition_searchAround;
|
|
|
3490
3490
|
*/
|
|
3491
3491
|
interface OntologyIrAggregatedPropertiesDefinition {
|
|
3492
3492
|
linkDefinition: OntologyIrLinkDefinition$1;
|
|
3493
|
-
propertyTypeMapping: Record<ObjectTypeFieldApiName
|
|
3493
|
+
propertyTypeMapping: Record<ObjectTypeFieldApiName, OntologyIrDerivedPropertyAggregation>;
|
|
3494
3494
|
}
|
|
3495
3495
|
interface OntologyIrDerivedPropertiesDefinition_linkedProperties {
|
|
3496
3496
|
type: "linkedProperties";
|
|
@@ -3568,7 +3568,7 @@ interface OntologyIrLinkedCollection {
|
|
|
3568
3568
|
*/
|
|
3569
3569
|
interface OntologyIrLinkedPropertiesDefinition {
|
|
3570
3570
|
linkDefinition: OntologyIrLinkDefinition$1;
|
|
3571
|
-
propertyTypeMapping: Record<ObjectTypeFieldApiName
|
|
3571
|
+
propertyTypeMapping: Record<ObjectTypeFieldApiName, OntologyIrPropertyTypeIdentifier>;
|
|
3572
3572
|
}
|
|
3573
3573
|
interface OntologyIrLinkTypeLinkDefinition {
|
|
3574
3574
|
linkTypeIdentifier: OntologyIrDerivedPropertyLinkTypeIdentifier;
|
|
@@ -3587,7 +3587,7 @@ interface OntologyIrMultiHopStepDefinition_searchAround {
|
|
|
3587
3587
|
type OntologyIrMultiHopStepDefinition = OntologyIrMultiHopStepDefinition_searchAround;
|
|
3588
3588
|
interface OntologyIrPropertyTypeIdentifier_propertyType {
|
|
3589
3589
|
type: "propertyType";
|
|
3590
|
-
propertyType: ObjectTypeFieldApiName
|
|
3590
|
+
propertyType: ObjectTypeFieldApiName;
|
|
3591
3591
|
}
|
|
3592
3592
|
type OntologyIrPropertyTypeIdentifier = OntologyIrPropertyTypeIdentifier_propertyType;
|
|
3593
3593
|
interface OntologyIrSearchAroundStep {
|
|
@@ -4076,6 +4076,196 @@ type NonRevertibleMigration = NonRevertibleMigration_initializePatches | NonReve
|
|
|
4076
4076
|
interface ObjectTypePrimaryKeyRename {
|
|
4077
4077
|
rename: RenamePropertyMigration;
|
|
4078
4078
|
}
|
|
4079
|
+
/**
|
|
4080
|
+
* Migration to cast a property to another type.
|
|
4081
|
+
*/
|
|
4082
|
+
interface OntologyIrCastMigration {
|
|
4083
|
+
property: ObjectTypeFieldApiName;
|
|
4084
|
+
source: OntologyIrType;
|
|
4085
|
+
target: OntologyIrType;
|
|
4086
|
+
}
|
|
4087
|
+
/**
|
|
4088
|
+
* Migration to cast a property to another type.
|
|
4089
|
+
*/
|
|
4090
|
+
interface OntologyIrCastStructFieldMigration {
|
|
4091
|
+
property: ObjectTypeFieldApiName;
|
|
4092
|
+
source: StructPropertyFieldType;
|
|
4093
|
+
structField: StructFieldRid;
|
|
4094
|
+
target: StructPropertyFieldType;
|
|
4095
|
+
}
|
|
4096
|
+
/**
|
|
4097
|
+
* Migration to drop the given property.
|
|
4098
|
+
*/
|
|
4099
|
+
interface OntologyIrDropPropertyMigration {
|
|
4100
|
+
property: ObjectTypeFieldApiName;
|
|
4101
|
+
}
|
|
4102
|
+
/**
|
|
4103
|
+
* Migration to drop a struct field of a struct property
|
|
4104
|
+
*/
|
|
4105
|
+
interface OntologyIrDropStructFieldMigration {
|
|
4106
|
+
property: ObjectTypeFieldApiName;
|
|
4107
|
+
structField: StructFieldRid;
|
|
4108
|
+
}
|
|
4109
|
+
/**
|
|
4110
|
+
* Update the edits resolution strategy of an object type from edits always win to latest timestamp.
|
|
4111
|
+
*/
|
|
4112
|
+
interface OntologyIrEditsWinToLatestTimestamp {
|
|
4113
|
+
datasourceProperties: Array<ObjectTypeFieldApiName>;
|
|
4114
|
+
datasourceRid: DatasourceRid;
|
|
4115
|
+
timestampPropertyRid: ObjectTypeFieldApiName;
|
|
4116
|
+
timestampValue: any;
|
|
4117
|
+
}
|
|
4118
|
+
interface OntologyIrInitializationSource_backup {
|
|
4119
|
+
type: "backup";
|
|
4120
|
+
backup: OntologyIrPatchBackup;
|
|
4121
|
+
}
|
|
4122
|
+
/**
|
|
4123
|
+
* Metadata regarding the source of data that can be used to run a one time initialization of an ontology entity.
|
|
4124
|
+
*/
|
|
4125
|
+
type OntologyIrInitializationSource = OntologyIrInitializationSource_backup;
|
|
4126
|
+
/**
|
|
4127
|
+
* Migration that can be used to initialize an ontology entity with data that's stored in the initialization
|
|
4128
|
+
* source.
|
|
4129
|
+
*/
|
|
4130
|
+
interface OntologyIrInitializePatchesMigration {
|
|
4131
|
+
datasourceRenames: Array<RenameDatasourceMigration>;
|
|
4132
|
+
initializationSource: OntologyIrInitializationSource;
|
|
4133
|
+
primaryKeyRenames: OntologyIrPrimaryKeyRenames;
|
|
4134
|
+
propertyRenames: Array<OntologyIrRenamePropertyMigration>;
|
|
4135
|
+
}
|
|
4136
|
+
/**
|
|
4137
|
+
* Update the edits resolution strategy of an object type from latest timestamp to edits always win.
|
|
4138
|
+
*/
|
|
4139
|
+
interface OntologyIrLatestTimestampToEditsWin {
|
|
4140
|
+
datasourceRid: DatasourceRid;
|
|
4141
|
+
timestampPropertyRid: ObjectTypeFieldApiName;
|
|
4142
|
+
}
|
|
4143
|
+
interface OntologyIrNonRevertibleMigration_initializePatches {
|
|
4144
|
+
type: "initializePatches";
|
|
4145
|
+
initializePatches: OntologyIrInitializePatchesMigration;
|
|
4146
|
+
}
|
|
4147
|
+
interface OntologyIrNonRevertibleMigration_permanentlyDeletePatches {
|
|
4148
|
+
type: "permanentlyDeletePatches";
|
|
4149
|
+
permanentlyDeletePatches: PermanentlyDeletePatchesMigration;
|
|
4150
|
+
}
|
|
4151
|
+
/**
|
|
4152
|
+
* Migration that cannot be reverted in future, this migration type implies that all migrations before it will be checkpointed.
|
|
4153
|
+
*/
|
|
4154
|
+
type OntologyIrNonRevertibleMigration = OntologyIrNonRevertibleMigration_initializePatches | OntologyIrNonRevertibleMigration_permanentlyDeletePatches;
|
|
4155
|
+
interface OntologyIrObjectTypePrimaryKeyRename {
|
|
4156
|
+
rename: OntologyIrRenamePropertyMigration;
|
|
4157
|
+
}
|
|
4158
|
+
/**
|
|
4159
|
+
* Contains the information that can be used to restore patches that were deleted by mistake.
|
|
4160
|
+
*/
|
|
4161
|
+
interface OntologyIrPatchBackup {
|
|
4162
|
+
backupId: BackupId;
|
|
4163
|
+
objectTypeRid: ObjectTypeApiName;
|
|
4164
|
+
ontologyVersion: OntologyVersion;
|
|
4165
|
+
}
|
|
4166
|
+
interface OntologyIrPrimaryKeyRenames_objectType {
|
|
4167
|
+
type: "objectType";
|
|
4168
|
+
objectType: OntologyIrObjectTypePrimaryKeyRename;
|
|
4169
|
+
}
|
|
4170
|
+
type OntologyIrPrimaryKeyRenames = OntologyIrPrimaryKeyRenames_objectType;
|
|
4171
|
+
/**
|
|
4172
|
+
* Migration to rename one property to another.
|
|
4173
|
+
*/
|
|
4174
|
+
interface OntologyIrRenamePropertyMigration {
|
|
4175
|
+
source: ObjectTypeFieldApiName;
|
|
4176
|
+
target: ObjectTypeFieldApiName;
|
|
4177
|
+
}
|
|
4178
|
+
/**
|
|
4179
|
+
* Migration to rename a struct property field to another.
|
|
4180
|
+
*/
|
|
4181
|
+
interface OntologyIrRenameStructFieldMigration {
|
|
4182
|
+
property: ObjectTypeFieldApiName;
|
|
4183
|
+
sourceStructField: StructFieldRid;
|
|
4184
|
+
targetStructField: StructFieldRid;
|
|
4185
|
+
}
|
|
4186
|
+
/**
|
|
4187
|
+
* A SchemaMigrationInstruction with a unique identifier.
|
|
4188
|
+
*/
|
|
4189
|
+
interface OntologyIrSchemaMigration {
|
|
4190
|
+
instruction: OntologyIrSchemaMigrationInstruction;
|
|
4191
|
+
rid: SchemaMigrationRid;
|
|
4192
|
+
}
|
|
4193
|
+
interface OntologyIrSchemaMigrationInstruction_dropProperty {
|
|
4194
|
+
type: "dropProperty";
|
|
4195
|
+
dropProperty: OntologyIrDropPropertyMigration;
|
|
4196
|
+
}
|
|
4197
|
+
interface OntologyIrSchemaMigrationInstruction_dropStructField {
|
|
4198
|
+
type: "dropStructField";
|
|
4199
|
+
dropStructField: OntologyIrDropStructFieldMigration;
|
|
4200
|
+
}
|
|
4201
|
+
interface OntologyIrSchemaMigrationInstruction_dropDatasource {
|
|
4202
|
+
type: "dropDatasource";
|
|
4203
|
+
dropDatasource: DropDatasourceMigration;
|
|
4204
|
+
}
|
|
4205
|
+
interface OntologyIrSchemaMigrationInstruction_dropAllPatches {
|
|
4206
|
+
type: "dropAllPatches";
|
|
4207
|
+
dropAllPatches: DropAllPatchesMigration;
|
|
4208
|
+
}
|
|
4209
|
+
interface OntologyIrSchemaMigrationInstruction_renameDatasource {
|
|
4210
|
+
type: "renameDatasource";
|
|
4211
|
+
renameDatasource: RenameDatasourceMigration;
|
|
4212
|
+
}
|
|
4213
|
+
interface OntologyIrSchemaMigrationInstruction_renameProperty {
|
|
4214
|
+
type: "renameProperty";
|
|
4215
|
+
renameProperty: OntologyIrRenamePropertyMigration;
|
|
4216
|
+
}
|
|
4217
|
+
interface OntologyIrSchemaMigrationInstruction_renameStructField {
|
|
4218
|
+
type: "renameStructField";
|
|
4219
|
+
renameStructField: OntologyIrRenameStructFieldMigration;
|
|
4220
|
+
}
|
|
4221
|
+
interface OntologyIrSchemaMigrationInstruction_cast {
|
|
4222
|
+
type: "cast";
|
|
4223
|
+
cast: OntologyIrCastMigration;
|
|
4224
|
+
}
|
|
4225
|
+
interface OntologyIrSchemaMigrationInstruction_castStructField {
|
|
4226
|
+
type: "castStructField";
|
|
4227
|
+
castStructField: OntologyIrCastStructFieldMigration;
|
|
4228
|
+
}
|
|
4229
|
+
interface OntologyIrSchemaMigrationInstruction_revert {
|
|
4230
|
+
type: "revert";
|
|
4231
|
+
revert: RevertMigration;
|
|
4232
|
+
}
|
|
4233
|
+
interface OntologyIrSchemaMigrationInstruction_nonRevertible {
|
|
4234
|
+
type: "nonRevertible";
|
|
4235
|
+
nonRevertible: OntologyIrNonRevertibleMigration;
|
|
4236
|
+
}
|
|
4237
|
+
interface OntologyIrSchemaMigrationInstruction_updateEditsResolutionStrategy {
|
|
4238
|
+
type: "updateEditsResolutionStrategy";
|
|
4239
|
+
updateEditsResolutionStrategy: OntologyIrUpdateEditsResolutionStrategyMigration;
|
|
4240
|
+
}
|
|
4241
|
+
/**
|
|
4242
|
+
* One out of potentially many instructions on how to transition from one version to another.
|
|
4243
|
+
*/
|
|
4244
|
+
type OntologyIrSchemaMigrationInstruction = OntologyIrSchemaMigrationInstruction_dropProperty | OntologyIrSchemaMigrationInstruction_dropStructField | OntologyIrSchemaMigrationInstruction_dropDatasource | OntologyIrSchemaMigrationInstruction_dropAllPatches | OntologyIrSchemaMigrationInstruction_renameDatasource | OntologyIrSchemaMigrationInstruction_renameProperty | OntologyIrSchemaMigrationInstruction_renameStructField | OntologyIrSchemaMigrationInstruction_cast | OntologyIrSchemaMigrationInstruction_castStructField | OntologyIrSchemaMigrationInstruction_revert | OntologyIrSchemaMigrationInstruction_nonRevertible | OntologyIrSchemaMigrationInstruction_updateEditsResolutionStrategy;
|
|
4245
|
+
/**
|
|
4246
|
+
* Instructions on how to transition from one schema version to another.
|
|
4247
|
+
*/
|
|
4248
|
+
interface OntologyIrSchemaTransition {
|
|
4249
|
+
migrations: Array<OntologyIrSchemaMigration>;
|
|
4250
|
+
source: SchemaVersion;
|
|
4251
|
+
target: SchemaVersion;
|
|
4252
|
+
}
|
|
4253
|
+
interface OntologyIrUpdateEditsResolutionStrategyMigration_latestTimestampToEditsWin {
|
|
4254
|
+
type: "latestTimestampToEditsWin";
|
|
4255
|
+
latestTimestampToEditsWin: OntologyIrLatestTimestampToEditsWin;
|
|
4256
|
+
}
|
|
4257
|
+
interface OntologyIrUpdateEditsResolutionStrategyMigration_editsWinToLatestTimestamp {
|
|
4258
|
+
type: "editsWinToLatestTimestamp";
|
|
4259
|
+
editsWinToLatestTimestamp: OntologyIrEditsWinToLatestTimestamp;
|
|
4260
|
+
}
|
|
4261
|
+
/**
|
|
4262
|
+
* Migration to communicate to Funnel that the edits resolution strategy for an object type has changed. Funnel
|
|
4263
|
+
* will handle this accordingly by updating their internal patch structure.
|
|
4264
|
+
*
|
|
4265
|
+
* This migration is set internally and automatically by OMS and therefore should not be manually defined by
|
|
4266
|
+
* users.
|
|
4267
|
+
*/
|
|
4268
|
+
type OntologyIrUpdateEditsResolutionStrategyMigration = OntologyIrUpdateEditsResolutionStrategyMigration_latestTimestampToEditsWin | OntologyIrUpdateEditsResolutionStrategyMigration_editsWinToLatestTimestamp;
|
|
4079
4269
|
/**
|
|
4080
4270
|
* Contains the information that can be used to restore patches that were deleted by mistake.
|
|
4081
4271
|
*/
|
|
@@ -4317,12 +4507,12 @@ interface ObjectTypeGothamMapping {
|
|
|
4317
4507
|
uri: GothamObjectTypeUri;
|
|
4318
4508
|
}
|
|
4319
4509
|
interface PropertyTypeGothamMapping {
|
|
4320
|
-
structApiNameToComponentUriMapping: Record<ObjectTypeFieldApiName
|
|
4510
|
+
structApiNameToComponentUriMapping: Record<ObjectTypeFieldApiName, GothamPropertyComponentUri>;
|
|
4321
4511
|
uri: GothamPropertyTypeUri;
|
|
4322
4512
|
}
|
|
4323
4513
|
type RevDbIntegrationState = "ENABLED" | "PAUSED" | "DISABLED";
|
|
4324
4514
|
interface SharedPropertyTypeGothamMapping {
|
|
4325
|
-
structApiNameToComponentUriMapping: Record<ObjectTypeFieldApiName
|
|
4515
|
+
structApiNameToComponentUriMapping: Record<ObjectTypeFieldApiName, GothamPropertyComponentUri>;
|
|
4326
4516
|
uri: GothamPropertyTypeUri;
|
|
4327
4517
|
}
|
|
4328
4518
|
|
|
@@ -4666,6 +4856,84 @@ type DatasourcePredicate = DatasourcePredicate_or | DatasourcePredicate_hasRid |
|
|
|
4666
4856
|
* Ontology as code uses this as a stable ID for GeotimeSeriesIntegration inputs
|
|
4667
4857
|
*/
|
|
4668
4858
|
type GeotimeSeriesIntegrationName = string;
|
|
4859
|
+
interface ImportedActionType {
|
|
4860
|
+
apiName: ActionTypeApiName;
|
|
4861
|
+
description?: string | null | undefined;
|
|
4862
|
+
displayName: string;
|
|
4863
|
+
parameters: Array<ImportedParameter>;
|
|
4864
|
+
}
|
|
4865
|
+
interface ImportedInterfaceLinkType {
|
|
4866
|
+
apiName: InterfaceLinkTypeApiName;
|
|
4867
|
+
cardinality: InterfaceLinkTypeCardinality;
|
|
4868
|
+
description?: string | null | undefined;
|
|
4869
|
+
displayName: string;
|
|
4870
|
+
required: boolean;
|
|
4871
|
+
}
|
|
4872
|
+
interface ImportedInterfaceType {
|
|
4873
|
+
apiName: InterfaceTypeApiName;
|
|
4874
|
+
description?: string | null | undefined;
|
|
4875
|
+
displayName: string;
|
|
4876
|
+
links: Array<ImportedInterfaceLinkType>;
|
|
4877
|
+
properties: Array<ImportedSharedPropertyType>;
|
|
4878
|
+
}
|
|
4879
|
+
interface ImportedLinkDefinition_manyToMany {
|
|
4880
|
+
type: "manyToMany";
|
|
4881
|
+
manyToMany: ImportedManyToManyLinkDefinition;
|
|
4882
|
+
}
|
|
4883
|
+
interface ImportedLinkDefinition_oneToMany {
|
|
4884
|
+
type: "oneToMany";
|
|
4885
|
+
oneToMany: ImportedOneToManyLinkDefinition;
|
|
4886
|
+
}
|
|
4887
|
+
type ImportedLinkDefinition = ImportedLinkDefinition_manyToMany | ImportedLinkDefinition_oneToMany;
|
|
4888
|
+
interface ImportedLinkType {
|
|
4889
|
+
definition: ImportedLinkDefinition;
|
|
4890
|
+
id: LinkTypeId;
|
|
4891
|
+
}
|
|
4892
|
+
interface ImportedManyToManyLinkDefinition {
|
|
4893
|
+
objectTypeApiNameA: ObjectTypeApiName;
|
|
4894
|
+
objectTypeApiNameB: ObjectTypeApiName;
|
|
4895
|
+
objectTypeAToBLinkDisplayName: string;
|
|
4896
|
+
objectTypeBToALinkDisplayName: string;
|
|
4897
|
+
}
|
|
4898
|
+
interface ImportedObjectType {
|
|
4899
|
+
apiName: ObjectTypeApiName;
|
|
4900
|
+
description?: string | null | undefined;
|
|
4901
|
+
displayName: string;
|
|
4902
|
+
propertyTypes: Array<ImportedPropertyType>;
|
|
4903
|
+
}
|
|
4904
|
+
interface ImportedOneToManyLinkDefinition {
|
|
4905
|
+
cardinality?: OneToManyLinkCardinalityHint | null | undefined;
|
|
4906
|
+
manyToOneLinkDisplayName: string;
|
|
4907
|
+
objectTypeApiNameManySide: ObjectTypeApiName;
|
|
4908
|
+
objectTypeApiNameOneSide: ObjectTypeApiName;
|
|
4909
|
+
oneToManyLinkDisplayName: string;
|
|
4910
|
+
}
|
|
4911
|
+
interface ImportedParameter {
|
|
4912
|
+
description?: string | null | undefined;
|
|
4913
|
+
displayName: string;
|
|
4914
|
+
id: ParameterId;
|
|
4915
|
+
type: BaseParameterType;
|
|
4916
|
+
}
|
|
4917
|
+
interface ImportedPropertyType {
|
|
4918
|
+
apiName: ObjectTypeFieldApiName;
|
|
4919
|
+
description?: string | null | undefined;
|
|
4920
|
+
displayName: string;
|
|
4921
|
+
sharedPropertyType?: ObjectTypeFieldApiName | null | undefined;
|
|
4922
|
+
type: Type;
|
|
4923
|
+
}
|
|
4924
|
+
interface ImportedSharedPropertyType {
|
|
4925
|
+
apiName: ObjectTypeFieldApiName;
|
|
4926
|
+
description?: string | null | undefined;
|
|
4927
|
+
displayName: string;
|
|
4928
|
+
type: Type;
|
|
4929
|
+
}
|
|
4930
|
+
interface ImportedTypes {
|
|
4931
|
+
actionTypes: Array<ImportedActionType>;
|
|
4932
|
+
interfaceTypes: Array<ImportedInterfaceType>;
|
|
4933
|
+
linkTypes: Array<ImportedLinkType>;
|
|
4934
|
+
objectTypes: Array<ImportedObjectType>;
|
|
4935
|
+
sharedPropertyTypes: Array<ImportedSharedPropertyType>;
|
|
4936
|
+
}
|
|
4669
4937
|
type InstallLocationBlockShapeId = BlockShapeId;
|
|
4670
4938
|
interface InterfaceTypeBlockDataV2 {
|
|
4671
4939
|
interfaceType: InterfaceType;
|
|
@@ -4776,6 +5044,85 @@ interface OntologyBlockDataV2 {
|
|
|
4776
5044
|
interface OntologyIrActionTypeBlockDataV2 {
|
|
4777
5045
|
actionType: OntologyIrActionType;
|
|
4778
5046
|
}
|
|
5047
|
+
interface OntologyIrBlockPermissionInformation {
|
|
5048
|
+
actionTypes: Record<ActionTypeApiName, ActionTypePermissionInformation>;
|
|
5049
|
+
linkTypes: Record<LinkTypeId, LinkTypePermissionInformation>;
|
|
5050
|
+
objectTypes: Record<ObjectTypeApiName, ObjectTypePermissionInformation>;
|
|
5051
|
+
}
|
|
5052
|
+
interface OntologyIrImportedActionType {
|
|
5053
|
+
apiName: ActionTypeApiName;
|
|
5054
|
+
description?: string | null | undefined;
|
|
5055
|
+
displayName: string;
|
|
5056
|
+
parameters: Array<OntologyIrImportedParameter>;
|
|
5057
|
+
}
|
|
5058
|
+
interface OntologyIrImportedInterfaceType {
|
|
5059
|
+
apiName: InterfaceTypeApiName;
|
|
5060
|
+
description?: string | null | undefined;
|
|
5061
|
+
displayName: string;
|
|
5062
|
+
links: Array<ImportedInterfaceLinkType>;
|
|
5063
|
+
properties: Array<OntologyIrImportedSharedPropertyType>;
|
|
5064
|
+
}
|
|
5065
|
+
interface OntologyIrImportedObjectType {
|
|
5066
|
+
apiName: ObjectTypeApiName;
|
|
5067
|
+
description?: string | null | undefined;
|
|
5068
|
+
displayName: string;
|
|
5069
|
+
propertyTypes: Array<OntologyIrImportedPropertyType>;
|
|
5070
|
+
}
|
|
5071
|
+
interface OntologyIrImportedParameter {
|
|
5072
|
+
description?: string | null | undefined;
|
|
5073
|
+
displayName: string;
|
|
5074
|
+
id: ParameterId;
|
|
5075
|
+
type: OntologyIrBaseParameterType;
|
|
5076
|
+
}
|
|
5077
|
+
interface OntologyIrImportedPropertyType {
|
|
5078
|
+
apiName: ObjectTypeFieldApiName;
|
|
5079
|
+
description?: string | null | undefined;
|
|
5080
|
+
displayName: string;
|
|
5081
|
+
sharedPropertyType?: ObjectTypeFieldApiName | null | undefined;
|
|
5082
|
+
type: OntologyIrType;
|
|
5083
|
+
}
|
|
5084
|
+
interface OntologyIrImportedSharedPropertyType {
|
|
5085
|
+
apiName: ObjectTypeFieldApiName;
|
|
5086
|
+
description?: string | null | undefined;
|
|
5087
|
+
displayName: string;
|
|
5088
|
+
type: OntologyIrType;
|
|
5089
|
+
}
|
|
5090
|
+
interface OntologyIrImportedTypes {
|
|
5091
|
+
actionTypes: Array<OntologyIrImportedActionType>;
|
|
5092
|
+
interfaceTypes: Array<OntologyIrImportedInterfaceType>;
|
|
5093
|
+
linkTypes: Array<ImportedLinkType>;
|
|
5094
|
+
objectTypes: Array<OntologyIrImportedObjectType>;
|
|
5095
|
+
sharedPropertyTypes: Array<OntologyIrImportedSharedPropertyType>;
|
|
5096
|
+
}
|
|
5097
|
+
interface OntologyIrInterfaceTypeBlockDataV2 {
|
|
5098
|
+
interfaceType: OntologyIrInterfaceType;
|
|
5099
|
+
}
|
|
5100
|
+
interface OntologyIrKnownMarketplaceIdentifiers {
|
|
5101
|
+
actionParameterIds: Record<ActionTypeApiName, Record<ParameterId, BlockInternalId>>;
|
|
5102
|
+
actionParameters: Record<ParameterRid, BlockInternalId>;
|
|
5103
|
+
actionTypes: Record<ActionTypeApiName, BlockInternalId>;
|
|
5104
|
+
datasourceColumns: Record<BlockInternalId, any>;
|
|
5105
|
+
datasources: Record<BlockInternalId, any>;
|
|
5106
|
+
filesDatasources: Record<BlockInternalId, any>;
|
|
5107
|
+
functions: Record<FunctionRid, Record<FunctionVersion, BlockInternalId>>;
|
|
5108
|
+
geotimeSeriesSyncs: Record<GeotimeSeriesIntegrationName, BlockInternalId>;
|
|
5109
|
+
groupIds: Record<GroupId, BlockInternalId>;
|
|
5110
|
+
interfaceLinkTypes: Record<InterfaceLinkTypeApiName, BlockInternalId>;
|
|
5111
|
+
interfaceTypes: Record<InterfaceTypeApiName, BlockInternalId>;
|
|
5112
|
+
linkTypeIds: Record<LinkTypeId, BlockInternalId>;
|
|
5113
|
+
linkTypes: Record<LinkTypeId, BlockInternalId>;
|
|
5114
|
+
objectTypeIds: Record<ObjectTypeApiName, BlockInternalId>;
|
|
5115
|
+
objectTypes: Record<ObjectTypeApiName, BlockInternalId>;
|
|
5116
|
+
propertyTypeIds: Record<ObjectTypeApiName, Record<ObjectTypeFieldApiName, BlockInternalId>>;
|
|
5117
|
+
propertyTypes: Record<ObjectTypeFieldApiName, BlockInternalId>;
|
|
5118
|
+
shapeIdForInstallPrefix?: BlockShapeId | null | undefined;
|
|
5119
|
+
shapeIdForOntologyAllowSchemaMigrations?: BlockShapeId | null | undefined;
|
|
5120
|
+
sharedPropertyTypes: Record<ObjectTypeFieldApiName, BlockInternalId>;
|
|
5121
|
+
timeSeriesSyncs: Record<TimeSeriesSyncName, BlockInternalId>;
|
|
5122
|
+
valueTypes: Record<ValueTypeRid$1, Record<ValueTypeVersionId$1, BlockInternalId>>;
|
|
5123
|
+
webhooks: Record<WebhookRid, BlockInternalId>;
|
|
5124
|
+
workshopModules: Record<ModuleRid, BlockInternalId>;
|
|
5125
|
+
}
|
|
4779
5126
|
interface OntologyIrLinkTypeBlockDataV2 {
|
|
4780
5127
|
datasources: Array<OntologyIrManyToManyLinkTypeDatasource>;
|
|
4781
5128
|
entityMetadata?: OntologyIrLinkTypeEntityMetadata | null | undefined;
|
|
@@ -4794,14 +5141,29 @@ interface OntologyIrMarketplaceObjectTypeEntityMetadata {
|
|
|
4794
5141
|
* Property reference containing the api name of the object
|
|
4795
5142
|
*/
|
|
4796
5143
|
interface OntologyIrObjectPropertyReference {
|
|
4797
|
-
apiName: ObjectTypeFieldApiName
|
|
5144
|
+
apiName: ObjectTypeFieldApiName;
|
|
4798
5145
|
object: ObjectTypeApiName;
|
|
4799
5146
|
}
|
|
5147
|
+
interface OntologyIrObjectsWritebackDataset {
|
|
5148
|
+
columnMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
5149
|
+
objectTypeRid: ObjectTypeApiName;
|
|
5150
|
+
outputMode: OutputMode;
|
|
5151
|
+
rid: WritebackDatasetRid;
|
|
5152
|
+
spec: WritebackDatasetSpec;
|
|
5153
|
+
}
|
|
4800
5154
|
interface OntologyIrObjectTypeBlockDataV2 {
|
|
4801
5155
|
datasources: Array<OntologyIrObjectTypeDatasource>;
|
|
4802
5156
|
entityMetadata?: OntologyIrMarketplaceObjectTypeEntityMetadata | null | undefined;
|
|
4803
5157
|
objectType: OntologyIrObjectType;
|
|
4804
5158
|
}
|
|
5159
|
+
interface OntologyIrOntologyBlockDataV2 {
|
|
5160
|
+
actionTypes: Record<ActionTypeApiName, OntologyIrActionTypeBlockDataV2>;
|
|
5161
|
+
blockPermissionInformation?: OntologyIrBlockPermissionInformation | null | undefined;
|
|
5162
|
+
interfaceTypes: Record<InterfaceTypeApiName, OntologyIrInterfaceTypeBlockDataV2>;
|
|
5163
|
+
linkTypes: Record<LinkTypeId, OntologyIrLinkTypeBlockDataV2>;
|
|
5164
|
+
objectTypes: Record<ObjectTypeApiName, OntologyIrObjectTypeBlockDataV2>;
|
|
5165
|
+
sharedPropertyTypes: Record<ObjectTypeFieldApiName, OntologyIrSharedPropertyTypeBlockDataV2>;
|
|
5166
|
+
}
|
|
4805
5167
|
/**
|
|
4806
5168
|
* Because complex objects can't be used as map keys over the wire, this is used in many to many link dataset datasource
|
|
4807
5169
|
*/
|
|
@@ -4816,6 +5178,17 @@ interface OntologyIrPropertyToPropertyMapping {
|
|
|
4816
5178
|
from: OntologyIrObjectPropertyReference;
|
|
4817
5179
|
to: OntologyIrObjectPropertyReference;
|
|
4818
5180
|
}
|
|
5181
|
+
interface OntologyIrSchemaMigrationBlockData {
|
|
5182
|
+
propertyTypeRidsToIds: Record<ObjectTypeFieldApiName, ObjectTypeFieldApiName>;
|
|
5183
|
+
schemaMigrations: OntologyIrSchemaTransitionsWithSchemaVersion;
|
|
5184
|
+
}
|
|
5185
|
+
interface OntologyIrSchemaTransitionsWithSchemaVersion {
|
|
5186
|
+
schemaTransitions: Array<OntologyIrSchemaTransition>;
|
|
5187
|
+
schemaVersion: SchemaVersion;
|
|
5188
|
+
}
|
|
5189
|
+
interface OntologyIrSharedPropertyTypeBlockDataV2 {
|
|
5190
|
+
sharedPropertyType: OntologyIrSharedPropertyType;
|
|
5191
|
+
}
|
|
4819
5192
|
type OutputMode = "RESTRICTED_VIEW" | "DATASET";
|
|
4820
5193
|
interface PatchesConfiguration {
|
|
4821
5194
|
lowLatencyUpdatesEnabled: boolean;
|
|
@@ -5121,7 +5494,7 @@ interface OntologyIrAndFilter {
|
|
|
5121
5494
|
* If no terms are provided, this filter will match ALL objects.
|
|
5122
5495
|
*/
|
|
5123
5496
|
interface OntologyIrExactMatchFilter {
|
|
5124
|
-
propertyId: ObjectTypeFieldApiName
|
|
5497
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5125
5498
|
terms: Array<any>;
|
|
5126
5499
|
}
|
|
5127
5500
|
/**
|
|
@@ -5130,7 +5503,7 @@ interface OntologyIrExactMatchFilter {
|
|
|
5130
5503
|
*/
|
|
5131
5504
|
interface OntologyIrGeoBoundingBoxFilter {
|
|
5132
5505
|
bottomRight: string;
|
|
5133
|
-
propertyId: ObjectTypeFieldApiName
|
|
5506
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5134
5507
|
topLeft: string;
|
|
5135
5508
|
}
|
|
5136
5509
|
/**
|
|
@@ -5140,14 +5513,14 @@ interface OntologyIrGeoBoundingBoxFilter {
|
|
|
5140
5513
|
interface OntologyIrGeoDistanceFilter {
|
|
5141
5514
|
distance: Distance;
|
|
5142
5515
|
location: string;
|
|
5143
|
-
propertyId: ObjectTypeFieldApiName
|
|
5516
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5144
5517
|
}
|
|
5145
5518
|
/**
|
|
5146
5519
|
* An object matches a GeoPolygonFilter iff the value of the provided property is within bounds of the provided polygon.
|
|
5147
5520
|
*/
|
|
5148
5521
|
interface OntologyIrGeoPolygonFilter {
|
|
5149
5522
|
polygon: Array<string>;
|
|
5150
|
-
propertyId: ObjectTypeFieldApiName
|
|
5523
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5151
5524
|
}
|
|
5152
5525
|
/**
|
|
5153
5526
|
* Filter properties of type geo_shape or geo_point.
|
|
@@ -5172,7 +5545,7 @@ type OntologyIrGeoShapeQuery = OntologyIrGeoShapeQuery_geoBoundingBoxFilter | On
|
|
|
5172
5545
|
* An object matches a HasPropertyFilter iff it has a property with the provided PropertyId.
|
|
5173
5546
|
*/
|
|
5174
5547
|
interface OntologyIrHasPropertyFilter {
|
|
5175
|
-
propertyId: ObjectTypeFieldApiName
|
|
5548
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5176
5549
|
}
|
|
5177
5550
|
/**
|
|
5178
5551
|
* An object matches a MultiMatchFilter iff any of the fields matches the query, or in the case where a
|
|
@@ -5309,7 +5682,7 @@ interface OntologyIrOrFilter {
|
|
|
5309
5682
|
* If no terms are provided, this filter will match ALL objects.
|
|
5310
5683
|
*/
|
|
5311
5684
|
interface OntologyIrParameterizedExactMatchFilter {
|
|
5312
|
-
propertyId: ObjectTypeFieldApiName
|
|
5685
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5313
5686
|
terms: Array<FilterParameter>;
|
|
5314
5687
|
}
|
|
5315
5688
|
/**
|
|
@@ -5320,7 +5693,7 @@ interface OntologyIrParameterizedRangeFilter {
|
|
|
5320
5693
|
gte?: FilterParameter | null | undefined;
|
|
5321
5694
|
lt?: FilterParameter | null | undefined;
|
|
5322
5695
|
lte?: FilterParameter | null | undefined;
|
|
5323
|
-
propertyId: ObjectTypeFieldApiName
|
|
5696
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5324
5697
|
}
|
|
5325
5698
|
/**
|
|
5326
5699
|
* An object matches a TermsFilter iff the analyzed value of the provided property matches any of the provided terms, or in case when
|
|
@@ -5328,7 +5701,7 @@ interface OntologyIrParameterizedRangeFilter {
|
|
|
5328
5701
|
* If no terms are provided, this filter will match ALL objects.
|
|
5329
5702
|
*/
|
|
5330
5703
|
interface OntologyIrParameterizedTermsFilter {
|
|
5331
|
-
propertyId?: ObjectTypeFieldApiName
|
|
5704
|
+
propertyId?: ObjectTypeFieldApiName | null | undefined;
|
|
5332
5705
|
terms: Array<FilterParameter>;
|
|
5333
5706
|
}
|
|
5334
5707
|
/**
|
|
@@ -5336,7 +5709,7 @@ interface OntologyIrParameterizedTermsFilter {
|
|
|
5336
5709
|
* no property is provided - iff any of the properties match the provided term.
|
|
5337
5710
|
*/
|
|
5338
5711
|
interface OntologyIrParameterizedWildcardFilter {
|
|
5339
|
-
propertyId?: ObjectTypeFieldApiName
|
|
5712
|
+
propertyId?: ObjectTypeFieldApiName | null | undefined;
|
|
5340
5713
|
term: FilterParameter;
|
|
5341
5714
|
}
|
|
5342
5715
|
/**
|
|
@@ -5356,7 +5729,7 @@ interface OntologyIrPhraseFilter {
|
|
|
5356
5729
|
* Only works on string properties. OSS will throw an exception if the property type is not string.
|
|
5357
5730
|
*/
|
|
5358
5731
|
interface OntologyIrPrefixOnLastTokenFilter {
|
|
5359
|
-
propertyId: ObjectTypeFieldApiName
|
|
5732
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5360
5733
|
query: string;
|
|
5361
5734
|
}
|
|
5362
5735
|
interface OntologyIrPropertySet_propertyWhitelist {
|
|
@@ -5369,7 +5742,7 @@ interface OntologyIrPropertySet_allProperties {
|
|
|
5369
5742
|
}
|
|
5370
5743
|
type OntologyIrPropertySet = OntologyIrPropertySet_propertyWhitelist | OntologyIrPropertySet_allProperties;
|
|
5371
5744
|
interface OntologyIrPropertyWhitelistPropertySet {
|
|
5372
|
-
properties: Array<ObjectTypeFieldApiName
|
|
5745
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
5373
5746
|
}
|
|
5374
5747
|
/**
|
|
5375
5748
|
* An object matches a RangeFilter iff the value of the provided property is within provided bounds.
|
|
@@ -5379,13 +5752,13 @@ interface OntologyIrRangeFilter {
|
|
|
5379
5752
|
gte?: any | null | undefined;
|
|
5380
5753
|
lt?: any | null | undefined;
|
|
5381
5754
|
lte?: any | null | undefined;
|
|
5382
|
-
propertyId: ObjectTypeFieldApiName
|
|
5755
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5383
5756
|
}
|
|
5384
5757
|
/**
|
|
5385
5758
|
* An object matches a RelativeDateRangeFilter iff the value of the provided date property is within the provided time range.
|
|
5386
5759
|
*/
|
|
5387
5760
|
interface OntologyIrRelativeDateRangeFilter {
|
|
5388
|
-
propertyId: ObjectTypeFieldApiName
|
|
5761
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5389
5762
|
sinceRelativePointInTime?: RelativePointInTime | null | undefined;
|
|
5390
5763
|
timeZoneId: TimeZoneId;
|
|
5391
5764
|
untilRelativePointInTime?: RelativePointInTime | null | undefined;
|
|
@@ -5394,7 +5767,7 @@ interface OntologyIrRelativeDateRangeFilter {
|
|
|
5394
5767
|
* An object matches a RelativeTimeRangeFilter iff the value of the provided timestamp property is within the provided time range.
|
|
5395
5768
|
*/
|
|
5396
5769
|
interface OntologyIrRelativeTimeRangeFilter {
|
|
5397
|
-
propertyId: ObjectTypeFieldApiName
|
|
5770
|
+
propertyId: ObjectTypeFieldApiName;
|
|
5398
5771
|
sinceRelativeMillis?: number | null | undefined;
|
|
5399
5772
|
untilRelativeMillis?: number | null | undefined;
|
|
5400
5773
|
}
|
|
@@ -5404,7 +5777,7 @@ interface OntologyIrRelativeTimeRangeFilter {
|
|
|
5404
5777
|
* If no terms are provided, this filter will match ALL objects.
|
|
5405
5778
|
*/
|
|
5406
5779
|
interface OntologyIrTermsFilter {
|
|
5407
|
-
propertyId?: ObjectTypeFieldApiName
|
|
5780
|
+
propertyId?: ObjectTypeFieldApiName | null | undefined;
|
|
5408
5781
|
terms: Array<any>;
|
|
5409
5782
|
}
|
|
5410
5783
|
/**
|
|
@@ -5412,7 +5785,7 @@ interface OntologyIrTermsFilter {
|
|
|
5412
5785
|
* no property is provided - iff any of the properties match the provided term.
|
|
5413
5786
|
*/
|
|
5414
5787
|
interface OntologyIrWildcardFilter {
|
|
5415
|
-
propertyId?: ObjectTypeFieldApiName
|
|
5788
|
+
propertyId?: ObjectTypeFieldApiName | null | undefined;
|
|
5416
5789
|
term: string;
|
|
5417
5790
|
}
|
|
5418
5791
|
/**
|
|
@@ -6499,7 +6872,7 @@ interface AddObjectRule {
|
|
|
6499
6872
|
interface AddObjectRuleModification {
|
|
6500
6873
|
objectTypeId: ObjectTypeId;
|
|
6501
6874
|
propertyValues: Record<PropertyTypeId, LogicRuleValueModification>;
|
|
6502
|
-
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName
|
|
6875
|
+
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName, StructFieldLogicRuleValueModification>>;
|
|
6503
6876
|
structFieldValuesV2: Record<PropertyTypeId, Array<StructFieldLogicRuleValueMappingModification>>;
|
|
6504
6877
|
}
|
|
6505
6878
|
interface AddOrModifyObjectRule {
|
|
@@ -6510,13 +6883,13 @@ interface AddOrModifyObjectRule {
|
|
|
6510
6883
|
interface AddOrModifyObjectRuleModification {
|
|
6511
6884
|
objectTypeId: ObjectTypeId;
|
|
6512
6885
|
propertyValues: Record<PropertyTypeId, LogicRuleValueModification>;
|
|
6513
|
-
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName
|
|
6886
|
+
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName, StructFieldLogicRuleValueModification>>;
|
|
6514
6887
|
structFieldValuesV2: Record<PropertyTypeId, Array<StructFieldLogicRuleValueMappingModification>>;
|
|
6515
6888
|
}
|
|
6516
6889
|
interface AddOrModifyObjectRuleModificationV2 {
|
|
6517
6890
|
objectToModify: ParameterId;
|
|
6518
6891
|
propertyValues: Record<PropertyTypeId, LogicRuleValueModification>;
|
|
6519
|
-
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName
|
|
6892
|
+
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName, StructFieldLogicRuleValueModification>>;
|
|
6520
6893
|
structFieldValuesV2: Record<PropertyTypeId, Array<StructFieldLogicRuleValueMappingModification>>;
|
|
6521
6894
|
}
|
|
6522
6895
|
interface AddOrModifyObjectRuleV2 {
|
|
@@ -8768,7 +9141,7 @@ interface LinkTypeLoadResponse {
|
|
|
8768
9141
|
ontologyVersion: OntologyVersion;
|
|
8769
9142
|
}
|
|
8770
9143
|
interface LinkTypeMetadata {
|
|
8771
|
-
apiName?: ObjectTypeFieldApiName
|
|
9144
|
+
apiName?: ObjectTypeFieldApiName | null | undefined;
|
|
8772
9145
|
displayMetadata: LinkTypeDisplayMetadata;
|
|
8773
9146
|
typeClasses: Array<TypeClass>;
|
|
8774
9147
|
}
|
|
@@ -9388,7 +9761,7 @@ interface ModifyObjectRule {
|
|
|
9388
9761
|
interface ModifyObjectRuleModification {
|
|
9389
9762
|
objectToModify: ParameterId;
|
|
9390
9763
|
propertyValues: Record<PropertyTypeId, LogicRuleValueModification>;
|
|
9391
|
-
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName
|
|
9764
|
+
structFieldValues: Record<PropertyTypeId, Record<ObjectTypeFieldApiName, StructFieldLogicRuleValueModification>>;
|
|
9392
9765
|
structFieldValuesV2: Record<PropertyTypeId, Array<StructFieldLogicRuleValueMappingModification>>;
|
|
9393
9766
|
}
|
|
9394
9767
|
/**
|
|
@@ -9414,7 +9787,7 @@ interface MultipassUserInGroupFilterModification {
|
|
|
9414
9787
|
interface MustBeEmpty {
|
|
9415
9788
|
}
|
|
9416
9789
|
interface NestedStructFieldApiNameMapping {
|
|
9417
|
-
apiName: ObjectTypeFieldApiName
|
|
9790
|
+
apiName: ObjectTypeFieldApiName;
|
|
9418
9791
|
mappings: Record<StructFieldName, NestedStructFieldApiNameMapping>;
|
|
9419
9792
|
}
|
|
9420
9793
|
/**
|
|
@@ -9771,7 +10144,7 @@ interface ObjectParameterStructFieldValue {
|
|
|
9771
10144
|
interface ObjectParameterStructFieldValueModification {
|
|
9772
10145
|
parameterId: ParameterId;
|
|
9773
10146
|
propertyTypeId: PropertyTypeId;
|
|
9774
|
-
structFieldApiName?: ObjectTypeFieldApiName
|
|
10147
|
+
structFieldApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
9775
10148
|
structFieldApiNameOrRid?: StructFieldApiNameOrRid | null | undefined;
|
|
9776
10149
|
}
|
|
9777
10150
|
/**
|
|
@@ -9785,7 +10158,7 @@ interface ObjectParameterStructListFieldValue {
|
|
|
9785
10158
|
interface ObjectParameterStructListFieldValueModification {
|
|
9786
10159
|
parameterId: ParameterId;
|
|
9787
10160
|
propertyTypeId: PropertyTypeId;
|
|
9788
|
-
structFieldApiName?: ObjectTypeFieldApiName
|
|
10161
|
+
structFieldApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
9789
10162
|
structFieldApiNameOrRid?: StructFieldApiNameOrRid | null | undefined;
|
|
9790
10163
|
}
|
|
9791
10164
|
/**
|
|
@@ -10083,7 +10456,7 @@ type ObjectTypeError = ObjectTypeError_objectTypesAlreadyExist | ObjectTypeError
|
|
|
10083
10456
|
* - Match the unicode identifier syntax: https://unicode.org/reports/tr31/
|
|
10084
10457
|
* - Contain at most 100 characters.
|
|
10085
10458
|
*/
|
|
10086
|
-
type ObjectTypeFieldApiName
|
|
10459
|
+
type ObjectTypeFieldApiName = string;
|
|
10087
10460
|
/**
|
|
10088
10461
|
* Object type datasource that is backed by a Geotime integration, uniquely identified by its rid.
|
|
10089
10462
|
*/
|
|
@@ -10512,8 +10885,8 @@ interface OntologyIrActionLogRule {
|
|
|
10512
10885
|
actionLogObjectTypeId: ObjectTypeApiName;
|
|
10513
10886
|
editedObjectRelations: Record<ObjectTypeApiName, LinkTypeId>;
|
|
10514
10887
|
enabled: boolean;
|
|
10515
|
-
propertyValues: Record<ObjectTypeFieldApiName
|
|
10516
|
-
reasonCodes: Array<ObjectTypeFieldApiName
|
|
10888
|
+
propertyValues: Record<ObjectTypeFieldApiName, OntologyIrActionLogValue>;
|
|
10889
|
+
reasonCodes: Array<ObjectTypeFieldApiName>;
|
|
10517
10890
|
}
|
|
10518
10891
|
interface OntologyIrActionLogValue_parameterValue {
|
|
10519
10892
|
type: "parameterValue";
|
|
@@ -10743,22 +11116,22 @@ interface OntologyIrAddInterfaceLinkRule {
|
|
|
10743
11116
|
interface OntologyIrAddInterfaceRule {
|
|
10744
11117
|
interfaceApiName: InterfaceTypeApiName;
|
|
10745
11118
|
objectTypeParameter: ParameterId;
|
|
10746
|
-
sharedPropertyValues: Record<ObjectTypeFieldApiName
|
|
11119
|
+
sharedPropertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
10747
11120
|
}
|
|
10748
11121
|
interface OntologyIrAddObjectRule {
|
|
10749
11122
|
objectTypeId: ObjectTypeApiName;
|
|
10750
|
-
propertyValues: Record<ObjectTypeFieldApiName
|
|
10751
|
-
structFieldValues: Record<ObjectTypeFieldApiName
|
|
11123
|
+
propertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
11124
|
+
structFieldValues: Record<ObjectTypeFieldApiName, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10752
11125
|
}
|
|
10753
11126
|
interface OntologyIrAddOrModifyObjectRule {
|
|
10754
11127
|
objectTypeId: ObjectTypeApiName;
|
|
10755
|
-
propertyValues: Record<ObjectTypeFieldApiName
|
|
10756
|
-
structFieldValues: Record<ObjectTypeFieldApiName
|
|
11128
|
+
propertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
11129
|
+
structFieldValues: Record<ObjectTypeFieldApiName, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10757
11130
|
}
|
|
10758
11131
|
interface OntologyIrAddOrModifyObjectRuleV2 {
|
|
10759
11132
|
objectToModify: ParameterId;
|
|
10760
|
-
propertyValues: Record<ObjectTypeFieldApiName
|
|
10761
|
-
structFieldValues: Record<ObjectTypeFieldApiName
|
|
11133
|
+
propertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
11134
|
+
structFieldValues: Record<ObjectTypeFieldApiName, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
10762
11135
|
}
|
|
10763
11136
|
/**
|
|
10764
11137
|
* The mapping which designated what struct fields will get which values in the all edited properties log.
|
|
@@ -10896,8 +11269,8 @@ interface OntologyIrAndCondition {
|
|
|
10896
11269
|
conditions: Array<OntologyIrCondition>;
|
|
10897
11270
|
displayMetadata?: ConditionDisplayMetadata | null | undefined;
|
|
10898
11271
|
}
|
|
10899
|
-
interface OntologyIrArrayPropertyType
|
|
10900
|
-
subtype: OntologyIrType
|
|
11272
|
+
interface OntologyIrArrayPropertyType {
|
|
11273
|
+
subtype: OntologyIrType;
|
|
10901
11274
|
}
|
|
10902
11275
|
interface OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput {
|
|
10903
11276
|
type: "staticDirectInput";
|
|
@@ -10972,7 +11345,7 @@ interface OntologyIrCarbonWorkspaceUrlTarget {
|
|
|
10972
11345
|
}
|
|
10973
11346
|
interface OntologyIrCipherTextPropertyType {
|
|
10974
11347
|
defaultCipherChannelRid?: string | null | undefined;
|
|
10975
|
-
plainTextType: OntologyIrType
|
|
11348
|
+
plainTextType: OntologyIrType;
|
|
10976
11349
|
}
|
|
10977
11350
|
interface OntologyIrComparisonCondition {
|
|
10978
11351
|
displayMetadata?: ConditionDisplayMetadata | null | undefined;
|
|
@@ -11117,7 +11490,7 @@ interface OntologyIrDeprecatedObjectTypeStatus {
|
|
|
11117
11490
|
interface OntologyIrDeprecatedPropertyTypeStatus {
|
|
11118
11491
|
deadline: string;
|
|
11119
11492
|
message: string;
|
|
11120
|
-
replacedBy?: ObjectTypeFieldApiName
|
|
11493
|
+
replacedBy?: ObjectTypeFieldApiName | null | undefined;
|
|
11121
11494
|
}
|
|
11122
11495
|
/**
|
|
11123
11496
|
* An ObjectSet gotten as a result of performing a sequence of Transforms on a base ObjectSet.
|
|
@@ -11168,10 +11541,10 @@ type OntologyIrEmailBody = OntologyIrEmailBody_basic;
|
|
|
11168
11541
|
* Describes how to treat an object of this type as an event.
|
|
11169
11542
|
*/
|
|
11170
11543
|
interface OntologyIrEventMetadata {
|
|
11171
|
-
description?: ObjectTypeFieldApiName
|
|
11172
|
-
endTimePropertyTypeRid: ObjectTypeFieldApiName
|
|
11173
|
-
eventIdPropertyTypeRid: ObjectTypeFieldApiName
|
|
11174
|
-
startTimePropertyTypeRid: ObjectTypeFieldApiName
|
|
11544
|
+
description?: ObjectTypeFieldApiName | null | undefined;
|
|
11545
|
+
endTimePropertyTypeRid: ObjectTypeFieldApiName;
|
|
11546
|
+
eventIdPropertyTypeRid: ObjectTypeFieldApiName;
|
|
11547
|
+
startTimePropertyTypeRid: ObjectTypeFieldApiName;
|
|
11175
11548
|
}
|
|
11176
11549
|
/**
|
|
11177
11550
|
* Note this is experimental, should not be used without consulting the product team and format can
|
|
@@ -11232,7 +11605,7 @@ interface OntologyIrInlineActionType {
|
|
|
11232
11605
|
parameterId?: ParameterId | null | undefined;
|
|
11233
11606
|
rid: ActionTypeApiName;
|
|
11234
11607
|
}
|
|
11235
|
-
interface OntologyIrInterfaceLinkType
|
|
11608
|
+
interface OntologyIrInterfaceLinkType {
|
|
11236
11609
|
cardinality: InterfaceLinkTypeCardinality;
|
|
11237
11610
|
linkedEntityTypeId: OntologyIrLinkedEntityTypeId;
|
|
11238
11611
|
metadata: InterfaceLinkTypeMetadata;
|
|
@@ -11240,14 +11613,31 @@ interface OntologyIrInterfaceLinkType$1 {
|
|
|
11240
11613
|
}
|
|
11241
11614
|
interface OntologyIrInterfaceParameterPropertyValue {
|
|
11242
11615
|
parameterId: ParameterId;
|
|
11243
|
-
sharedPropertyTypeRid: ObjectTypeFieldApiName
|
|
11616
|
+
sharedPropertyTypeRid: ObjectTypeFieldApiName;
|
|
11244
11617
|
}
|
|
11245
11618
|
interface OntologyIrInterfacePropertyImplementation {
|
|
11246
|
-
propertyTypeRid: ObjectTypeFieldApiName
|
|
11619
|
+
propertyTypeRid: ObjectTypeFieldApiName;
|
|
11247
11620
|
}
|
|
11248
11621
|
interface OntologyIrInterfaceSharedPropertyType {
|
|
11249
11622
|
required: boolean;
|
|
11250
|
-
sharedPropertyType: OntologyIrSharedPropertyType
|
|
11623
|
+
sharedPropertyType: OntologyIrSharedPropertyType;
|
|
11624
|
+
}
|
|
11625
|
+
/**
|
|
11626
|
+
* Represents a collection of properties that object types can implement. If an object type implements an
|
|
11627
|
+
* interface, it is guaranteed to have the conform to the interface shape.
|
|
11628
|
+
*/
|
|
11629
|
+
interface OntologyIrInterfaceType {
|
|
11630
|
+
allExtendsInterfaces: Array<InterfaceTypeApiName>;
|
|
11631
|
+
allLinks: Array<OntologyIrInterfaceLinkType>;
|
|
11632
|
+
allProperties: Array<OntologyIrSharedPropertyType>;
|
|
11633
|
+
allPropertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
|
|
11634
|
+
apiName: InterfaceTypeApiName;
|
|
11635
|
+
displayMetadata: InterfaceTypeDisplayMetadata;
|
|
11636
|
+
extendsInterfaces: Array<InterfaceTypeApiName>;
|
|
11637
|
+
links: Array<OntologyIrInterfaceLinkType>;
|
|
11638
|
+
properties: Array<OntologyIrSharedPropertyType>;
|
|
11639
|
+
propertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
|
|
11640
|
+
status: OntologyIrInterfaceTypeStatus;
|
|
11251
11641
|
}
|
|
11252
11642
|
interface OntologyIrInterfaceTypeStatus_experimental {
|
|
11253
11643
|
type: "experimental";
|
|
@@ -11437,8 +11827,8 @@ type OntologyIrManyToManyLinkTypeDatasourceDefinition = OntologyIrManyToManyLink
|
|
|
11437
11827
|
* Many to many link type datasource that is backed by a stream, uniquely identified by its StreamLocator.
|
|
11438
11828
|
*/
|
|
11439
11829
|
interface OntologyIrManyToManyLinkTypeStreamDatasource {
|
|
11440
|
-
objectTypeAPrimaryKeyMapping: Record<ObjectTypeFieldApiName
|
|
11441
|
-
objectTypeBPrimaryKeyMapping: Record<ObjectTypeFieldApiName
|
|
11830
|
+
objectTypeAPrimaryKeyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11831
|
+
objectTypeBPrimaryKeyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11442
11832
|
retentionPolicy: RetentionPolicy;
|
|
11443
11833
|
streamLocator: StreamName;
|
|
11444
11834
|
}
|
|
@@ -11465,12 +11855,12 @@ interface OntologyIrMediaSourceRid_datasetRid {
|
|
|
11465
11855
|
type OntologyIrMediaSourceRid = OntologyIrMediaSourceRid_mediaSetRid | OntologyIrMediaSourceRid_datasetRid;
|
|
11466
11856
|
interface OntologyIrModifyInterfaceRule {
|
|
11467
11857
|
interfaceObjectToModifyParameter: ParameterId;
|
|
11468
|
-
sharedPropertyValues: Record<ObjectTypeFieldApiName
|
|
11858
|
+
sharedPropertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
11469
11859
|
}
|
|
11470
11860
|
interface OntologyIrModifyObjectRule {
|
|
11471
11861
|
objectToModify: ParameterId;
|
|
11472
|
-
propertyValues: Record<ObjectTypeFieldApiName
|
|
11473
|
-
structFieldValues: Record<ObjectTypeFieldApiName
|
|
11862
|
+
propertyValues: Record<ObjectTypeFieldApiName, OntologyIrLogicRuleValue>;
|
|
11863
|
+
structFieldValues: Record<ObjectTypeFieldApiName, Record<StructFieldRid, StructFieldLogicRuleValue>>;
|
|
11474
11864
|
}
|
|
11475
11865
|
interface OntologyIrMultipassUserFilter_groupFilter {
|
|
11476
11866
|
type: "groupFilter";
|
|
@@ -11616,7 +12006,7 @@ interface OntologyIrNumberFormatUnit {
|
|
|
11616
12006
|
* reference is required to determine if the series is numeric or non-numeric.
|
|
11617
12007
|
*/
|
|
11618
12008
|
interface OntologyIrNumericOrNonNumericSeriesValueMetadataV2 {
|
|
11619
|
-
isNonNumericPropertyTypeId: ObjectTypeFieldApiName
|
|
12009
|
+
isNonNumericPropertyTypeId: ObjectTypeFieldApiName;
|
|
11620
12010
|
}
|
|
11621
12011
|
/**
|
|
11622
12012
|
* Configuration for numeric series.
|
|
@@ -11640,14 +12030,14 @@ interface OntologyIrNumericSeriesValueUnit_customUnit {
|
|
|
11640
12030
|
type OntologyIrNumericSeriesValueUnit = OntologyIrNumericSeriesValueUnit_standardUnit | OntologyIrNumericSeriesValueUnit_customUnit;
|
|
11641
12031
|
interface OntologyIrObjectParameterPropertyValue {
|
|
11642
12032
|
parameterId: ParameterId;
|
|
11643
|
-
propertyTypeId: ObjectTypeFieldApiName
|
|
12033
|
+
propertyTypeId: ObjectTypeFieldApiName;
|
|
11644
12034
|
}
|
|
11645
12035
|
/**
|
|
11646
12036
|
* Reference to a struct field of a struct property.
|
|
11647
12037
|
*/
|
|
11648
12038
|
interface OntologyIrObjectParameterStructFieldValue {
|
|
11649
12039
|
parameterId: ParameterId;
|
|
11650
|
-
propertyTypeId: ObjectTypeFieldApiName
|
|
12040
|
+
propertyTypeId: ObjectTypeFieldApiName;
|
|
11651
12041
|
structFieldRid: StructFieldRid;
|
|
11652
12042
|
}
|
|
11653
12043
|
/**
|
|
@@ -11655,7 +12045,7 @@ interface OntologyIrObjectParameterStructFieldValue {
|
|
|
11655
12045
|
*/
|
|
11656
12046
|
interface OntologyIrObjectParameterStructListFieldValue {
|
|
11657
12047
|
parameterId: ParameterId;
|
|
11658
|
-
propertyTypeId: ObjectTypeFieldApiName
|
|
12048
|
+
propertyTypeId: ObjectTypeFieldApiName;
|
|
11659
12049
|
structFieldRid: StructFieldRid;
|
|
11660
12050
|
}
|
|
11661
12051
|
/**
|
|
@@ -11669,7 +12059,7 @@ interface OntologyIrObjectQueryPrefill {
|
|
|
11669
12059
|
*/
|
|
11670
12060
|
interface OntologyIrObjectQueryPropertyValue {
|
|
11671
12061
|
objectSet: OntologyIrActionsObjectSet;
|
|
11672
|
-
propertyTypeId: ObjectTypeFieldApiName
|
|
12062
|
+
propertyTypeId: ObjectTypeFieldApiName;
|
|
11673
12063
|
}
|
|
11674
12064
|
/**
|
|
11675
12065
|
* Generates an ObjectSetRid, from the provided ObjectSet definition, that would be used as the default value
|
|
@@ -11707,11 +12097,11 @@ interface OntologyIrObjectType {
|
|
|
11707
12097
|
apiName: ObjectTypeApiName;
|
|
11708
12098
|
displayMetadata: ObjectTypeDisplayMetadata;
|
|
11709
12099
|
implementsInterfaces2: Array<OntologyIrObjectTypeInterfaceImplementation>;
|
|
11710
|
-
primaryKeys: Array<ObjectTypeFieldApiName
|
|
11711
|
-
propertyTypes: Record<ObjectTypeFieldApiName
|
|
12100
|
+
primaryKeys: Array<ObjectTypeFieldApiName>;
|
|
12101
|
+
propertyTypes: Record<ObjectTypeFieldApiName, OntologyIrPropertyType>;
|
|
11712
12102
|
redacted?: boolean | null | undefined;
|
|
11713
12103
|
status: OntologyIrObjectTypeStatus;
|
|
11714
|
-
titlePropertyTypeRid: ObjectTypeFieldApiName
|
|
12104
|
+
titlePropertyTypeRid: ObjectTypeFieldApiName;
|
|
11715
12105
|
}
|
|
11716
12106
|
/**
|
|
11717
12107
|
* Object type datasource that is backed by a dataset in foundry, uniquely identified by its rid and
|
|
@@ -11721,7 +12111,7 @@ interface OntologyIrObjectType {
|
|
|
11721
12111
|
interface OntologyIrObjectTypeDatasetDatasource {
|
|
11722
12112
|
branchId: BranchId;
|
|
11723
12113
|
datasetRid: DataSetName;
|
|
11724
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12114
|
+
propertyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11725
12115
|
writebackDatasetRid?: DataSetName | null | undefined;
|
|
11726
12116
|
}
|
|
11727
12117
|
/**
|
|
@@ -11731,7 +12121,7 @@ interface OntologyIrObjectTypeDatasetDatasource {
|
|
|
11731
12121
|
*/
|
|
11732
12122
|
interface OntologyIrObjectTypeDatasetDatasourceV2 {
|
|
11733
12123
|
datasetRid: DataSetName;
|
|
11734
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12124
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
11735
12125
|
}
|
|
11736
12126
|
/**
|
|
11737
12127
|
* Object type datasource supporting edit only property types, that is backed by a dataset in foundry,
|
|
@@ -11742,7 +12132,7 @@ interface OntologyIrObjectTypeDatasetDatasourceV2 {
|
|
|
11742
12132
|
interface OntologyIrObjectTypeDatasetDatasourceV3 {
|
|
11743
12133
|
branchId: BranchId;
|
|
11744
12134
|
datasetRid: DataSetName;
|
|
11745
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12135
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
11746
12136
|
propertySecurityGroups?: OntologyIrPropertySecurityGroups | null | undefined;
|
|
11747
12137
|
}
|
|
11748
12138
|
interface OntologyIrObjectTypeDatasource {
|
|
@@ -11824,7 +12214,7 @@ interface OntologyIrObjectTypeDerivedPropertiesDatasource {
|
|
|
11824
12214
|
*/
|
|
11825
12215
|
interface OntologyIrObjectTypeDirectDatasource {
|
|
11826
12216
|
directSourceRid: DirectSourceRid;
|
|
11827
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12217
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
11828
12218
|
propertySecurityGroups: OntologyIrPropertySecurityGroups;
|
|
11829
12219
|
}
|
|
11830
12220
|
/**
|
|
@@ -11836,7 +12226,7 @@ interface OntologyIrObjectTypeDirectDatasource {
|
|
|
11836
12226
|
*/
|
|
11837
12227
|
interface OntologyIrObjectTypeEditsOnlyDatasource {
|
|
11838
12228
|
editsOnlyRid?: EditsOnlyRid | null | undefined;
|
|
11839
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12229
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
11840
12230
|
propertySecurityGroups: OntologyIrPropertySecurityGroups;
|
|
11841
12231
|
}
|
|
11842
12232
|
/**
|
|
@@ -11844,21 +12234,21 @@ interface OntologyIrObjectTypeEditsOnlyDatasource {
|
|
|
11844
12234
|
*/
|
|
11845
12235
|
interface OntologyIrObjectTypeGeotimeSeriesDatasource {
|
|
11846
12236
|
geotimeSeriesIntegrationRid: GeotimeSeriesIntegrationName;
|
|
11847
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12237
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
11848
12238
|
}
|
|
11849
12239
|
/**
|
|
11850
12240
|
* An interface that an object type implements and metadata on how it implements it.
|
|
11851
12241
|
*/
|
|
11852
12242
|
interface OntologyIrObjectTypeInterfaceImplementation {
|
|
11853
12243
|
interfaceTypeApiName: InterfaceTypeApiName;
|
|
11854
|
-
properties: Record<ObjectTypeFieldApiName
|
|
12244
|
+
properties: Record<ObjectTypeFieldApiName, OntologyIrInterfacePropertyImplementation>;
|
|
11855
12245
|
}
|
|
11856
12246
|
/**
|
|
11857
12247
|
* Object type datasource that is backed by media, uniquely identified by its rid.
|
|
11858
12248
|
*/
|
|
11859
12249
|
interface OntologyIrObjectTypeMediaDatasource {
|
|
11860
12250
|
mediaSourceRids: Array<OntologyIrMediaSourceRid>;
|
|
11861
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12251
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
11862
12252
|
}
|
|
11863
12253
|
/**
|
|
11864
12254
|
* Object type datasource that is backed by a media set view, uniquely identified by its rid. This datasource
|
|
@@ -11868,14 +12258,14 @@ interface OntologyIrObjectTypeMediaDatasource {
|
|
|
11868
12258
|
interface OntologyIrObjectTypeMediaSetViewDatasource {
|
|
11869
12259
|
assumedMarkings: Array<MarkingId>;
|
|
11870
12260
|
mediaSetViewLocator: MediaSetViewName;
|
|
11871
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12261
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
11872
12262
|
}
|
|
11873
12263
|
/**
|
|
11874
12264
|
* Object type datasource representing a restricted view on top of a stream.
|
|
11875
12265
|
*/
|
|
11876
12266
|
interface OntologyIrObjectTypeRestrictedStreamDatasource {
|
|
11877
12267
|
policyVersion: PolicyVersion;
|
|
11878
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12268
|
+
propertyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11879
12269
|
restrictedViewRid: RestrictedViewName;
|
|
11880
12270
|
retentionPolicy: RetentionPolicy;
|
|
11881
12271
|
streamLocator: StreamName;
|
|
@@ -11885,7 +12275,7 @@ interface OntologyIrObjectTypeRestrictedStreamDatasource {
|
|
|
11885
12275
|
* Deprecated in favor of ObjectTypeRestrictedViewDatasourceV2
|
|
11886
12276
|
*/
|
|
11887
12277
|
interface OntologyIrObjectTypeRestrictedViewDatasource {
|
|
11888
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12278
|
+
propertyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11889
12279
|
restrictedViewRid: RestrictedViewName;
|
|
11890
12280
|
writebackDatasetRid?: DataSetName | null | undefined;
|
|
11891
12281
|
}
|
|
@@ -11895,7 +12285,7 @@ interface OntologyIrObjectTypeRestrictedViewDatasource {
|
|
|
11895
12285
|
* have a writeback dataset. Its property types are mapped to PropertyTypeMappingInfo instead of column names.
|
|
11896
12286
|
*/
|
|
11897
12287
|
interface OntologyIrObjectTypeRestrictedViewDatasourceV2 {
|
|
11898
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12288
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
11899
12289
|
restrictedViewRid: RestrictedViewName;
|
|
11900
12290
|
}
|
|
11901
12291
|
interface OntologyIrObjectTypeStatus_experimental {
|
|
@@ -11926,7 +12316,7 @@ type OntologyIrObjectTypeStatus = OntologyIrObjectTypeStatus_experimental | Onto
|
|
|
11926
12316
|
* Object type datasource that is backed by a stream in foundry, uniquely identified by its locator.
|
|
11927
12317
|
*/
|
|
11928
12318
|
interface OntologyIrObjectTypeStreamDatasource {
|
|
11929
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12319
|
+
propertyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11930
12320
|
retentionPolicy: RetentionPolicy;
|
|
11931
12321
|
streamLocator: StreamName;
|
|
11932
12322
|
}
|
|
@@ -11936,7 +12326,7 @@ interface OntologyIrObjectTypeStreamDatasource {
|
|
|
11936
12326
|
* when granular policies are needed.
|
|
11937
12327
|
*/
|
|
11938
12328
|
interface OntologyIrObjectTypeStreamDatasourceV2 {
|
|
11939
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12329
|
+
propertyMapping: Record<ObjectTypeFieldApiName, ColumnName>;
|
|
11940
12330
|
propertySecurityGroups?: OntologyIrPropertySecurityGroups | null | undefined;
|
|
11941
12331
|
retentionPolicy: RetentionPolicy;
|
|
11942
12332
|
streamLocator: StreamName;
|
|
@@ -11947,14 +12337,14 @@ interface OntologyIrObjectTypeStreamDatasourceV2 {
|
|
|
11947
12337
|
*/
|
|
11948
12338
|
interface OntologyIrObjectTypeTableDatasource {
|
|
11949
12339
|
branchId: BranchId;
|
|
11950
|
-
propertyMapping: Record<ObjectTypeFieldApiName
|
|
12340
|
+
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
11951
12341
|
tableRid: TableRid;
|
|
11952
12342
|
}
|
|
11953
12343
|
/**
|
|
11954
12344
|
* Object type datasource that is backed by a time series sync, uniquely identified by its rid.
|
|
11955
12345
|
*/
|
|
11956
12346
|
interface OntologyIrObjectTypeTimeSeriesDatasource {
|
|
11957
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12347
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
11958
12348
|
timeSeriesSyncRid: TimeSeriesSyncName;
|
|
11959
12349
|
}
|
|
11960
12350
|
interface OntologyIrObjectTypeTraits {
|
|
@@ -12054,7 +12444,7 @@ type OntologyIrParameterMultipassUserOrEmpty = OntologyIrParameterMultipassUserO
|
|
|
12054
12444
|
interface OntologyIrParameterObjectPropertyValue {
|
|
12055
12445
|
objectSet: OntologyIrActionsObjectSet;
|
|
12056
12446
|
otherValueAllowed?: OtherValueAllowed | null | undefined;
|
|
12057
|
-
propertyTypeId: ObjectTypeFieldApiName
|
|
12447
|
+
propertyTypeId: ObjectTypeFieldApiName;
|
|
12058
12448
|
}
|
|
12059
12449
|
interface OntologyIrParameterObjectPropertyValueOrEmpty_empty {
|
|
12060
12450
|
type: "empty";
|
|
@@ -12217,7 +12607,7 @@ interface OntologyIrPrePostFix {
|
|
|
12217
12607
|
* property groups.
|
|
12218
12608
|
*/
|
|
12219
12609
|
interface OntologyIrPropertySecurityGroup {
|
|
12220
|
-
properties: Array<ObjectTypeFieldApiName
|
|
12610
|
+
properties: Array<ObjectTypeFieldApiName>;
|
|
12221
12611
|
rid: PropertySecurityGroupRid;
|
|
12222
12612
|
security: OntologyIrSecurityGroupSecurityDefinition;
|
|
12223
12613
|
}
|
|
@@ -12232,23 +12622,23 @@ interface OntologyIrPropertySecurityGroups {
|
|
|
12232
12622
|
* A PropertyType is a typed attribute of an ObjectType.
|
|
12233
12623
|
*/
|
|
12234
12624
|
interface OntologyIrPropertyType {
|
|
12235
|
-
apiName: ObjectTypeFieldApiName
|
|
12625
|
+
apiName: ObjectTypeFieldApiName;
|
|
12236
12626
|
baseFormatter?: OntologyIrBaseFormatter | null | undefined;
|
|
12237
12627
|
dataConstraints?: DataConstraints | null | undefined;
|
|
12238
12628
|
displayMetadata: PropertyTypeDisplayMetadata;
|
|
12239
12629
|
indexedForSearch: boolean;
|
|
12240
12630
|
inlineAction?: OntologyIrInlineActionType | null | undefined;
|
|
12241
12631
|
ruleSetBinding?: OntologyIrRuleSetBinding | null | undefined;
|
|
12242
|
-
sharedPropertyTypeApiName?: ObjectTypeFieldApiName
|
|
12243
|
-
sharedPropertyTypeRid?: ObjectTypeFieldApiName
|
|
12632
|
+
sharedPropertyTypeApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
12633
|
+
sharedPropertyTypeRid?: ObjectTypeFieldApiName | null | undefined;
|
|
12244
12634
|
status: OntologyIrPropertyTypeStatus;
|
|
12245
|
-
type: OntologyIrType
|
|
12635
|
+
type: OntologyIrType;
|
|
12246
12636
|
typeClasses: Array<TypeClass>;
|
|
12247
12637
|
valueType?: ValueTypeApiNameReference | null | undefined;
|
|
12248
12638
|
}
|
|
12249
12639
|
interface OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType {
|
|
12250
12640
|
type: "propertyType";
|
|
12251
|
-
propertyType: ObjectTypeFieldApiName
|
|
12641
|
+
propertyType: ObjectTypeFieldApiName;
|
|
12252
12642
|
}
|
|
12253
12643
|
interface OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation {
|
|
12254
12644
|
type: "internalInterpolation";
|
|
@@ -12257,7 +12647,7 @@ interface OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_inter
|
|
|
12257
12647
|
type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation = OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType | OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation;
|
|
12258
12648
|
interface OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType {
|
|
12259
12649
|
type: "propertyType";
|
|
12260
|
-
propertyType: ObjectTypeFieldApiName
|
|
12650
|
+
propertyType: ObjectTypeFieldApiName;
|
|
12261
12651
|
}
|
|
12262
12652
|
interface OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation {
|
|
12263
12653
|
type: "internalInterpolation";
|
|
@@ -12270,7 +12660,7 @@ interface OntologyIrPropertyTypeReferenceOrStringConstant_constant {
|
|
|
12270
12660
|
}
|
|
12271
12661
|
interface OntologyIrPropertyTypeReferenceOrStringConstant_propertyType {
|
|
12272
12662
|
type: "propertyType";
|
|
12273
|
-
propertyType: ObjectTypeFieldApiName
|
|
12663
|
+
propertyType: ObjectTypeFieldApiName;
|
|
12274
12664
|
}
|
|
12275
12665
|
type OntologyIrPropertyTypeReferenceOrStringConstant = OntologyIrPropertyTypeReferenceOrStringConstant_constant | OntologyIrPropertyTypeReferenceOrStringConstant_propertyType;
|
|
12276
12666
|
interface OntologyIrPropertyTypeStatus_experimental {
|
|
@@ -12359,7 +12749,7 @@ interface OntologyIrSecurityGroupComparisonValue_constant {
|
|
|
12359
12749
|
}
|
|
12360
12750
|
interface OntologyIrSecurityGroupComparisonValue_property {
|
|
12361
12751
|
type: "property";
|
|
12362
|
-
property: ObjectTypeFieldApiName
|
|
12752
|
+
property: ObjectTypeFieldApiName;
|
|
12363
12753
|
}
|
|
12364
12754
|
interface OntologyIrSecurityGroupComparisonValue_userProperty {
|
|
12365
12755
|
type: "userProperty";
|
|
@@ -12421,7 +12811,7 @@ interface OntologyIrSecurityGroupGranularSecurityDefinition {
|
|
|
12421
12811
|
* of MarkingPropertyTypes.
|
|
12422
12812
|
*/
|
|
12423
12813
|
interface OntologyIrSecurityGroupMarkingsCondition {
|
|
12424
|
-
property: ObjectTypeFieldApiName
|
|
12814
|
+
property: ObjectTypeFieldApiName;
|
|
12425
12815
|
}
|
|
12426
12816
|
/**
|
|
12427
12817
|
* True if the condition is false. This condition cannot have an empty property type.
|
|
@@ -12442,7 +12832,7 @@ interface OntologyIrSecurityGroupSecurityDefinition_granular {
|
|
|
12442
12832
|
}
|
|
12443
12833
|
type OntologyIrSecurityGroupSecurityDefinition = OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly | OntologyIrSecurityGroupSecurityDefinition_granular;
|
|
12444
12834
|
interface OntologyIrSensorTrait {
|
|
12445
|
-
readingPropertyTypeRid: ObjectTypeFieldApiName
|
|
12835
|
+
readingPropertyTypeRid: ObjectTypeFieldApiName;
|
|
12446
12836
|
}
|
|
12447
12837
|
interface OntologyIrSeriesValueMetadata_numeric {
|
|
12448
12838
|
type: "numeric";
|
|
@@ -12464,15 +12854,15 @@ type OntologyIrSeriesValueMetadata = OntologyIrSeriesValueMetadata_numeric | Ont
|
|
|
12464
12854
|
/**
|
|
12465
12855
|
* A property type that can be shared across object types.
|
|
12466
12856
|
*/
|
|
12467
|
-
interface OntologyIrSharedPropertyType
|
|
12857
|
+
interface OntologyIrSharedPropertyType {
|
|
12468
12858
|
aliases: Array<SharedPropertyTypeAlias>;
|
|
12469
|
-
apiName: ObjectTypeFieldApiName
|
|
12859
|
+
apiName: ObjectTypeFieldApiName;
|
|
12470
12860
|
baseFormatter?: OntologyIrBaseFormatter | null | undefined;
|
|
12471
12861
|
dataConstraints?: DataConstraints | null | undefined;
|
|
12472
12862
|
displayMetadata: SharedPropertyTypeDisplayMetadata;
|
|
12473
12863
|
gothamMapping?: SharedPropertyTypeGothamMapping | null | undefined;
|
|
12474
12864
|
indexedForSearch: boolean;
|
|
12475
|
-
type: OntologyIrType
|
|
12865
|
+
type: OntologyIrType;
|
|
12476
12866
|
typeClasses: Array<TypeClass>;
|
|
12477
12867
|
valueType?: ValueTypeApiNameReference | null | undefined;
|
|
12478
12868
|
}
|
|
@@ -12550,11 +12940,11 @@ interface OntologyIrStructFieldPrefillOverride {
|
|
|
12550
12940
|
/**
|
|
12551
12941
|
* Represents an ordered set of fields and values.
|
|
12552
12942
|
*/
|
|
12553
|
-
interface OntologyIrStructFieldType
|
|
12943
|
+
interface OntologyIrStructFieldType {
|
|
12554
12944
|
aliases: Array<StructFieldAlias>;
|
|
12555
|
-
apiName: ObjectTypeFieldApiName
|
|
12945
|
+
apiName: ObjectTypeFieldApiName;
|
|
12556
12946
|
displayMetadata: StructFieldDisplayMetadata;
|
|
12557
|
-
fieldType: OntologyIrType
|
|
12947
|
+
fieldType: OntologyIrType;
|
|
12558
12948
|
typeClasses: Array<TypeClass>;
|
|
12559
12949
|
}
|
|
12560
12950
|
interface OntologyIrStructFieldValidation {
|
|
@@ -12590,8 +12980,8 @@ interface OntologyIrStructFieldValidationDisplayMetadata {
|
|
|
12590
12980
|
renderHint: ParameterRenderHint;
|
|
12591
12981
|
visibility: ParameterVisibility;
|
|
12592
12982
|
}
|
|
12593
|
-
interface OntologyIrStructPropertyType
|
|
12594
|
-
structFields: Array<OntologyIrStructFieldType
|
|
12983
|
+
interface OntologyIrStructPropertyType {
|
|
12984
|
+
structFields: Array<OntologyIrStructFieldType>;
|
|
12595
12985
|
}
|
|
12596
12986
|
/**
|
|
12597
12987
|
* An action notification's structured short body.
|
|
@@ -12640,16 +13030,16 @@ interface OntologyIrTimeDependentNonNumericSeriesFormat {
|
|
|
12640
13030
|
* Configuration for either numeric or non-numeric series.
|
|
12641
13031
|
*/
|
|
12642
13032
|
interface OntologyIrTimeDependentNumericOrNonNumericSeriesFormat {
|
|
12643
|
-
defaultInternalInterpolationPropertyTypeId: ObjectTypeFieldApiName
|
|
12644
|
-
isNonNumericPropertyTypeId: ObjectTypeFieldApiName
|
|
12645
|
-
unitPropertyTypeId: ObjectTypeFieldApiName
|
|
13033
|
+
defaultInternalInterpolationPropertyTypeId: ObjectTypeFieldApiName;
|
|
13034
|
+
isNonNumericPropertyTypeId: ObjectTypeFieldApiName;
|
|
13035
|
+
unitPropertyTypeId: ObjectTypeFieldApiName;
|
|
12646
13036
|
}
|
|
12647
13037
|
/**
|
|
12648
13038
|
* Configuration for either numeric or non-numeric series.
|
|
12649
13039
|
*/
|
|
12650
13040
|
interface OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2 {
|
|
12651
|
-
defaultInternalInterpolationPropertyTypeId?: ObjectTypeFieldApiName
|
|
12652
|
-
unitPropertyTypeId?: ObjectTypeFieldApiName
|
|
13041
|
+
defaultInternalInterpolationPropertyTypeId?: ObjectTypeFieldApiName | null | undefined;
|
|
13042
|
+
unitPropertyTypeId?: ObjectTypeFieldApiName | null | undefined;
|
|
12653
13043
|
}
|
|
12654
13044
|
/**
|
|
12655
13045
|
* Configuration for numeric series.
|
|
@@ -12679,9 +13069,9 @@ type OntologyIrTimeDependentSeriesFormat = OntologyIrTimeDependentSeriesFormat_n
|
|
|
12679
13069
|
* Describes how to treat an object of this type as a time series.
|
|
12680
13070
|
*/
|
|
12681
13071
|
interface OntologyIrTimeSeriesMetadata {
|
|
12682
|
-
measurePropertyTypeRid?: ObjectTypeFieldApiName
|
|
12683
|
-
timeSeriesIdPropertyTypeRid: ObjectTypeFieldApiName
|
|
12684
|
-
valueUnitsPropertyTypeRid?: ObjectTypeFieldApiName
|
|
13072
|
+
measurePropertyTypeRid?: ObjectTypeFieldApiName | null | undefined;
|
|
13073
|
+
timeSeriesIdPropertyTypeRid: ObjectTypeFieldApiName;
|
|
13074
|
+
valueUnitsPropertyTypeRid?: ObjectTypeFieldApiName | null | undefined;
|
|
12685
13075
|
}
|
|
12686
13076
|
interface OntologyIrTimestampFormatter {
|
|
12687
13077
|
displayTimezone: OntologyIrDatetimeTimezone;
|
|
@@ -12689,7 +13079,7 @@ interface OntologyIrTimestampFormatter {
|
|
|
12689
13079
|
}
|
|
12690
13080
|
interface OntologyIrType_array {
|
|
12691
13081
|
type: "array";
|
|
12692
|
-
array: OntologyIrArrayPropertyType
|
|
13082
|
+
array: OntologyIrArrayPropertyType;
|
|
12693
13083
|
}
|
|
12694
13084
|
interface OntologyIrType_boolean {
|
|
12695
13085
|
type: "boolean";
|
|
@@ -12773,7 +13163,7 @@ interface OntologyIrType_geotimeSeriesReference {
|
|
|
12773
13163
|
}
|
|
12774
13164
|
interface OntologyIrType_struct {
|
|
12775
13165
|
type: "struct";
|
|
12776
|
-
struct: OntologyIrStructPropertyType
|
|
13166
|
+
struct: OntologyIrStructPropertyType;
|
|
12777
13167
|
}
|
|
12778
13168
|
/**
|
|
12779
13169
|
* Wrapper type for the various supported property types.
|
|
@@ -12781,7 +13171,7 @@ interface OntologyIrType_struct {
|
|
|
12781
13171
|
* Note: this type also encodes information on how to store the property. Use `DataType` if only the raw type
|
|
12782
13172
|
* information matters (e.g. this format condition input must be a string).
|
|
12783
13173
|
*/
|
|
12784
|
-
type OntologyIrType
|
|
13174
|
+
type OntologyIrType = OntologyIrType_array | OntologyIrType_boolean | OntologyIrType_byte | OntologyIrType_date | OntologyIrType_decimal | OntologyIrType_double | OntologyIrType_float | OntologyIrType_geohash | OntologyIrType_geoshape | OntologyIrType_integer | OntologyIrType_long | OntologyIrType_short | OntologyIrType_string | OntologyIrType_experimentalTimeDependentV1 | OntologyIrType_timestamp | OntologyIrType_attachment | OntologyIrType_marking | OntologyIrType_cipherText | OntologyIrType_mediaReference | OntologyIrType_vector | OntologyIrType_geotimeSeriesReference | OntologyIrType_struct;
|
|
12785
13175
|
interface OntologyIrUrlTarget_logicRuleValue {
|
|
12786
13176
|
type: "logicRuleValue";
|
|
12787
13177
|
logicRuleValue: OntologyIrLogicRuleValue;
|
|
@@ -12812,14 +13202,14 @@ interface OntologyIrValidationRule {
|
|
|
12812
13202
|
}
|
|
12813
13203
|
interface OntologyIrValueReferenceSource_propertyTypeRid {
|
|
12814
13204
|
type: "propertyTypeRid";
|
|
12815
|
-
propertyTypeRid: ObjectTypeFieldApiName
|
|
13205
|
+
propertyTypeRid: ObjectTypeFieldApiName;
|
|
12816
13206
|
}
|
|
12817
13207
|
type OntologyIrValueReferenceSource = OntologyIrValueReferenceSource_propertyTypeRid;
|
|
12818
13208
|
/**
|
|
12819
13209
|
* A mapping between the `WorkflowObjectTypeTraitPropertyId` of the `WorkflowObjectTypeTrait` to the `PropertyRid` of the `ObjectType` it is to be associated with.
|
|
12820
13210
|
*/
|
|
12821
13211
|
interface OntologyIrWorkflowObjectTypeTraitImpl {
|
|
12822
|
-
mapping: Record<WorkflowObjectTypeTraitPropertyId, ObjectTypeFieldApiName
|
|
13212
|
+
mapping: Record<WorkflowObjectTypeTraitPropertyId, ObjectTypeFieldApiName>;
|
|
12823
13213
|
reference: WorkflowObjectTypeTraitReference;
|
|
12824
13214
|
}
|
|
12825
13215
|
/**
|
|
@@ -13934,7 +14324,7 @@ interface PropertySecurityGroupsModification {
|
|
|
13934
14324
|
* A PropertyType is a typed attribute of an ObjectType.
|
|
13935
14325
|
*/
|
|
13936
14326
|
interface PropertyType {
|
|
13937
|
-
apiName?: ObjectTypeFieldApiName
|
|
14327
|
+
apiName?: ObjectTypeFieldApiName | null | undefined;
|
|
13938
14328
|
baseFormatter?: BaseFormatter | null | undefined;
|
|
13939
14329
|
dataConstraints?: DataConstraints | null | undefined;
|
|
13940
14330
|
displayMetadata: PropertyTypeDisplayMetadata;
|
|
@@ -13943,7 +14333,7 @@ interface PropertyType {
|
|
|
13943
14333
|
inlineAction?: InlineActionType | null | undefined;
|
|
13944
14334
|
rid: PropertyTypeRid;
|
|
13945
14335
|
ruleSetBinding?: RuleSetBinding | null | undefined;
|
|
13946
|
-
sharedPropertyTypeApiName?: ObjectTypeFieldApiName
|
|
14336
|
+
sharedPropertyTypeApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
13947
14337
|
sharedPropertyTypeRid?: SharedPropertyTypeRid | null | undefined;
|
|
13948
14338
|
status: PropertyTypeStatus;
|
|
13949
14339
|
type: Type;
|
|
@@ -14891,7 +15281,7 @@ interface SharedPropertiesSummary {
|
|
|
14891
15281
|
*/
|
|
14892
15282
|
interface SharedPropertyType {
|
|
14893
15283
|
aliases: Array<SharedPropertyTypeAlias>;
|
|
14894
|
-
apiName: ObjectTypeFieldApiName
|
|
15284
|
+
apiName: ObjectTypeFieldApiName;
|
|
14895
15285
|
baseFormatter?: BaseFormatter | null | undefined;
|
|
14896
15286
|
dataConstraints?: DataConstraints | null | undefined;
|
|
14897
15287
|
displayMetadata: SharedPropertyTypeDisplayMetadata;
|
|
@@ -14998,7 +15388,7 @@ interface SharedPropertyTypeSoftLinkType {
|
|
|
14998
15388
|
*/
|
|
14999
15389
|
interface SharedPropertyTypeStructFieldLogicRuleValueModification {
|
|
15000
15390
|
sharedPropertyTypeRidOrIdInRequest: SharedPropertyTypeRidOrIdInRequest;
|
|
15001
|
-
structFieldApiName?: ObjectTypeFieldApiName
|
|
15391
|
+
structFieldApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
15002
15392
|
structFieldApiNameOrRid?: StructFieldApiNameOrRid | null | undefined;
|
|
15003
15393
|
structFieldLogicRuleValueModification: StructFieldLogicRuleValueModification;
|
|
15004
15394
|
}
|
|
@@ -15208,7 +15598,7 @@ interface StructFieldApiNameOrRid_rid {
|
|
|
15208
15598
|
}
|
|
15209
15599
|
interface StructFieldApiNameOrRid_apiName {
|
|
15210
15600
|
type: "apiName";
|
|
15211
|
-
apiName: ObjectTypeFieldApiName
|
|
15601
|
+
apiName: ObjectTypeFieldApiName;
|
|
15212
15602
|
}
|
|
15213
15603
|
type StructFieldApiNameOrRid = StructFieldApiNameOrRid_rid | StructFieldApiNameOrRid_apiName;
|
|
15214
15604
|
interface StructFieldConditionalOverride {
|
|
@@ -15302,7 +15692,7 @@ type StructFieldRid = string;
|
|
|
15302
15692
|
*/
|
|
15303
15693
|
interface StructFieldType {
|
|
15304
15694
|
aliases: Array<StructFieldAlias>;
|
|
15305
|
-
apiName: ObjectTypeFieldApiName
|
|
15695
|
+
apiName: ObjectTypeFieldApiName;
|
|
15306
15696
|
displayMetadata: StructFieldDisplayMetadata;
|
|
15307
15697
|
fieldType: Type;
|
|
15308
15698
|
structFieldRid: StructFieldRid;
|
|
@@ -16986,72 +17376,14 @@ type ValueTypeStatus = ValueTypeStatus_active | ValueTypeStatus_deprecated;
|
|
|
16986
17376
|
|
|
16987
17377
|
type ValueTypeVersion = string;
|
|
16988
17378
|
|
|
16989
|
-
type ObjectTypeFieldApiName = string;
|
|
16990
17379
|
interface OntologyIr {
|
|
16991
17380
|
blockData: OntologyIrOntologyBlockDataV2;
|
|
16992
|
-
importedTypes:
|
|
16993
|
-
}
|
|
16994
|
-
interface OntologyIrOntologyBlockDataV2 extends ReplaceKeys<Omit<OntologyBlockDataV2, "knownIdentifiers" | "ruleSets" | "blockOutputCompassLocations">, {
|
|
16995
|
-
objectTypes: Record<string, OntologyIrObjectTypeBlockDataV2>;
|
|
16996
|
-
interfaceTypes: Record<string, OntologyIrInterfaceTypeBlockDataV2>;
|
|
16997
|
-
sharedPropertyTypes: Record<string, OntologyIrSharedPropertyTypeBlockDataV2>;
|
|
16998
|
-
linkTypes: Record<string, OntologyIrLinkTypeBlockDataV2>;
|
|
16999
|
-
actionTypes: Record<string, OntologyIrActionTypeBlockDataV2>;
|
|
17000
|
-
}> {
|
|
17001
|
-
}
|
|
17002
|
-
interface OntologyIrInterfaceType extends ReplaceKeys<Omit<InterfaceType, "rid">, {
|
|
17003
|
-
properties: OntologyIrSharedPropertyType[];
|
|
17004
|
-
allProperties: OntologyIrSharedPropertyType[];
|
|
17005
|
-
extendsInterfaces: string[];
|
|
17006
|
-
allExtendsInterfaces: string[];
|
|
17007
|
-
links: OntologyIrInterfaceLinkType[];
|
|
17008
|
-
allLinks: OntologyIrInterfaceLinkType[];
|
|
17009
|
-
propertiesV2: Record<ObjectTypeFieldApiName, {
|
|
17010
|
-
sharedPropertyType: OntologyIrSharedPropertyType;
|
|
17011
|
-
required: boolean;
|
|
17012
|
-
}>;
|
|
17013
|
-
}> {
|
|
17381
|
+
importedTypes: OntologyIrImportedTypes;
|
|
17014
17382
|
}
|
|
17015
17383
|
type ApiNameValueTypeReference = {
|
|
17016
17384
|
apiName: ValueTypeApiName;
|
|
17017
17385
|
version: ValueTypeVersion;
|
|
17018
17386
|
};
|
|
17019
|
-
interface OntologyIrSharedPropertyType extends ReplaceKeys<Omit<SharedPropertyType, "rid" | "valueType">, {
|
|
17020
|
-
type: OntologyIrType;
|
|
17021
|
-
}> {
|
|
17022
|
-
valueType?: ApiNameValueTypeReference;
|
|
17023
|
-
}
|
|
17024
|
-
type OntologyIrType = Exclude<Type, Type_struct | Type_array> | {
|
|
17025
|
-
type: "struct";
|
|
17026
|
-
struct: OntologyIrStructPropertyType;
|
|
17027
|
-
} | {
|
|
17028
|
-
type: "array";
|
|
17029
|
-
array: OntologyIrArrayPropertyType;
|
|
17030
|
-
};
|
|
17031
|
-
type OntologyIrArrayPropertyType = ReplaceKeys<ArrayPropertyType, {
|
|
17032
|
-
subtype: OntologyIrType;
|
|
17033
|
-
}>;
|
|
17034
|
-
type OntologyIrStructPropertyType = ReplaceKeys<StructPropertyType, {
|
|
17035
|
-
structFields: Array<OntologyIrStructFieldType>;
|
|
17036
|
-
}>;
|
|
17037
|
-
type OntologyIrStructFieldType = ReplaceKeys<Omit<StructFieldType, "structFieldRid">, {
|
|
17038
|
-
fieldType: OntologyIrType;
|
|
17039
|
-
}>;
|
|
17040
|
-
interface OntologyIrInterfaceLinkType extends Omit<InterfaceLinkType, "rid"> {
|
|
17041
|
-
}
|
|
17042
|
-
interface OntologyIrInterfaceTypeBlockDataV2 extends ReplaceKeys<InterfaceTypeBlockDataV2, {
|
|
17043
|
-
interfaceType: OntologyIrInterfaceType;
|
|
17044
|
-
}> {
|
|
17045
|
-
}
|
|
17046
|
-
interface OntologyIrSharedPropertyTypeBlockDataV2 extends ReplaceKeys<SharedPropertyTypeBlockDataV2, {
|
|
17047
|
-
sharedPropertyType: OntologyIrSharedPropertyType;
|
|
17048
|
-
}> {
|
|
17049
|
-
}
|
|
17050
|
-
type ReplaceKeys<T, Z extends {
|
|
17051
|
-
[K in keyof T]?: unknown;
|
|
17052
|
-
}> = {
|
|
17053
|
-
[K in keyof T]: K extends keyof Z ? Z[K] : T[K];
|
|
17054
|
-
};
|
|
17055
17387
|
type OntologyIrPackagedValueType = {
|
|
17056
17388
|
version: ValueTypeVersion;
|
|
17057
17389
|
baseType: BaseType;
|
|
@@ -17070,12 +17402,5 @@ type OntologyIrValueTypeBlockDataEntry = {
|
|
|
17070
17402
|
type OntologyIrValueTypeBlockData = {
|
|
17071
17403
|
valueTypes: OntologyIrValueTypeBlockDataEntry[];
|
|
17072
17404
|
};
|
|
17073
|
-
type ImportedTypes = {
|
|
17074
|
-
sharedPropertyTypes: ImportedSharedPropertyTypes[];
|
|
17075
|
-
};
|
|
17076
|
-
type ImportedSharedPropertyTypes = {
|
|
17077
|
-
apiName: string;
|
|
17078
|
-
packageName: string;
|
|
17079
|
-
};
|
|
17080
17405
|
|
|
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 };
|
|
17406
|
+
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 ActionParameterShapeId, type ActionRevert, type ActionRevertEnabledFor, type ActionRevertEnabledFor_actionApplier, type ActionSubmissionConfiguration, type ActionTableSubmissionMode, type ActionTableSubmissionModeConfiguration, type ActionTableSubmissionMode_submitAllValidOrNothingThrowing, type ActionTableSubmissionMode_submitValidEntriesInOrderUntilFirstFailure, type ActionType, type ActionTypeApiName, type ActionTypeBlockDataV2, 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 ActionTypePermissionInformation, type ActionTypeProvenanceModification, type ActionTypeProvenanceSourceModification, type ActionTypeProvenanceSourceModification_marketplace, type ActionTypeProvenanceSourceModification_none, type ActionTypeRestrictionStatus, 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 BlockInternalId, type BlockPermissionInformation, type BlockShapeId, 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 ColumnNameType, 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 DataFilter, type DataNullability, type DataNullabilityV2, type DataSecurity, type DataSetName, 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 DatasourcePredicate, type DatasourcePredicate_hasRid, type DatasourcePredicate_isOnlyDatasource, type DatasourcePredicate_or, 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 GeotimeSeriesIntegrationName, 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 ImportedActionType, type ImportedInterfaceLinkType, type ImportedInterfaceType, type ImportedLinkDefinition, type ImportedLinkDefinition_manyToMany, type ImportedLinkDefinition_oneToMany, type ImportedLinkType, type ImportedManyToManyLinkDefinition, type ImportedObjectType, type ImportedOneToManyLinkDefinition, type ImportedOntologyEntitiesForProjectSpanOntologies, type ImportedParameter, type ImportedPropertyType, type ImportedSharedPropertyType, type ImportedTypes, type InlineActionDisplayOptions, type InlineActionType, type InlineActionTypeCannotBeReferencedByMultipleObjectTypesError, type InstallLocationBlockShapeId, 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 InterfaceTypeBlockDataV2, 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 IsOnlyDatasource, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_ridFormatter, type KnownFormatter_userId, type KnownMarketplaceIdentifiers, 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 LinkTypeBlockDataV2, 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 LinkTypePermissionInformation, type LinkTypeRestrictionStatus, 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 MarketplaceObjectTypeEntityMetadata, 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 MediaSetViewName, 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 ObjectTypeBlockDataV2, 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, 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 ObjectTypePermissionInformation, type ObjectTypeRestrictedStreamDatasource, type ObjectTypeRestrictedViewDatasource, type ObjectTypeRestrictedViewDatasourceV2, type ObjectTypeRestrictionStatus, 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 ObjectsWritebackDataset, 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 OntologyBlockDataV2, 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, 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 OntologyIrBlockPermissionInformation, 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 OntologyIrImportedActionType, type OntologyIrImportedInterfaceType, type OntologyIrImportedObjectType, type OntologyIrImportedParameter, type OntologyIrImportedPropertyType, type OntologyIrImportedSharedPropertyType, type OntologyIrImportedTypes, type OntologyIrInlineActionType, type 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 OntologyIrKnownMarketplaceIdentifiers, 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 OntologyIrMarketplaceObjectTypeEntityMetadata, 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 OntologyIrObjectPropertyReference, 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 OntologyIrObjectsWritebackDataset, type OntologyIrOneToManyLinkDefinition, type OntologyIrOntologyBlockDataV2, type OntologyIrOrCondition, 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 OntologyIrPropertyToColumnMapping, type OntologyIrPropertyToPropertyMapping, 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 OntologyIrSchemaMigrationBlockData, type OntologyIrSchemaTransitionsWithSchemaVersion, 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, 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 OutputMode, 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 PatchesConfiguration, type PolicyVersion, type PrePostFix, type PrincipalId, type PropertiesReferenceDuplicateColumnNameWrapper, type Property, type PropertyId, type PropertyPredicate, type PropertyPredicate_and, type PropertyPredicate_hasId, type PropertyPredicate_hasRid, type PropertyPredicate_not, type PropertyPredicate_or, type PropertyRenderHint, type PropertyRid, 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 RestrictedViewName, 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 SchemaConfiguration, type SchemaMigrationBlockData, type SchemaMigrationRid, type SchemaTransitionsWithSchemaVersion, 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 SharedPropertyTypeBlockDataV2, 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 StreamName, 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 TimeSeriesSyncName, 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 ValidationRuleIndex, 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, type WritebackDatasetRid, type WritebackDatasetSpec, bulkLoadOntologyEntities, createTemporaryObjectSet, getBulkLinksPage, getLinkTypesForObjectTypes, loadAllOntologies };
|