acryl-datahub-cloud 0.3.10rc4__py3-none-any.whl → 0.3.16.1rc0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
- acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
- acryl_datahub_cloud/action_request/action_request_owner_source.py +37 -8
- acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
- acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
- acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
- acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
- acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +39 -19
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +60 -25
- acryl_datahub_cloud/datahub_reporting/extract_graph.py +9 -3
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +248 -52
- acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
- acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
- acryl_datahub_cloud/datahub_restore/source.py +3 -2
- acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +532 -109
- acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
- acryl_datahub_cloud/graphql_utils.py +64 -0
- acryl_datahub_cloud/lineage_features/source.py +555 -49
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2390 -1938
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +6 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +14 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
- acryl_datahub_cloud/metadata/schema.avsc +27843 -23200
- acryl_datahub_cloud/metadata/schema_classes.py +29901 -24310
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +375 -212
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +191 -21
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
- acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
- acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
- acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
- acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
- acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
- acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
- acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
- acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
- acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
- acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
- acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
- acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
- acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
- acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
- acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
- acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
- acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
- acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +424 -97
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +65 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +64 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +84 -29
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +221 -23
- acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
- acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
- acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
- acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
- acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
- acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
- acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +147 -0
- acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +69 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
- acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
- acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
- acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
- acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
- acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
- acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
- acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
- acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
- acryl_datahub_cloud/sdk/assertion/types.py +20 -0
- acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
- acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
- acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
- acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
- acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
- acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
- acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
- acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
- acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
- acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
- acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
- acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
- acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
- acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
- acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
- acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
- acryl_datahub_cloud/sdk/errors.py +34 -0
- acryl_datahub_cloud/sdk/resolver_client.py +42 -0
- acryl_datahub_cloud/sdk/subscription_client.py +737 -0
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +49 -43
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +243 -145
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
- {acryl_datahub_cloud-0.3.10rc4.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
},
|
|
244
244
|
"type": "string",
|
|
245
245
|
"name": "type",
|
|
246
|
-
"doc": "The type of the action request, for example 'TAG_ASSOCIATION'"
|
|
246
|
+
"doc": "The type of the action request, for example 'TAG_ASSOCIATION', 'WORKFLOW_FORM_REQUEST'"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"Searchable": {
|
|
@@ -526,7 +526,8 @@
|
|
|
526
526
|
"fieldType": "URN",
|
|
527
527
|
"filterNameOverride": "Owned By",
|
|
528
528
|
"hasValuesFieldName": "hasOwners",
|
|
529
|
-
"queryByDefault": false
|
|
529
|
+
"queryByDefault": false,
|
|
530
|
+
"searchTier": 2
|
|
530
531
|
},
|
|
531
532
|
"java": {
|
|
532
533
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -665,6 +666,75 @@
|
|
|
665
666
|
"name": "source",
|
|
666
667
|
"default": null,
|
|
667
668
|
"doc": "Source information for the ownership"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"Searchable": {
|
|
672
|
+
"/actor": {
|
|
673
|
+
"fieldName": "ownerAttributionActors",
|
|
674
|
+
"fieldType": "URN",
|
|
675
|
+
"queryByDefault": false
|
|
676
|
+
},
|
|
677
|
+
"/source": {
|
|
678
|
+
"fieldName": "ownerAttributionSources",
|
|
679
|
+
"fieldType": "URN",
|
|
680
|
+
"queryByDefault": false
|
|
681
|
+
},
|
|
682
|
+
"/time": {
|
|
683
|
+
"fieldName": "ownerAttributionDates",
|
|
684
|
+
"fieldType": "DATETIME",
|
|
685
|
+
"queryByDefault": false
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"type": [
|
|
689
|
+
"null",
|
|
690
|
+
{
|
|
691
|
+
"type": "record",
|
|
692
|
+
"name": "MetadataAttribution",
|
|
693
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
694
|
+
"fields": [
|
|
695
|
+
{
|
|
696
|
+
"type": "long",
|
|
697
|
+
"name": "time",
|
|
698
|
+
"doc": "When this metadata was updated."
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"java": {
|
|
702
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
703
|
+
},
|
|
704
|
+
"type": "string",
|
|
705
|
+
"name": "actor",
|
|
706
|
+
"doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
|
|
707
|
+
"Urn": "Urn"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"java": {
|
|
711
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
712
|
+
},
|
|
713
|
+
"type": [
|
|
714
|
+
"null",
|
|
715
|
+
"string"
|
|
716
|
+
],
|
|
717
|
+
"name": "source",
|
|
718
|
+
"default": null,
|
|
719
|
+
"doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
|
|
720
|
+
"Urn": "Urn"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"type": {
|
|
724
|
+
"type": "map",
|
|
725
|
+
"values": "string"
|
|
726
|
+
},
|
|
727
|
+
"name": "sourceDetail",
|
|
728
|
+
"default": {},
|
|
729
|
+
"doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
|
|
730
|
+
}
|
|
731
|
+
],
|
|
732
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"name": "attribution",
|
|
736
|
+
"default": null,
|
|
737
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
668
738
|
}
|
|
669
739
|
],
|
|
670
740
|
"doc": "Ownership information"
|
|
@@ -743,6 +813,32 @@
|
|
|
743
813
|
"name": "lastModified",
|
|
744
814
|
"default": null,
|
|
745
815
|
"doc": "Audit stamp containing who last modified this relationship edge and when"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"Searchable": {
|
|
819
|
+
"/actor": {
|
|
820
|
+
"fieldName": "structuredPropertyAttributionActors",
|
|
821
|
+
"fieldType": "URN",
|
|
822
|
+
"queryByDefault": false
|
|
823
|
+
},
|
|
824
|
+
"/source": {
|
|
825
|
+
"fieldName": "structuredPropertyAttributionSources",
|
|
826
|
+
"fieldType": "URN",
|
|
827
|
+
"queryByDefault": false
|
|
828
|
+
},
|
|
829
|
+
"/time": {
|
|
830
|
+
"fieldName": "structuredPropertyAttributionDates",
|
|
831
|
+
"fieldType": "DATETIME",
|
|
832
|
+
"queryByDefault": false
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"type": [
|
|
836
|
+
"null",
|
|
837
|
+
"com.linkedin.pegasus2avro.common.MetadataAttribution"
|
|
838
|
+
],
|
|
839
|
+
"name": "attribution",
|
|
840
|
+
"default": null,
|
|
841
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
746
842
|
}
|
|
747
843
|
]
|
|
748
844
|
}
|
|
@@ -1000,6 +1096,143 @@
|
|
|
1000
1096
|
"name": "dataContractProposal",
|
|
1001
1097
|
"default": null,
|
|
1002
1098
|
"doc": "A proposal to create or modify a Data Contract"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"type": [
|
|
1102
|
+
"null",
|
|
1103
|
+
{
|
|
1104
|
+
"type": "record",
|
|
1105
|
+
"name": "ActionWorkflowFormRequest",
|
|
1106
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1107
|
+
"fields": [
|
|
1108
|
+
{
|
|
1109
|
+
"Searchable": {
|
|
1110
|
+
"fieldName": "actionWorkflow"
|
|
1111
|
+
},
|
|
1112
|
+
"java": {
|
|
1113
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1114
|
+
},
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"name": "workflow",
|
|
1117
|
+
"doc": "The urn of the associated access request workflow.",
|
|
1118
|
+
"Urn": "Urn"
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"Searchable": {
|
|
1122
|
+
"fieldName": "workflowCategory"
|
|
1123
|
+
},
|
|
1124
|
+
"type": {
|
|
1125
|
+
"type": "enum",
|
|
1126
|
+
"symbolDocs": {
|
|
1127
|
+
"ACCESS": "Workflow for requesting access to a resource, such as a dataset or data job.\nRequires the `access` field to be populated with specific access parameters.",
|
|
1128
|
+
"CUSTOM": "Custom, non-access related workflow. For example, may be used to model workflows like\nasset creation, asset cleanup or deletion, etc."
|
|
1129
|
+
},
|
|
1130
|
+
"name": "ActionWorkflowCategory",
|
|
1131
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1132
|
+
"symbols": [
|
|
1133
|
+
"ACCESS",
|
|
1134
|
+
"CUSTOM"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"name": "category",
|
|
1138
|
+
"doc": "The category of the workflow. \nPrimarily used for searching / filtering action requests."
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"Searchable": {
|
|
1142
|
+
"fieldName": "customWorkflowCategory"
|
|
1143
|
+
},
|
|
1144
|
+
"type": [
|
|
1145
|
+
"null",
|
|
1146
|
+
"string"
|
|
1147
|
+
],
|
|
1148
|
+
"name": "customCategory",
|
|
1149
|
+
"default": null,
|
|
1150
|
+
"doc": "The custom category of the workflow, if category is custom.\nPrimarily used for searching / filtering action requests."
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"type": {
|
|
1154
|
+
"type": "array",
|
|
1155
|
+
"items": {
|
|
1156
|
+
"type": "record",
|
|
1157
|
+
"name": "ActionWorkflowFormRequestField",
|
|
1158
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1159
|
+
"fields": [
|
|
1160
|
+
{
|
|
1161
|
+
"type": "string",
|
|
1162
|
+
"name": "id",
|
|
1163
|
+
"doc": "Workflow-local id for the field"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"type": {
|
|
1167
|
+
"type": "array",
|
|
1168
|
+
"items": [
|
|
1169
|
+
"string",
|
|
1170
|
+
"double"
|
|
1171
|
+
]
|
|
1172
|
+
},
|
|
1173
|
+
"name": "values",
|
|
1174
|
+
"doc": "Value, reused model from structured properties. Empty if no response was provided."
|
|
1175
|
+
}
|
|
1176
|
+
],
|
|
1177
|
+
"doc": "Simply capture the field id + the value."
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
"name": "fields",
|
|
1181
|
+
"doc": "Custom fields provided by the user making the request if the action request is of type FORM_SUBMITTED\nEventually, these may need to become search indexed. For now, not indexed."
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"type": [
|
|
1185
|
+
"null",
|
|
1186
|
+
{
|
|
1187
|
+
"type": "record",
|
|
1188
|
+
"name": "ActionWorkflowRequestAccess",
|
|
1189
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1190
|
+
"fields": [
|
|
1191
|
+
{
|
|
1192
|
+
"Searchable": {
|
|
1193
|
+
"fieldType": "DATETIME"
|
|
1194
|
+
},
|
|
1195
|
+
"type": [
|
|
1196
|
+
"null",
|
|
1197
|
+
"long"
|
|
1198
|
+
],
|
|
1199
|
+
"name": "expiresAt",
|
|
1200
|
+
"default": null,
|
|
1201
|
+
"doc": "Expiration time for the action request (optional, if part of the template)."
|
|
1202
|
+
}
|
|
1203
|
+
]
|
|
1204
|
+
}
|
|
1205
|
+
],
|
|
1206
|
+
"name": "access",
|
|
1207
|
+
"default": null,
|
|
1208
|
+
"doc": "Details specific for access request workflow requests."
|
|
1209
|
+
},
|
|
1210
|
+
{
|
|
1211
|
+
"type": {
|
|
1212
|
+
"type": "record",
|
|
1213
|
+
"name": "ActionWorkflowRequestStepState",
|
|
1214
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1215
|
+
"fields": [
|
|
1216
|
+
{
|
|
1217
|
+
"Searchable": {
|
|
1218
|
+
"fieldName": "workflowStepId"
|
|
1219
|
+
},
|
|
1220
|
+
"type": "string",
|
|
1221
|
+
"name": "stepId",
|
|
1222
|
+
"doc": "The id of the current step in the workflow, which should be of type ACTION_REQUEST_REVIEW."
|
|
1223
|
+
}
|
|
1224
|
+
]
|
|
1225
|
+
},
|
|
1226
|
+
"name": "stepState",
|
|
1227
|
+
"doc": "State related to steps. This should correspond to a step of type ACTION_REQUEST_REVIEW in the workflow \ndefinition."
|
|
1228
|
+
}
|
|
1229
|
+
],
|
|
1230
|
+
"doc": "A request for an access workflow form to be reviewed.\n\nFor an access workflow of trigger type FORM, this action request currently represents the \"state\" \nof the workflow instance. \n\nIn the future, we may add more features like due dates, escalations, etc.\nIdeally, for now we are keeping these out of here."
|
|
1231
|
+
}
|
|
1232
|
+
],
|
|
1233
|
+
"name": "workflowFormRequest",
|
|
1234
|
+
"default": null,
|
|
1235
|
+
"doc": "An action workflow form request."
|
|
1003
1236
|
}
|
|
1004
1237
|
],
|
|
1005
1238
|
"doc": "Parameters provided with a particular action request. Only one of the fields will be populated,\ndepending on the action request type."
|
|
@@ -1220,19 +1453,29 @@
|
|
|
1220
1453
|
"fieldNameAliases": [
|
|
1221
1454
|
"_entityName"
|
|
1222
1455
|
],
|
|
1223
|
-
"fieldType": "WORD_GRAM"
|
|
1456
|
+
"fieldType": "WORD_GRAM",
|
|
1457
|
+
"searchLabel": "entityName",
|
|
1458
|
+
"searchTier": 1
|
|
1224
1459
|
},
|
|
1225
1460
|
"type": "string",
|
|
1226
1461
|
"name": "title",
|
|
1227
1462
|
"doc": "Title of the chart"
|
|
1228
1463
|
},
|
|
1229
1464
|
{
|
|
1230
|
-
"Searchable": {
|
|
1465
|
+
"Searchable": {
|
|
1466
|
+
"searchTier": 2
|
|
1467
|
+
},
|
|
1231
1468
|
"type": "string",
|
|
1232
1469
|
"name": "description",
|
|
1233
1470
|
"doc": "Detailed description about the chart"
|
|
1234
1471
|
},
|
|
1235
1472
|
{
|
|
1473
|
+
"Searchable": {
|
|
1474
|
+
"/lastModified/time": {
|
|
1475
|
+
"fieldName": "lastModifiedAt",
|
|
1476
|
+
"fieldType": "DATETIME"
|
|
1477
|
+
}
|
|
1478
|
+
},
|
|
1236
1479
|
"type": {
|
|
1237
1480
|
"type": "record",
|
|
1238
1481
|
"name": "ChangeAuditStamps",
|
|
@@ -1277,7 +1520,8 @@
|
|
|
1277
1520
|
},
|
|
1278
1521
|
{
|
|
1279
1522
|
"Searchable": {
|
|
1280
|
-
"fieldType": "KEYWORD"
|
|
1523
|
+
"fieldType": "KEYWORD",
|
|
1524
|
+
"searchTier": 4
|
|
1281
1525
|
},
|
|
1282
1526
|
"java": {
|
|
1283
1527
|
"class": "com.linkedin.pegasus2avro.common.url.Url",
|
|
@@ -1321,7 +1565,8 @@
|
|
|
1321
1565
|
"createdActor": "inputEdges/*/created/actor",
|
|
1322
1566
|
"createdOn": "inputEdges/*/created/time",
|
|
1323
1567
|
"entityTypes": [
|
|
1324
|
-
"dataset"
|
|
1568
|
+
"dataset",
|
|
1569
|
+
"chart"
|
|
1325
1570
|
],
|
|
1326
1571
|
"isLineage": true,
|
|
1327
1572
|
"name": "Consumes",
|
|
@@ -1404,7 +1649,8 @@
|
|
|
1404
1649
|
"Searchable": {
|
|
1405
1650
|
"addToFilters": true,
|
|
1406
1651
|
"fieldType": "KEYWORD",
|
|
1407
|
-
"filterNameOverride": "Chart Type"
|
|
1652
|
+
"filterNameOverride": "Chart Type",
|
|
1653
|
+
"searchTier": 3
|
|
1408
1654
|
},
|
|
1409
1655
|
"type": [
|
|
1410
1656
|
"null",
|
|
@@ -1443,7 +1689,8 @@
|
|
|
1443
1689
|
"Searchable": {
|
|
1444
1690
|
"addToFilters": true,
|
|
1445
1691
|
"fieldType": "KEYWORD",
|
|
1446
|
-
"filterNameOverride": "Access Level"
|
|
1692
|
+
"filterNameOverride": "Access Level",
|
|
1693
|
+
"searchTier": 4
|
|
1447
1694
|
},
|
|
1448
1695
|
"type": [
|
|
1449
1696
|
"null",
|
|
@@ -1668,7 +1915,8 @@
|
|
|
1668
1915
|
"fieldType": "URN",
|
|
1669
1916
|
"filterNameOverride": "Tagged With",
|
|
1670
1917
|
"hasValuesFieldName": "hasTags",
|
|
1671
|
-
"queryByDefault": true
|
|
1918
|
+
"queryByDefault": true,
|
|
1919
|
+
"searchTier": 2
|
|
1672
1920
|
}
|
|
1673
1921
|
},
|
|
1674
1922
|
"type": {
|
|
@@ -1716,50 +1964,7 @@
|
|
|
1716
1964
|
},
|
|
1717
1965
|
"type": [
|
|
1718
1966
|
"null",
|
|
1719
|
-
|
|
1720
|
-
"type": "record",
|
|
1721
|
-
"name": "MetadataAttribution",
|
|
1722
|
-
"namespace": "com.linkedin.pegasus2avro.common",
|
|
1723
|
-
"fields": [
|
|
1724
|
-
{
|
|
1725
|
-
"type": "long",
|
|
1726
|
-
"name": "time",
|
|
1727
|
-
"doc": "When this metadata was updated."
|
|
1728
|
-
},
|
|
1729
|
-
{
|
|
1730
|
-
"java": {
|
|
1731
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1732
|
-
},
|
|
1733
|
-
"type": "string",
|
|
1734
|
-
"name": "actor",
|
|
1735
|
-
"doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
|
|
1736
|
-
"Urn": "Urn"
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
"java": {
|
|
1740
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1741
|
-
},
|
|
1742
|
-
"type": [
|
|
1743
|
-
"null",
|
|
1744
|
-
"string"
|
|
1745
|
-
],
|
|
1746
|
-
"name": "source",
|
|
1747
|
-
"default": null,
|
|
1748
|
-
"doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
|
|
1749
|
-
"Urn": "Urn"
|
|
1750
|
-
},
|
|
1751
|
-
{
|
|
1752
|
-
"type": {
|
|
1753
|
-
"type": "map",
|
|
1754
|
-
"values": "string"
|
|
1755
|
-
},
|
|
1756
|
-
"name": "sourceDetail",
|
|
1757
|
-
"default": {},
|
|
1758
|
-
"doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
|
|
1759
|
-
}
|
|
1760
|
-
],
|
|
1761
|
-
"doc": "Information about who, why, and how this metadata was applied"
|
|
1762
|
-
}
|
|
1967
|
+
"com.linkedin.pegasus2avro.common.MetadataAttribution"
|
|
1763
1968
|
],
|
|
1764
1969
|
"name": "attribution",
|
|
1765
1970
|
"default": null,
|
|
@@ -2147,7 +2352,9 @@
|
|
|
2147
2352
|
"_entityName"
|
|
2148
2353
|
],
|
|
2149
2354
|
"fieldType": "TEXT_PARTIAL",
|
|
2150
|
-
"queryByDefault": true
|
|
2355
|
+
"queryByDefault": true,
|
|
2356
|
+
"searchLabel": "entityName",
|
|
2357
|
+
"searchTier": 1
|
|
2151
2358
|
},
|
|
2152
2359
|
"type": [
|
|
2153
2360
|
"null",
|
|
@@ -2225,7 +2432,8 @@
|
|
|
2225
2432
|
},
|
|
2226
2433
|
{
|
|
2227
2434
|
"Searchable": {
|
|
2228
|
-
"fieldType": "TEXT_PARTIAL"
|
|
2435
|
+
"fieldType": "TEXT_PARTIAL",
|
|
2436
|
+
"searchTier": 2
|
|
2229
2437
|
},
|
|
2230
2438
|
"type": [
|
|
2231
2439
|
"null",
|
|
@@ -2248,7 +2456,8 @@
|
|
|
2248
2456
|
"Searchable": {
|
|
2249
2457
|
"/time": {
|
|
2250
2458
|
"fieldName": "createdTime",
|
|
2251
|
-
"fieldType": "DATETIME"
|
|
2459
|
+
"fieldType": "DATETIME",
|
|
2460
|
+
"searchLabel": "createdAt"
|
|
2252
2461
|
}
|
|
2253
2462
|
},
|
|
2254
2463
|
"type": [
|
|
@@ -2361,7 +2570,9 @@
|
|
|
2361
2570
|
"_entityName"
|
|
2362
2571
|
],
|
|
2363
2572
|
"fieldType": "WORD_GRAM",
|
|
2364
|
-
"queryByDefault": true
|
|
2573
|
+
"queryByDefault": true,
|
|
2574
|
+
"searchLabel": "entityName",
|
|
2575
|
+
"searchTier": 1
|
|
2365
2576
|
},
|
|
2366
2577
|
"type": [
|
|
2367
2578
|
"null",
|
|
@@ -2374,7 +2585,8 @@
|
|
|
2374
2585
|
{
|
|
2375
2586
|
"Searchable": {
|
|
2376
2587
|
"fieldType": "KEYWORD",
|
|
2377
|
-
"queryByDefault": true
|
|
2588
|
+
"queryByDefault": true,
|
|
2589
|
+
"searchTier": 1
|
|
2378
2590
|
},
|
|
2379
2591
|
"type": [
|
|
2380
2592
|
"null",
|
|
@@ -2496,6 +2708,19 @@
|
|
|
2496
2708
|
"name": "system",
|
|
2497
2709
|
"default": false,
|
|
2498
2710
|
"doc": "Whether the corpUser is a system user."
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
"Searchable": {
|
|
2714
|
+
"fieldType": "BOOLEAN",
|
|
2715
|
+
"queryByDefault": false
|
|
2716
|
+
},
|
|
2717
|
+
"type": [
|
|
2718
|
+
"null",
|
|
2719
|
+
"boolean"
|
|
2720
|
+
],
|
|
2721
|
+
"name": "isSupportUser",
|
|
2722
|
+
"default": null,
|
|
2723
|
+
"doc": "Whether the corpUser is a support user authenticated through the support OIDC flow."
|
|
2499
2724
|
}
|
|
2500
2725
|
],
|
|
2501
2726
|
"doc": "Linkedin corp user information"
|
|
@@ -2555,7 +2780,7 @@
|
|
|
2555
2780
|
},
|
|
2556
2781
|
"type": "string",
|
|
2557
2782
|
"name": "pictureLink",
|
|
2558
|
-
"default": "
|
|
2783
|
+
"default": "assets/platforms/default_avatar.png",
|
|
2559
2784
|
"doc": "A URL which points to a picture which user wants to set as a profile photo"
|
|
2560
2785
|
},
|
|
2561
2786
|
{
|
|
@@ -2831,7 +3056,9 @@
|
|
|
2831
3056
|
"fieldNameAliases": [
|
|
2832
3057
|
"_entityName"
|
|
2833
3058
|
],
|
|
2834
|
-
"fieldType": "WORD_GRAM"
|
|
3059
|
+
"fieldType": "WORD_GRAM",
|
|
3060
|
+
"searchLabel": "entityName",
|
|
3061
|
+
"searchTier": 1
|
|
2835
3062
|
},
|
|
2836
3063
|
"type": "string",
|
|
2837
3064
|
"name": "title",
|
|
@@ -2840,7 +3067,8 @@
|
|
|
2840
3067
|
{
|
|
2841
3068
|
"Searchable": {
|
|
2842
3069
|
"fieldType": "TEXT",
|
|
2843
|
-
"hasValuesFieldName": "hasDescription"
|
|
3070
|
+
"hasValuesFieldName": "hasDescription",
|
|
3071
|
+
"searchTier": 2
|
|
2844
3072
|
},
|
|
2845
3073
|
"type": "string",
|
|
2846
3074
|
"name": "description",
|
|
@@ -2967,7 +3195,8 @@
|
|
|
2967
3195
|
"Searchable": {
|
|
2968
3196
|
"/lastModified/time": {
|
|
2969
3197
|
"fieldName": "lastModifiedAt",
|
|
2970
|
-
"fieldType": "DATETIME"
|
|
3198
|
+
"fieldType": "DATETIME",
|
|
3199
|
+
"searchLabel": "lastModifiedAt"
|
|
2971
3200
|
}
|
|
2972
3201
|
},
|
|
2973
3202
|
"type": "com.linkedin.pegasus2avro.common.ChangeAuditStamps",
|
|
@@ -2976,7 +3205,8 @@
|
|
|
2976
3205
|
},
|
|
2977
3206
|
{
|
|
2978
3207
|
"Searchable": {
|
|
2979
|
-
"fieldType": "KEYWORD"
|
|
3208
|
+
"fieldType": "KEYWORD",
|
|
3209
|
+
"searchTier": 4
|
|
2980
3210
|
},
|
|
2981
3211
|
"java": {
|
|
2982
3212
|
"class": "com.linkedin.pegasus2avro.common.url.Url",
|
|
@@ -2994,7 +3224,8 @@
|
|
|
2994
3224
|
"Searchable": {
|
|
2995
3225
|
"addToFilters": true,
|
|
2996
3226
|
"fieldType": "KEYWORD",
|
|
2997
|
-
"filterNameOverride": "Access Level"
|
|
3227
|
+
"filterNameOverride": "Access Level",
|
|
3228
|
+
"searchTier": 4
|
|
2998
3229
|
},
|
|
2999
3230
|
"type": [
|
|
3000
3231
|
"null",
|
|
@@ -3077,7 +3308,8 @@
|
|
|
3077
3308
|
{
|
|
3078
3309
|
"Searchable": {
|
|
3079
3310
|
"fieldName": "editedDescription",
|
|
3080
|
-
"fieldType": "TEXT"
|
|
3311
|
+
"fieldType": "TEXT",
|
|
3312
|
+
"searchTier": 2
|
|
3081
3313
|
},
|
|
3082
3314
|
"type": [
|
|
3083
3315
|
"null",
|
|
@@ -3210,7 +3442,9 @@
|
|
|
3210
3442
|
"fieldNameAliases": [
|
|
3211
3443
|
"_entityName"
|
|
3212
3444
|
],
|
|
3213
|
-
"fieldType": "WORD_GRAM"
|
|
3445
|
+
"fieldType": "WORD_GRAM",
|
|
3446
|
+
"searchLabel": "entityName",
|
|
3447
|
+
"searchTier": 1
|
|
3214
3448
|
},
|
|
3215
3449
|
"type": "string",
|
|
3216
3450
|
"name": "name",
|
|
@@ -3219,7 +3453,8 @@
|
|
|
3219
3453
|
{
|
|
3220
3454
|
"Searchable": {
|
|
3221
3455
|
"fieldType": "TEXT",
|
|
3222
|
-
"hasValuesFieldName": "hasDescription"
|
|
3456
|
+
"hasValuesFieldName": "hasDescription",
|
|
3457
|
+
"searchTier": 2
|
|
3223
3458
|
},
|
|
3224
3459
|
"type": [
|
|
3225
3460
|
"null",
|
|
@@ -3232,7 +3467,8 @@
|
|
|
3232
3467
|
{
|
|
3233
3468
|
"Searchable": {
|
|
3234
3469
|
"fieldType": "TEXT_PARTIAL",
|
|
3235
|
-
"queryByDefault": false
|
|
3470
|
+
"queryByDefault": false,
|
|
3471
|
+
"searchTier": 3
|
|
3236
3472
|
},
|
|
3237
3473
|
"type": [
|
|
3238
3474
|
"null",
|
|
@@ -3246,7 +3482,8 @@
|
|
|
3246
3482
|
"Searchable": {
|
|
3247
3483
|
"/time": {
|
|
3248
3484
|
"fieldName": "createdAt",
|
|
3249
|
-
"fieldType": "DATETIME"
|
|
3485
|
+
"fieldType": "DATETIME",
|
|
3486
|
+
"searchLabel": "createdAt"
|
|
3250
3487
|
}
|
|
3251
3488
|
},
|
|
3252
3489
|
"type": [
|
|
@@ -3286,7 +3523,8 @@
|
|
|
3286
3523
|
"Searchable": {
|
|
3287
3524
|
"/time": {
|
|
3288
3525
|
"fieldName": "lastModifiedAt",
|
|
3289
|
-
"fieldType": "DATETIME"
|
|
3526
|
+
"fieldType": "DATETIME",
|
|
3527
|
+
"searchLabel": "lastModifiedAt"
|
|
3290
3528
|
}
|
|
3291
3529
|
},
|
|
3292
3530
|
"type": [
|
|
@@ -3319,6 +3557,8 @@
|
|
|
3319
3557
|
"QA": "Designates quality assurance fabrics",
|
|
3320
3558
|
"RVW": "Designates review fabrics",
|
|
3321
3559
|
"SANDBOX": "Designates sandbox fabrics",
|
|
3560
|
+
"SBX": "Alternative spelling for sandbox",
|
|
3561
|
+
"SIT": "System Integration Testing",
|
|
3322
3562
|
"STG": "Designates staging fabrics",
|
|
3323
3563
|
"TEST": "Designates testing fabrics",
|
|
3324
3564
|
"TST": "Alternative Test spelling",
|
|
@@ -3340,6 +3580,8 @@
|
|
|
3340
3580
|
"RVW",
|
|
3341
3581
|
"PRD",
|
|
3342
3582
|
"TST",
|
|
3583
|
+
"SIT",
|
|
3584
|
+
"SBX",
|
|
3343
3585
|
"SANDBOX"
|
|
3344
3586
|
],
|
|
3345
3587
|
"doc": "Fabric group type"
|
|
@@ -3394,7 +3636,8 @@
|
|
|
3394
3636
|
{
|
|
3395
3637
|
"Searchable": {
|
|
3396
3638
|
"fieldName": "editedDescription",
|
|
3397
|
-
"fieldType": "TEXT"
|
|
3639
|
+
"fieldType": "TEXT",
|
|
3640
|
+
"searchTier": 2
|
|
3398
3641
|
},
|
|
3399
3642
|
"type": [
|
|
3400
3643
|
"null",
|
|
@@ -3534,7 +3777,9 @@
|
|
|
3534
3777
|
"fieldNameAliases": [
|
|
3535
3778
|
"_entityName"
|
|
3536
3779
|
],
|
|
3537
|
-
"fieldType": "WORD_GRAM"
|
|
3780
|
+
"fieldType": "WORD_GRAM",
|
|
3781
|
+
"searchLabel": "entityName",
|
|
3782
|
+
"searchTier": 1
|
|
3538
3783
|
},
|
|
3539
3784
|
"type": "string",
|
|
3540
3785
|
"name": "name",
|
|
@@ -3543,7 +3788,8 @@
|
|
|
3543
3788
|
{
|
|
3544
3789
|
"Searchable": {
|
|
3545
3790
|
"fieldType": "TEXT",
|
|
3546
|
-
"hasValuesFieldName": "hasDescription"
|
|
3791
|
+
"hasValuesFieldName": "hasDescription",
|
|
3792
|
+
"searchTier": 2
|
|
3547
3793
|
},
|
|
3548
3794
|
"type": [
|
|
3549
3795
|
"null",
|
|
@@ -3601,7 +3847,8 @@
|
|
|
3601
3847
|
"Searchable": {
|
|
3602
3848
|
"/time": {
|
|
3603
3849
|
"fieldName": "createdAt",
|
|
3604
|
-
"fieldType": "DATETIME"
|
|
3850
|
+
"fieldType": "DATETIME",
|
|
3851
|
+
"searchLabel": "createdAt"
|
|
3605
3852
|
}
|
|
3606
3853
|
},
|
|
3607
3854
|
"type": [
|
|
@@ -3616,7 +3863,8 @@
|
|
|
3616
3863
|
"Searchable": {
|
|
3617
3864
|
"/time": {
|
|
3618
3865
|
"fieldName": "lastModifiedAt",
|
|
3619
|
-
"fieldType": "DATETIME"
|
|
3866
|
+
"fieldType": "DATETIME",
|
|
3867
|
+
"searchLabel": "lastModifiedAt"
|
|
3620
3868
|
}
|
|
3621
3869
|
},
|
|
3622
3870
|
"type": [
|
|
@@ -3955,6 +4203,14 @@
|
|
|
3955
4203
|
"doc": "The type of upstream entity"
|
|
3956
4204
|
},
|
|
3957
4205
|
{
|
|
4206
|
+
"Searchable": {
|
|
4207
|
+
"/*": {
|
|
4208
|
+
"fieldName": "fineGrainedUpstreams",
|
|
4209
|
+
"fieldType": "URN",
|
|
4210
|
+
"hasValuesFieldName": "hasFineGrainedUpstreams",
|
|
4211
|
+
"queryByDefault": false
|
|
4212
|
+
}
|
|
4213
|
+
},
|
|
3958
4214
|
"type": [
|
|
3959
4215
|
"null",
|
|
3960
4216
|
{
|
|
@@ -4082,7 +4338,8 @@
|
|
|
4082
4338
|
{
|
|
4083
4339
|
"Searchable": {
|
|
4084
4340
|
"fieldName": "editedDescription",
|
|
4085
|
-
"fieldType": "TEXT"
|
|
4341
|
+
"fieldType": "TEXT",
|
|
4342
|
+
"searchTier": 2
|
|
4086
4343
|
},
|
|
4087
4344
|
"type": [
|
|
4088
4345
|
"null",
|
|
@@ -4170,7 +4427,8 @@
|
|
|
4170
4427
|
"addToFilters": true,
|
|
4171
4428
|
"fieldType": "TEXT_PARTIAL",
|
|
4172
4429
|
"filterNameOverride": "Environment",
|
|
4173
|
-
"queryByDefault": false
|
|
4430
|
+
"queryByDefault": false,
|
|
4431
|
+
"searchLabel": "origin"
|
|
4174
4432
|
},
|
|
4175
4433
|
"type": "com.linkedin.pegasus2avro.common.FabricType",
|
|
4176
4434
|
"name": "origin",
|
|
@@ -4225,7 +4483,9 @@
|
|
|
4225
4483
|
"fieldNameAliases": [
|
|
4226
4484
|
"_entityName"
|
|
4227
4485
|
],
|
|
4228
|
-
"fieldType": "WORD_GRAM"
|
|
4486
|
+
"fieldType": "WORD_GRAM",
|
|
4487
|
+
"searchLabel": "entityName",
|
|
4488
|
+
"searchTier": 1
|
|
4229
4489
|
},
|
|
4230
4490
|
"type": [
|
|
4231
4491
|
"null",
|
|
@@ -4240,7 +4500,9 @@
|
|
|
4240
4500
|
"addToFilters": false,
|
|
4241
4501
|
"boostScore": 10.0,
|
|
4242
4502
|
"enableAutocomplete": true,
|
|
4243
|
-
"fieldType": "WORD_GRAM"
|
|
4503
|
+
"fieldType": "WORD_GRAM",
|
|
4504
|
+
"searchLabel": "qualifiedName",
|
|
4505
|
+
"searchTier": 1
|
|
4244
4506
|
},
|
|
4245
4507
|
"type": [
|
|
4246
4508
|
"null",
|
|
@@ -4253,7 +4515,8 @@
|
|
|
4253
4515
|
{
|
|
4254
4516
|
"Searchable": {
|
|
4255
4517
|
"fieldType": "TEXT",
|
|
4256
|
-
"hasValuesFieldName": "hasDescription"
|
|
4518
|
+
"hasValuesFieldName": "hasDescription",
|
|
4519
|
+
"searchTier": 2
|
|
4257
4520
|
},
|
|
4258
4521
|
"type": [
|
|
4259
4522
|
"null",
|
|
@@ -4280,7 +4543,8 @@
|
|
|
4280
4543
|
"Searchable": {
|
|
4281
4544
|
"/time": {
|
|
4282
4545
|
"fieldName": "createdAt",
|
|
4283
|
-
"fieldType": "DATETIME"
|
|
4546
|
+
"fieldType": "DATETIME",
|
|
4547
|
+
"searchLabel": "createdAt"
|
|
4284
4548
|
}
|
|
4285
4549
|
},
|
|
4286
4550
|
"type": [
|
|
@@ -4295,7 +4559,8 @@
|
|
|
4295
4559
|
"Searchable": {
|
|
4296
4560
|
"/time": {
|
|
4297
4561
|
"fieldName": "lastModifiedAt",
|
|
4298
|
-
"fieldType": "DATETIME"
|
|
4562
|
+
"fieldType": "DATETIME",
|
|
4563
|
+
"searchLabel": "lastModifiedAt"
|
|
4299
4564
|
}
|
|
4300
4565
|
},
|
|
4301
4566
|
"type": [
|
|
@@ -4361,7 +4626,8 @@
|
|
|
4361
4626
|
{
|
|
4362
4627
|
"Searchable": {
|
|
4363
4628
|
"fieldName": "editedDescription",
|
|
4364
|
-
"fieldType": "TEXT"
|
|
4629
|
+
"fieldType": "TEXT",
|
|
4630
|
+
"searchTier": 2
|
|
4365
4631
|
},
|
|
4366
4632
|
"type": [
|
|
4367
4633
|
"null",
|
|
@@ -4576,6 +4842,7 @@
|
|
|
4576
4842
|
"Searchable": {
|
|
4577
4843
|
"fieldName": "upstreams",
|
|
4578
4844
|
"fieldType": "URN",
|
|
4845
|
+
"hasValuesFieldName": "hasUpstreams",
|
|
4579
4846
|
"queryByDefault": false
|
|
4580
4847
|
},
|
|
4581
4848
|
"java": {
|
|
@@ -5492,7 +5759,8 @@
|
|
|
5492
5759
|
"Searchable": {
|
|
5493
5760
|
"boostScore": 0.1,
|
|
5494
5761
|
"fieldName": "editedFieldDescriptions",
|
|
5495
|
-
"fieldType": "TEXT"
|
|
5762
|
+
"fieldType": "TEXT",
|
|
5763
|
+
"searchTier": 2
|
|
5496
5764
|
},
|
|
5497
5765
|
"type": [
|
|
5498
5766
|
"null",
|
|
@@ -5844,7 +6112,9 @@
|
|
|
5844
6112
|
"fieldNameAliases": [
|
|
5845
6113
|
"_entityName"
|
|
5846
6114
|
],
|
|
5847
|
-
"fieldType": "WORD_GRAM"
|
|
6115
|
+
"fieldType": "WORD_GRAM",
|
|
6116
|
+
"searchLabel": "entityName",
|
|
6117
|
+
"searchTier": 1
|
|
5848
6118
|
},
|
|
5849
6119
|
"validate": {
|
|
5850
6120
|
"strlen": {
|
|
@@ -5973,10 +6243,13 @@
|
|
|
5973
6243
|
"Searchable": {
|
|
5974
6244
|
"boostScore": 10.0,
|
|
5975
6245
|
"enableAutocomplete": true,
|
|
6246
|
+
"fieldName": "id",
|
|
5976
6247
|
"fieldNameAliases": [
|
|
5977
6248
|
"_entityName"
|
|
5978
6249
|
],
|
|
5979
|
-
"fieldType": "WORD_GRAM"
|
|
6250
|
+
"fieldType": "WORD_GRAM",
|
|
6251
|
+
"searchLabel": "entityName",
|
|
6252
|
+
"searchTier": 1
|
|
5980
6253
|
},
|
|
5981
6254
|
"type": "string",
|
|
5982
6255
|
"name": "name",
|
|
@@ -6086,7 +6359,8 @@
|
|
|
6086
6359
|
"boostScore": 10.0,
|
|
6087
6360
|
"enableAutocomplete": true,
|
|
6088
6361
|
"fieldType": "WORD_GRAM",
|
|
6089
|
-
"queryByDefault": true
|
|
6362
|
+
"queryByDefault": true,
|
|
6363
|
+
"searchTier": 1
|
|
6090
6364
|
},
|
|
6091
6365
|
"type": [
|
|
6092
6366
|
"null",
|
|
@@ -6099,7 +6373,8 @@
|
|
|
6099
6373
|
{
|
|
6100
6374
|
"Searchable": {
|
|
6101
6375
|
"fieldType": "TEXT",
|
|
6102
|
-
"hasValuesFieldName": "hasDescription"
|
|
6376
|
+
"hasValuesFieldName": "hasDescription",
|
|
6377
|
+
"searchTier": 2
|
|
6103
6378
|
},
|
|
6104
6379
|
"type": [
|
|
6105
6380
|
"null",
|
|
@@ -7053,7 +7328,9 @@
|
|
|
7053
7328
|
"fieldNameAliases": [
|
|
7054
7329
|
"_entityName"
|
|
7055
7330
|
],
|
|
7056
|
-
"fieldType": "WORD_GRAM"
|
|
7331
|
+
"fieldType": "WORD_GRAM",
|
|
7332
|
+
"searchLabel": "entityName",
|
|
7333
|
+
"searchTier": 1
|
|
7057
7334
|
},
|
|
7058
7335
|
"type": "string",
|
|
7059
7336
|
"name": "name",
|
|
@@ -7239,7 +7516,9 @@
|
|
|
7239
7516
|
"fieldNameAliases": [
|
|
7240
7517
|
"_entityName"
|
|
7241
7518
|
],
|
|
7242
|
-
"fieldType": "WORD_GRAM"
|
|
7519
|
+
"fieldType": "WORD_GRAM",
|
|
7520
|
+
"searchLabel": "entityName",
|
|
7521
|
+
"searchTier": 1
|
|
7243
7522
|
},
|
|
7244
7523
|
"type": "string",
|
|
7245
7524
|
"name": "name",
|
|
@@ -7398,7 +7677,9 @@
|
|
|
7398
7677
|
"fieldNameAliases": [
|
|
7399
7678
|
"_entityName"
|
|
7400
7679
|
],
|
|
7401
|
-
"fieldType": "WORD_GRAM"
|
|
7680
|
+
"fieldType": "WORD_GRAM",
|
|
7681
|
+
"searchLabel": "entityName",
|
|
7682
|
+
"searchTier": 1
|
|
7402
7683
|
},
|
|
7403
7684
|
"type": "string",
|
|
7404
7685
|
"name": "name",
|
|
@@ -7563,7 +7844,9 @@
|
|
|
7563
7844
|
"fieldNameAliases": [
|
|
7564
7845
|
"_entityName"
|
|
7565
7846
|
],
|
|
7566
|
-
"fieldType": "WORD_GRAM"
|
|
7847
|
+
"fieldType": "WORD_GRAM",
|
|
7848
|
+
"searchLabel": "entityName",
|
|
7849
|
+
"searchTier": 1
|
|
7567
7850
|
},
|
|
7568
7851
|
"type": "string",
|
|
7569
7852
|
"name": "name",
|
|
@@ -7654,6 +7937,9 @@
|
|
|
7654
7937
|
"doc": "Version of the MLModelDeployment"
|
|
7655
7938
|
},
|
|
7656
7939
|
{
|
|
7940
|
+
"Searchable": {
|
|
7941
|
+
"fieldName": "deploymentStatus"
|
|
7942
|
+
},
|
|
7657
7943
|
"type": [
|
|
7658
7944
|
"null",
|
|
7659
7945
|
{
|
|
@@ -7745,10 +8031,13 @@
|
|
|
7745
8031
|
"Searchable": {
|
|
7746
8032
|
"boostScore": 10.0,
|
|
7747
8033
|
"enableAutocomplete": true,
|
|
8034
|
+
"fieldName": "id",
|
|
7748
8035
|
"fieldNameAliases": [
|
|
7749
8036
|
"_entityName"
|
|
7750
8037
|
],
|
|
7751
|
-
"fieldType": "WORD_GRAM"
|
|
8038
|
+
"fieldType": "WORD_GRAM",
|
|
8039
|
+
"searchLabel": "entityName",
|
|
8040
|
+
"searchTier": 1
|
|
7752
8041
|
},
|
|
7753
8042
|
"type": "string",
|
|
7754
8043
|
"name": "name",
|
|
@@ -7992,7 +8281,9 @@
|
|
|
7992
8281
|
"fieldNameAliases": [
|
|
7993
8282
|
"_entityName"
|
|
7994
8283
|
],
|
|
7995
|
-
"fieldType": "WORD_GRAM"
|
|
8284
|
+
"fieldType": "WORD_GRAM",
|
|
8285
|
+
"searchLabel": "entityName",
|
|
8286
|
+
"searchTier": 1
|
|
7996
8287
|
},
|
|
7997
8288
|
"type": "string",
|
|
7998
8289
|
"name": "name",
|
|
@@ -8114,7 +8405,9 @@
|
|
|
8114
8405
|
"fieldNameAliases": [
|
|
8115
8406
|
"_entityName"
|
|
8116
8407
|
],
|
|
8117
|
-
"fieldType": "WORD_GRAM"
|
|
8408
|
+
"fieldType": "WORD_GRAM",
|
|
8409
|
+
"searchLabel": "entityName",
|
|
8410
|
+
"searchTier": 1
|
|
8118
8411
|
},
|
|
8119
8412
|
"type": [
|
|
8120
8413
|
"null",
|
|
@@ -8444,7 +8737,9 @@
|
|
|
8444
8737
|
"fieldNameAliases": [
|
|
8445
8738
|
"_entityName"
|
|
8446
8739
|
],
|
|
8447
|
-
"fieldType": "WORD_GRAM"
|
|
8740
|
+
"fieldType": "WORD_GRAM",
|
|
8741
|
+
"searchLabel": "entityName",
|
|
8742
|
+
"searchTier": 1
|
|
8448
8743
|
},
|
|
8449
8744
|
"type": [
|
|
8450
8745
|
"null",
|
|
@@ -8629,13 +8924,15 @@
|
|
|
8629
8924
|
"type": "enum",
|
|
8630
8925
|
"symbolDocs": {
|
|
8631
8926
|
"EQUALS": "Whether the field matches the value",
|
|
8927
|
+
"NOT_EQUALS": "Whether the field does not match the value",
|
|
8632
8928
|
"STARTS_WITH": "Whether the field value starts with the value"
|
|
8633
8929
|
},
|
|
8634
8930
|
"name": "PolicyMatchCondition",
|
|
8635
8931
|
"namespace": "com.linkedin.pegasus2avro.policy",
|
|
8636
8932
|
"symbols": [
|
|
8637
8933
|
"EQUALS",
|
|
8638
|
-
"STARTS_WITH"
|
|
8934
|
+
"STARTS_WITH",
|
|
8935
|
+
"NOT_EQUALS"
|
|
8639
8936
|
],
|
|
8640
8937
|
"doc": "The matching condition in a filter criterion"
|
|
8641
8938
|
},
|
|
@@ -8657,6 +8954,15 @@
|
|
|
8657
8954
|
"name": "filter",
|
|
8658
8955
|
"default": null,
|
|
8659
8956
|
"doc": "Filter to apply privileges to"
|
|
8957
|
+
},
|
|
8958
|
+
{
|
|
8959
|
+
"type": [
|
|
8960
|
+
"null",
|
|
8961
|
+
"com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
|
|
8962
|
+
],
|
|
8963
|
+
"name": "privilegeConstraints",
|
|
8964
|
+
"default": null,
|
|
8965
|
+
"doc": "Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"
|
|
8660
8966
|
}
|
|
8661
8967
|
],
|
|
8662
8968
|
"doc": "Information used to filter DataHub resource."
|
|
@@ -9015,6 +9321,9 @@
|
|
|
9015
9321
|
"null",
|
|
9016
9322
|
{
|
|
9017
9323
|
"type": "record",
|
|
9324
|
+
"Aspect": {
|
|
9325
|
+
"name": "systemMetadata"
|
|
9326
|
+
},
|
|
9018
9327
|
"name": "SystemMetadata",
|
|
9019
9328
|
"namespace": "com.linkedin.pegasus2avro.mxe",
|
|
9020
9329
|
"fields": [
|
|
@@ -9092,6 +9401,24 @@
|
|
|
9092
9401
|
"name": "version",
|
|
9093
9402
|
"default": null,
|
|
9094
9403
|
"doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
|
|
9404
|
+
},
|
|
9405
|
+
{
|
|
9406
|
+
"type": [
|
|
9407
|
+
"null",
|
|
9408
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
9409
|
+
],
|
|
9410
|
+
"name": "aspectCreated",
|
|
9411
|
+
"default": null,
|
|
9412
|
+
"doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
|
|
9413
|
+
},
|
|
9414
|
+
{
|
|
9415
|
+
"type": [
|
|
9416
|
+
"null",
|
|
9417
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
9418
|
+
],
|
|
9419
|
+
"name": "aspectModified",
|
|
9420
|
+
"default": null,
|
|
9421
|
+
"doc": "When the aspect was last modified and the actor that performed the modification"
|
|
9095
9422
|
}
|
|
9096
9423
|
],
|
|
9097
9424
|
"doc": "Metadata associated with each metadata change that is processed by the system"
|