acryl-datahub-cloud 0.3.11rc0__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/models.py +5 -3
- acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
- 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 +37 -13
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +55 -24
- acryl_datahub_cloud/datahub_reporting/extract_graph.py +4 -3
- acryl_datahub_cloud/datahub_reporting/extract_sql.py +242 -51
- 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 +518 -77
- 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 +2296 -1900
- 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 +4 -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 +12 -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/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 +25091 -20557
- acryl_datahub_cloud/metadata/schema_classes.py +29269 -23863
- 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 +353 -215
- 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 +166 -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/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/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/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/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 +418 -97
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +54 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +163 -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/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 +61 -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/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.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +55 -49
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +235 -142
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
- acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
- {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
|
@@ -16,16 +16,22 @@
|
|
|
16
16
|
"type": {
|
|
17
17
|
"type": "enum",
|
|
18
18
|
"symbolDocs": {
|
|
19
|
+
"BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE": "Broadcast that an action workflow form request has been completed (approved or denied).",
|
|
19
20
|
"BROADCAST_ASSERTION_STATUS_CHANGE": "Assertion change notification template.",
|
|
21
|
+
"BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST": "Broadcast that a new action workflow form request has been created or needs review.",
|
|
20
22
|
"BROADCAST_NEW_INCIDENT_UPDATE": "Updates the broadcasted incident if possible.",
|
|
21
23
|
"CUSTOM": "Legacy template types to support backwards compatibility.",
|
|
22
|
-
"
|
|
24
|
+
"INVITATION": "User invitation notification template.",
|
|
25
|
+
"OWNERSHIP_CHANGE": "Ownership change notification template.",
|
|
26
|
+
"RELEASE_NOTIFICATION": "Release notification template for announcing new releases.",
|
|
27
|
+
"SUPPORT_LOGIN": "Support login notification template."
|
|
23
28
|
},
|
|
24
29
|
"name": "NotificationTemplateType",
|
|
25
30
|
"namespace": "com.linkedin.pegasus2avro.event.notification.template",
|
|
26
31
|
"symbols": [
|
|
27
32
|
"OWNERSHIP_CHANGE",
|
|
28
33
|
"BROADCAST_ASSERTION_STATUS_CHANGE",
|
|
34
|
+
"INVITATION",
|
|
29
35
|
"CUSTOM",
|
|
30
36
|
"BROADCAST_NEW_INCIDENT",
|
|
31
37
|
"BROADCAST_NEW_INCIDENT_UPDATE",
|
|
@@ -34,6 +40,11 @@
|
|
|
34
40
|
"BROADCAST_INGESTION_RUN_CHANGE",
|
|
35
41
|
"BROADCAST_NEW_PROPOSAL",
|
|
36
42
|
"BROADCAST_PROPOSAL_STATUS_CHANGE",
|
|
43
|
+
"BROADCAST_COMPLIANCE_FORM_PUBLISH",
|
|
44
|
+
"BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST",
|
|
45
|
+
"BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE",
|
|
46
|
+
"RELEASE_NOTIFICATION",
|
|
47
|
+
"SUPPORT_LOGIN",
|
|
37
48
|
"INVALID_TEMPLATE"
|
|
38
49
|
],
|
|
39
50
|
"doc": "Possible notification template types."
|
|
@@ -85,7 +96,8 @@
|
|
|
85
96
|
"fieldType": "URN",
|
|
86
97
|
"filterNameOverride": "Owned By",
|
|
87
98
|
"hasValuesFieldName": "hasOwners",
|
|
88
|
-
"queryByDefault": false
|
|
99
|
+
"queryByDefault": false,
|
|
100
|
+
"searchTier": 2
|
|
89
101
|
},
|
|
90
102
|
"java": {
|
|
91
103
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -224,6 +236,75 @@
|
|
|
224
236
|
"name": "source",
|
|
225
237
|
"default": null,
|
|
226
238
|
"doc": "Source information for the ownership"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"Searchable": {
|
|
242
|
+
"/actor": {
|
|
243
|
+
"fieldName": "ownerAttributionActors",
|
|
244
|
+
"fieldType": "URN",
|
|
245
|
+
"queryByDefault": false
|
|
246
|
+
},
|
|
247
|
+
"/source": {
|
|
248
|
+
"fieldName": "ownerAttributionSources",
|
|
249
|
+
"fieldType": "URN",
|
|
250
|
+
"queryByDefault": false
|
|
251
|
+
},
|
|
252
|
+
"/time": {
|
|
253
|
+
"fieldName": "ownerAttributionDates",
|
|
254
|
+
"fieldType": "DATETIME",
|
|
255
|
+
"queryByDefault": false
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"type": [
|
|
259
|
+
"null",
|
|
260
|
+
{
|
|
261
|
+
"type": "record",
|
|
262
|
+
"name": "MetadataAttribution",
|
|
263
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
264
|
+
"fields": [
|
|
265
|
+
{
|
|
266
|
+
"type": "long",
|
|
267
|
+
"name": "time",
|
|
268
|
+
"doc": "When this metadata was updated."
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"java": {
|
|
272
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
273
|
+
},
|
|
274
|
+
"type": "string",
|
|
275
|
+
"name": "actor",
|
|
276
|
+
"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.",
|
|
277
|
+
"Urn": "Urn"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"java": {
|
|
281
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
282
|
+
},
|
|
283
|
+
"type": [
|
|
284
|
+
"null",
|
|
285
|
+
"string"
|
|
286
|
+
],
|
|
287
|
+
"name": "source",
|
|
288
|
+
"default": null,
|
|
289
|
+
"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.",
|
|
290
|
+
"Urn": "Urn"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"type": {
|
|
294
|
+
"type": "map",
|
|
295
|
+
"values": "string"
|
|
296
|
+
},
|
|
297
|
+
"name": "sourceDetail",
|
|
298
|
+
"default": {},
|
|
299
|
+
"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."
|
|
300
|
+
}
|
|
301
|
+
],
|
|
302
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
303
|
+
}
|
|
304
|
+
],
|
|
305
|
+
"name": "attribution",
|
|
306
|
+
"default": null,
|
|
307
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
227
308
|
}
|
|
228
309
|
],
|
|
229
310
|
"doc": "Ownership information"
|
|
@@ -276,6 +357,8 @@
|
|
|
276
357
|
"EMAIL": "A specific email address to send a notification to.",
|
|
277
358
|
"SLACK_CHANNEL": "A slack channel to send a notification to.",
|
|
278
359
|
"SLACK_DM": "A slack member to send a notification to.",
|
|
360
|
+
"TEAMS_CHANNEL": "A Microsoft Teams channel to send a notification to.",
|
|
361
|
+
"TEAMS_DM": "A Microsoft Teams member to send a notification to.",
|
|
279
362
|
"USER": "Deprecated! A DataHub user (via urn.). Currently this is NOT USED and may be removed in future versions.\nRecipient type should correspond to the sink type, and the sink should understand how to handle the recipient type appropriately.\nInstead, typically notifications have specific recipients as Slack handles, slack channels, or email addresses."
|
|
280
363
|
},
|
|
281
364
|
"name": "NotificationRecipientType",
|
|
@@ -284,6 +367,8 @@
|
|
|
284
367
|
"EMAIL",
|
|
285
368
|
"SLACK_CHANNEL",
|
|
286
369
|
"SLACK_DM",
|
|
370
|
+
"TEAMS_CHANNEL",
|
|
371
|
+
"TEAMS_DM",
|
|
287
372
|
"CUSTOM",
|
|
288
373
|
"USER"
|
|
289
374
|
],
|
|
@@ -377,13 +462,15 @@
|
|
|
377
462
|
"type": "enum",
|
|
378
463
|
"symbolDocs": {
|
|
379
464
|
"EMAIL": "Email target type.",
|
|
380
|
-
"SLACK": "Slack target type."
|
|
465
|
+
"SLACK": "Slack target type.",
|
|
466
|
+
"TEAMS": "Microsoft Teams target type."
|
|
381
467
|
},
|
|
382
468
|
"name": "NotificationSinkType",
|
|
383
469
|
"namespace": "com.linkedin.pegasus2avro.event.notification",
|
|
384
470
|
"symbols": [
|
|
385
471
|
"SLACK",
|
|
386
|
-
"EMAIL"
|
|
472
|
+
"EMAIL",
|
|
473
|
+
"TEAMS"
|
|
387
474
|
],
|
|
388
475
|
"doc": "A type of sink / platform to send a notification to."
|
|
389
476
|
},
|
|
@@ -377,6 +377,23 @@
|
|
|
377
377
|
"type": "long",
|
|
378
378
|
"name": "lastUpdatedTimestamp",
|
|
379
379
|
"doc": "The time at which the operation occurred. Would be better named 'operationTime'"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"TimeseriesFieldCollection": {
|
|
383
|
+
"key": "query"
|
|
384
|
+
},
|
|
385
|
+
"type": [
|
|
386
|
+
"null",
|
|
387
|
+
{
|
|
388
|
+
"type": "array",
|
|
389
|
+
"items": "string"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"name": "queries",
|
|
393
|
+
"default": null,
|
|
394
|
+
"doc": "Which queries were used in this operation.",
|
|
395
|
+
"Urn": "Urn",
|
|
396
|
+
"urn_is_array": true
|
|
380
397
|
}
|
|
381
398
|
],
|
|
382
399
|
"doc": "Operational info for an entity."
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"fieldType": "URN",
|
|
29
29
|
"filterNameOverride": "Owned By",
|
|
30
30
|
"hasValuesFieldName": "hasOwners",
|
|
31
|
-
"queryByDefault": false
|
|
31
|
+
"queryByDefault": false,
|
|
32
|
+
"searchTier": 2
|
|
32
33
|
},
|
|
33
34
|
"java": {
|
|
34
35
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -167,6 +168,75 @@
|
|
|
167
168
|
"name": "source",
|
|
168
169
|
"default": null,
|
|
169
170
|
"doc": "Source information for the ownership"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"Searchable": {
|
|
174
|
+
"/actor": {
|
|
175
|
+
"fieldName": "ownerAttributionActors",
|
|
176
|
+
"fieldType": "URN",
|
|
177
|
+
"queryByDefault": false
|
|
178
|
+
},
|
|
179
|
+
"/source": {
|
|
180
|
+
"fieldName": "ownerAttributionSources",
|
|
181
|
+
"fieldType": "URN",
|
|
182
|
+
"queryByDefault": false
|
|
183
|
+
},
|
|
184
|
+
"/time": {
|
|
185
|
+
"fieldName": "ownerAttributionDates",
|
|
186
|
+
"fieldType": "DATETIME",
|
|
187
|
+
"queryByDefault": false
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"type": [
|
|
191
|
+
"null",
|
|
192
|
+
{
|
|
193
|
+
"type": "record",
|
|
194
|
+
"name": "MetadataAttribution",
|
|
195
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
196
|
+
"fields": [
|
|
197
|
+
{
|
|
198
|
+
"type": "long",
|
|
199
|
+
"name": "time",
|
|
200
|
+
"doc": "When this metadata was updated."
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"java": {
|
|
204
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
205
|
+
},
|
|
206
|
+
"type": "string",
|
|
207
|
+
"name": "actor",
|
|
208
|
+
"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.",
|
|
209
|
+
"Urn": "Urn"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"java": {
|
|
213
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
214
|
+
},
|
|
215
|
+
"type": [
|
|
216
|
+
"null",
|
|
217
|
+
"string"
|
|
218
|
+
],
|
|
219
|
+
"name": "source",
|
|
220
|
+
"default": null,
|
|
221
|
+
"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.",
|
|
222
|
+
"Urn": "Urn"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": {
|
|
226
|
+
"type": "map",
|
|
227
|
+
"values": "string"
|
|
228
|
+
},
|
|
229
|
+
"name": "sourceDetail",
|
|
230
|
+
"default": {},
|
|
231
|
+
"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."
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
235
|
+
}
|
|
236
|
+
],
|
|
237
|
+
"name": "attribution",
|
|
238
|
+
"default": null,
|
|
239
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
170
240
|
}
|
|
171
241
|
],
|
|
172
242
|
"doc": "Ownership information"
|
|
@@ -15,16 +15,9 @@
|
|
|
15
15
|
"namespace": "com.linkedin.pegasus2avro.query",
|
|
16
16
|
"fields": [
|
|
17
17
|
{
|
|
18
|
-
"Relationship": {
|
|
19
|
-
"entityTypes": [
|
|
20
|
-
"dataset",
|
|
21
|
-
"schemaField"
|
|
22
|
-
],
|
|
23
|
-
"name": "IsAssociatedWith"
|
|
24
|
-
},
|
|
25
18
|
"Searchable": {
|
|
26
19
|
"fieldName": "entities",
|
|
27
|
-
"fieldType": "
|
|
20
|
+
"fieldType": "KEYWORD"
|
|
28
21
|
},
|
|
29
22
|
"java": {
|
|
30
23
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
@@ -32,11 +25,7 @@
|
|
|
32
25
|
"type": "string",
|
|
33
26
|
"name": "entity",
|
|
34
27
|
"doc": "An entity which is the subject of a query.",
|
|
35
|
-
"Urn": "Urn"
|
|
36
|
-
"entityTypes": [
|
|
37
|
-
"dataset",
|
|
38
|
-
"schemaField"
|
|
39
|
-
]
|
|
28
|
+
"Urn": "Urn"
|
|
40
29
|
}
|
|
41
30
|
],
|
|
42
31
|
"doc": "A single subject of a particular query.\nIn the future, we may evolve this model to include richer details\nabout the Query Subject in relation to the query."
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Event": {
|
|
4
|
+
"name": "relationshipChangeEvent"
|
|
5
|
+
},
|
|
6
|
+
"name": "RelationshipChangeEvent",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.platform.event.v1",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": [
|
|
11
|
+
"null",
|
|
12
|
+
{
|
|
13
|
+
"type": "record",
|
|
14
|
+
"name": "KafkaAuditHeader",
|
|
15
|
+
"namespace": "com.linkedin.events",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"compliance": [
|
|
19
|
+
{
|
|
20
|
+
"policy": "EVENT_TIME"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"type": "long",
|
|
24
|
+
"name": "time",
|
|
25
|
+
"doc": "The time at which the event was emitted into kafka."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"compliance": "NONE",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"name": "server",
|
|
31
|
+
"doc": "The fully qualified name of the host from which the event is being emitted."
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"compliance": "NONE",
|
|
35
|
+
"type": [
|
|
36
|
+
"null",
|
|
37
|
+
"string"
|
|
38
|
+
],
|
|
39
|
+
"name": "instance",
|
|
40
|
+
"default": null,
|
|
41
|
+
"doc": "The instance on the server from which the event is being emitted. e.g. i001"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"compliance": "NONE",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"name": "appName",
|
|
47
|
+
"doc": "The name of the application from which the event is being emitted. see go/appname"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"compliance": "NONE",
|
|
51
|
+
"type": {
|
|
52
|
+
"type": "fixed",
|
|
53
|
+
"name": "UUID",
|
|
54
|
+
"namespace": "com.linkedin.events",
|
|
55
|
+
"size": 16
|
|
56
|
+
},
|
|
57
|
+
"name": "messageId",
|
|
58
|
+
"doc": "A unique identifier for the message"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"compliance": "NONE",
|
|
62
|
+
"type": [
|
|
63
|
+
"null",
|
|
64
|
+
"int"
|
|
65
|
+
],
|
|
66
|
+
"name": "auditVersion",
|
|
67
|
+
"default": null,
|
|
68
|
+
"doc": "The version that is being used for auditing. In version 0, the audit trail buckets events into 10 minute audit windows based on the EventHeader timestamp. In version 1, the audit trail buckets events as follows: if the schema has an outer KafkaAuditHeader, use the outer audit header timestamp for bucketing; else if the EventHeader has an inner KafkaAuditHeader use that inner audit header's timestamp for bucketing"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"compliance": "NONE",
|
|
72
|
+
"type": [
|
|
73
|
+
"null",
|
|
74
|
+
"string"
|
|
75
|
+
],
|
|
76
|
+
"name": "fabricUrn",
|
|
77
|
+
"default": null,
|
|
78
|
+
"doc": "The fabricUrn of the host from which the event is being emitted. Fabric Urn in the format of urn:li:fabric:{fabric_name}. See go/fabric."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"compliance": "NONE",
|
|
82
|
+
"type": [
|
|
83
|
+
"null",
|
|
84
|
+
"string"
|
|
85
|
+
],
|
|
86
|
+
"name": "clusterConnectionString",
|
|
87
|
+
"default": null,
|
|
88
|
+
"doc": "This is a String that the client uses to establish some kind of connection with the Kafka cluster. The exact format of it depends on specific versions of clients and brokers. This information could potentially identify the fabric and cluster with which the client is producing to or consuming from."
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"doc": "This header records information about the context of an event as it is emitted into kafka and is intended to be used by the kafka audit application. For more information see go/kafkaauditheader"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"name": "auditHeader",
|
|
95
|
+
"default": null,
|
|
96
|
+
"doc": "Kafka audit header containing metadata about the message itself.\nIncludes information like message ID, timestamp, and server details."
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"java": {
|
|
100
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
101
|
+
},
|
|
102
|
+
"type": "string",
|
|
103
|
+
"name": "sourceUrn",
|
|
104
|
+
"doc": "The URN (Uniform Resource Name) of the source entity in the relationship.\nIn a downstream relationship example, this would be the URN of the upstream dataset.",
|
|
105
|
+
"Urn": "Urn"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"java": {
|
|
109
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
110
|
+
},
|
|
111
|
+
"type": "string",
|
|
112
|
+
"name": "destinationUrn",
|
|
113
|
+
"doc": "The URN of the destination entity in the relationship.\nIn a downstream relationship example, this would be the URN of the downstream dataset.",
|
|
114
|
+
"Urn": "Urn"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": {
|
|
118
|
+
"type": "enum",
|
|
119
|
+
"name": "RelationshipChangeOperation",
|
|
120
|
+
"namespace": "com.linkedin.pegasus2avro.platform.event.v1",
|
|
121
|
+
"symbols": [
|
|
122
|
+
"ADD",
|
|
123
|
+
"REMOVE",
|
|
124
|
+
"RESTATE"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
"name": "operation",
|
|
128
|
+
"doc": "The operation being performed on this relationship.\nTypically includes operations like ADD, REMOVE, or RESTATE."
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "string",
|
|
132
|
+
"name": "relationshipType",
|
|
133
|
+
"doc": "The type/category of relationship being established or modified.\nExamples: \"DownstreamOf\", \"Contains\", \"OwnedBy\", \"DerivedFrom\", etc."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"type": [
|
|
137
|
+
"null",
|
|
138
|
+
"string"
|
|
139
|
+
],
|
|
140
|
+
"name": "lifecycleOwner",
|
|
141
|
+
"default": null,
|
|
142
|
+
"doc": "The system or service responsible for managing the lifecycle of this relationship.\nThis helps identify which component has authority over the relationship."
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"type": [
|
|
146
|
+
"null",
|
|
147
|
+
"string"
|
|
148
|
+
],
|
|
149
|
+
"name": "via",
|
|
150
|
+
"default": null,
|
|
151
|
+
"doc": "Information about how or through what means this relationship was established.\nCould indicate a specific pipeline, process, or tool that discovered/created the relationship."
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"type": [
|
|
155
|
+
"null",
|
|
156
|
+
{
|
|
157
|
+
"type": "map",
|
|
158
|
+
"values": "string"
|
|
159
|
+
}
|
|
160
|
+
],
|
|
161
|
+
"name": "properties",
|
|
162
|
+
"default": null,
|
|
163
|
+
"doc": "Additional custom properties associated with this relationship.\nAllows for flexible extension without changing the schema."
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"type": {
|
|
167
|
+
"type": "record",
|
|
168
|
+
"name": "AuditStamp",
|
|
169
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
170
|
+
"fields": [
|
|
171
|
+
{
|
|
172
|
+
"type": "long",
|
|
173
|
+
"name": "time",
|
|
174
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"java": {
|
|
178
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
179
|
+
},
|
|
180
|
+
"type": "string",
|
|
181
|
+
"name": "actor",
|
|
182
|
+
"doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
|
|
183
|
+
"Urn": "Urn"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"java": {
|
|
187
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
188
|
+
},
|
|
189
|
+
"type": [
|
|
190
|
+
"null",
|
|
191
|
+
"string"
|
|
192
|
+
],
|
|
193
|
+
"name": "impersonator",
|
|
194
|
+
"default": null,
|
|
195
|
+
"doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
|
|
196
|
+
"Urn": "Urn"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"type": [
|
|
200
|
+
"null",
|
|
201
|
+
"string"
|
|
202
|
+
],
|
|
203
|
+
"name": "message",
|
|
204
|
+
"default": null,
|
|
205
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
|
|
209
|
+
},
|
|
210
|
+
"name": "auditStamp",
|
|
211
|
+
"doc": "Stores information about who made this change and when.\nContains the actor (user or system) that performed the action and the timestamp."
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"doc": "Kafka event for proposing a relationship change between two entities.\nFor example, when dataset1 establishes a new downstream relationship with dataset2."
|
|
215
|
+
}
|