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
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubAiConversationInfo"
|
|
5
|
+
},
|
|
6
|
+
"name": "DataHubAiConversationInfo",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": [
|
|
11
|
+
"null",
|
|
12
|
+
"string"
|
|
13
|
+
],
|
|
14
|
+
"name": "title",
|
|
15
|
+
"default": null,
|
|
16
|
+
"doc": "Optional title for the conversation. "
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "record",
|
|
23
|
+
"name": "DataHubAiConversationMessage",
|
|
24
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
25
|
+
"fields": [
|
|
26
|
+
{
|
|
27
|
+
"type": {
|
|
28
|
+
"type": "enum",
|
|
29
|
+
"name": "DataHubAiConversationMessageType",
|
|
30
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
31
|
+
"symbols": [
|
|
32
|
+
"TEXT",
|
|
33
|
+
"TOOL_CALL",
|
|
34
|
+
"TOOL_RESULT",
|
|
35
|
+
"THINKING"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"name": "type",
|
|
39
|
+
"doc": "The type of message"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "long",
|
|
43
|
+
"name": "time",
|
|
44
|
+
"doc": "Timestamp in milliseconds"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": {
|
|
48
|
+
"type": "record",
|
|
49
|
+
"name": "DataHubAiConversationActor",
|
|
50
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
51
|
+
"fields": [
|
|
52
|
+
{
|
|
53
|
+
"type": {
|
|
54
|
+
"type": "enum",
|
|
55
|
+
"symbolDocs": {
|
|
56
|
+
"AGENT": "An agent initiated message. ",
|
|
57
|
+
"USER": "A user initiated message. "
|
|
58
|
+
},
|
|
59
|
+
"name": "DataHubAiConversationActorType",
|
|
60
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
61
|
+
"symbols": [
|
|
62
|
+
"USER",
|
|
63
|
+
"AGENT"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"name": "type",
|
|
67
|
+
"doc": "The type of actor "
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"Relationship": {
|
|
71
|
+
"entityTypes": [
|
|
72
|
+
"corpuser",
|
|
73
|
+
"corpGroup"
|
|
74
|
+
],
|
|
75
|
+
"name": "AuthoredBy"
|
|
76
|
+
},
|
|
77
|
+
"java": {
|
|
78
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
79
|
+
},
|
|
80
|
+
"type": [
|
|
81
|
+
"null",
|
|
82
|
+
"string"
|
|
83
|
+
],
|
|
84
|
+
"name": "actor",
|
|
85
|
+
"default": null,
|
|
86
|
+
"doc": "The actor that has sent the message.\nRequired if type is not AGENT.",
|
|
87
|
+
"Urn": "Urn",
|
|
88
|
+
"entityTypes": [
|
|
89
|
+
"corpuser",
|
|
90
|
+
"corpGroup"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"name": "actor",
|
|
96
|
+
"doc": "Messages in the conversation"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"type": {
|
|
100
|
+
"type": "record",
|
|
101
|
+
"name": "DataHubAiConversationMessageContent",
|
|
102
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
103
|
+
"fields": [
|
|
104
|
+
{
|
|
105
|
+
"type": "string",
|
|
106
|
+
"name": "text",
|
|
107
|
+
"doc": "Raw message text"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"doc": "Conversation message content info "
|
|
111
|
+
},
|
|
112
|
+
"name": "content",
|
|
113
|
+
"doc": "The contents of the message."
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": [
|
|
117
|
+
"null",
|
|
118
|
+
"string"
|
|
119
|
+
],
|
|
120
|
+
"name": "agentName",
|
|
121
|
+
"default": null,
|
|
122
|
+
"doc": "The name of the agent that generated this message (if applicable)."
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"type": [
|
|
126
|
+
"null",
|
|
127
|
+
{
|
|
128
|
+
"type": "record",
|
|
129
|
+
"name": "DataHubAiConversationContext",
|
|
130
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
131
|
+
"fields": [
|
|
132
|
+
{
|
|
133
|
+
"type": "string",
|
|
134
|
+
"name": "text",
|
|
135
|
+
"doc": "Natural language context description for the AI agent.\nThis will be included in the system prompt to help the agent\nunderstand what the user is looking at and working on.\nExample use cases: troubleshooting execution runs, configuring ingestion sources."
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"type": [
|
|
139
|
+
"null",
|
|
140
|
+
{
|
|
141
|
+
"type": "array",
|
|
142
|
+
"items": "string"
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
"name": "entityUrns",
|
|
146
|
+
"default": null,
|
|
147
|
+
"doc": "Optional URNs of the entities this conversation is about.\nUseful for linking conversations to specific entities such as execution runs or datasets.",
|
|
148
|
+
"Urn": "Urn",
|
|
149
|
+
"urn_is_array": true
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"doc": "Context about where and how a conversation is being used.\nThis helps the AI agent understand what the user is looking at and working on."
|
|
153
|
+
}
|
|
154
|
+
],
|
|
155
|
+
"name": "context",
|
|
156
|
+
"default": null,
|
|
157
|
+
"doc": "Optional context about where and how this message is being sent.\nWhen provided, this context is combined with the conversation-level context\nto give the AI agent the most up-to-date information about what the user is working on.\nThis allows for dynamic context that changes as the user navigates through different screens or steps."
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"doc": "Conversation info "
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"name": "messages",
|
|
164
|
+
"doc": "Messages in the conversation"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"Searchable": {
|
|
168
|
+
"/actor": {
|
|
169
|
+
"fieldName": "creator",
|
|
170
|
+
"fieldType": "URN"
|
|
171
|
+
},
|
|
172
|
+
"/time": {
|
|
173
|
+
"fieldName": "createdAt",
|
|
174
|
+
"fieldType": "DATETIME"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"type": {
|
|
178
|
+
"type": "record",
|
|
179
|
+
"name": "AuditStamp",
|
|
180
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
181
|
+
"fields": [
|
|
182
|
+
{
|
|
183
|
+
"type": "long",
|
|
184
|
+
"name": "time",
|
|
185
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"java": {
|
|
189
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
190
|
+
},
|
|
191
|
+
"type": "string",
|
|
192
|
+
"name": "actor",
|
|
193
|
+
"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.",
|
|
194
|
+
"Urn": "Urn"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"java": {
|
|
198
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
199
|
+
},
|
|
200
|
+
"type": [
|
|
201
|
+
"null",
|
|
202
|
+
"string"
|
|
203
|
+
],
|
|
204
|
+
"name": "impersonator",
|
|
205
|
+
"default": null,
|
|
206
|
+
"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.",
|
|
207
|
+
"Urn": "Urn"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": [
|
|
211
|
+
"null",
|
|
212
|
+
"string"
|
|
213
|
+
],
|
|
214
|
+
"name": "message",
|
|
215
|
+
"default": null,
|
|
216
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"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."
|
|
220
|
+
},
|
|
221
|
+
"name": "created",
|
|
222
|
+
"doc": "The time and actor who initiated the conversation"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"Searchable": {
|
|
226
|
+
"fieldType": "KEYWORD"
|
|
227
|
+
},
|
|
228
|
+
"type": {
|
|
229
|
+
"type": "enum",
|
|
230
|
+
"symbolDocs": {
|
|
231
|
+
"DATAHUB_UI": "Chat session originated in DataHub UI",
|
|
232
|
+
"INGESTION_UI": "Chat session originated in Ingestion UI"
|
|
233
|
+
},
|
|
234
|
+
"name": "DataHubAiConversationOriginType",
|
|
235
|
+
"namespace": "com.linkedin.pegasus2avro.conversation",
|
|
236
|
+
"symbols": [
|
|
237
|
+
"DATAHUB_UI",
|
|
238
|
+
"INGESTION_UI"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"name": "originType",
|
|
242
|
+
"default": "DATAHUB_UI",
|
|
243
|
+
"doc": "Origin type for the chat session"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"type": [
|
|
247
|
+
"null",
|
|
248
|
+
"com.linkedin.pegasus2avro.conversation.DataHubAiConversationContext"
|
|
249
|
+
],
|
|
250
|
+
"name": "context",
|
|
251
|
+
"default": null,
|
|
252
|
+
"doc": "Optional context about where and how this conversation is being used.\nProvides natural language context to help the AI agent understand\nwhat the user is looking at and working on."
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"doc": "Conversation info "
|
|
256
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubAiConversationKey",
|
|
5
|
+
"keyForEntity": "dataHubAiConversation",
|
|
6
|
+
"entityCategory": "core",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"dataHubAiConversationInfo"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"name": "DataHubAiConversationKey",
|
|
12
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
13
|
+
"fields": [
|
|
14
|
+
{
|
|
15
|
+
"Searchable": {},
|
|
16
|
+
"type": "string",
|
|
17
|
+
"name": "id",
|
|
18
|
+
"doc": "Unique identifier for the conversation"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"doc": "Key for a DataHub conversation"
|
|
22
|
+
}
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubFileInfo"
|
|
5
|
+
},
|
|
6
|
+
"name": "DataHubFileInfo",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.file",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "record",
|
|
12
|
+
"name": "BucketStorageLocation",
|
|
13
|
+
"namespace": "com.linkedin.pegasus2avro.file",
|
|
14
|
+
"fields": [
|
|
15
|
+
{
|
|
16
|
+
"Searchable": {
|
|
17
|
+
"fieldType": "KEYWORD"
|
|
18
|
+
},
|
|
19
|
+
"type": "string",
|
|
20
|
+
"name": "storageBucket",
|
|
21
|
+
"doc": "The storage bucket this file is stored in"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"Searchable": {
|
|
25
|
+
"fieldType": "KEYWORD"
|
|
26
|
+
},
|
|
27
|
+
"type": "string",
|
|
28
|
+
"name": "storageKey",
|
|
29
|
+
"doc": "The key for where this file is stored inside of the given bucket"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"doc": "Information where a file is stored"
|
|
33
|
+
},
|
|
34
|
+
"name": "bucketStorageLocation",
|
|
35
|
+
"doc": "Info about where a file is stored"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"Searchable": {
|
|
39
|
+
"fieldType": "TEXT_PARTIAL"
|
|
40
|
+
},
|
|
41
|
+
"type": "string",
|
|
42
|
+
"name": "originalFileName",
|
|
43
|
+
"doc": "The original filename as uploaded by the user"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"Searchable": {
|
|
47
|
+
"fieldType": "KEYWORD"
|
|
48
|
+
},
|
|
49
|
+
"type": "string",
|
|
50
|
+
"name": "mimeType",
|
|
51
|
+
"doc": "MIME type of the file (e.g., image/png, application/pdf)"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "long",
|
|
55
|
+
"name": "sizeInBytes",
|
|
56
|
+
"doc": "Size of the file in bytes"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"Searchable": {
|
|
60
|
+
"fieldType": "KEYWORD"
|
|
61
|
+
},
|
|
62
|
+
"type": {
|
|
63
|
+
"type": "enum",
|
|
64
|
+
"symbolDocs": {
|
|
65
|
+
"ASSET_DOCUMENTATION": "File uploaded for entity documentation",
|
|
66
|
+
"ASSET_DOCUMENTATION_LINKS": "Upload for asset documentation links."
|
|
67
|
+
},
|
|
68
|
+
"name": "FileUploadScenario",
|
|
69
|
+
"namespace": "com.linkedin.pegasus2avro.file",
|
|
70
|
+
"symbols": [
|
|
71
|
+
"ASSET_DOCUMENTATION",
|
|
72
|
+
"ASSET_DOCUMENTATION_LINKS"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"name": "scenario",
|
|
76
|
+
"doc": "The scenario/context in which this file was uploaded"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"Relationship": {
|
|
80
|
+
"entityTypes": [
|
|
81
|
+
"dataset",
|
|
82
|
+
"chart",
|
|
83
|
+
"container",
|
|
84
|
+
"dashboard",
|
|
85
|
+
"dataFlow",
|
|
86
|
+
"dataJob",
|
|
87
|
+
"glossaryTerm",
|
|
88
|
+
"glossaryNode",
|
|
89
|
+
"mlModel",
|
|
90
|
+
"mlFeature",
|
|
91
|
+
"notebook",
|
|
92
|
+
"mlFeatureTable",
|
|
93
|
+
"mlPrimaryKey",
|
|
94
|
+
"mlModelGroup",
|
|
95
|
+
"domain",
|
|
96
|
+
"dataProduct",
|
|
97
|
+
"businessAttribute",
|
|
98
|
+
"document"
|
|
99
|
+
],
|
|
100
|
+
"name": "ReferencedBy"
|
|
101
|
+
},
|
|
102
|
+
"Searchable": {
|
|
103
|
+
"fieldType": "URN"
|
|
104
|
+
},
|
|
105
|
+
"java": {
|
|
106
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
107
|
+
},
|
|
108
|
+
"type": [
|
|
109
|
+
"null",
|
|
110
|
+
"string"
|
|
111
|
+
],
|
|
112
|
+
"name": "referencedByAsset",
|
|
113
|
+
"default": null,
|
|
114
|
+
"doc": "Optional URN of the entity this file is associated with (e.g., the dataset whose docs contain this file)",
|
|
115
|
+
"Urn": "Urn",
|
|
116
|
+
"entityTypes": [
|
|
117
|
+
"dataset",
|
|
118
|
+
"chart",
|
|
119
|
+
"container",
|
|
120
|
+
"dashboard",
|
|
121
|
+
"dataFlow",
|
|
122
|
+
"dataJob",
|
|
123
|
+
"glossaryTerm",
|
|
124
|
+
"glossaryNode",
|
|
125
|
+
"mlModel",
|
|
126
|
+
"mlFeature",
|
|
127
|
+
"notebook",
|
|
128
|
+
"mlFeatureTable",
|
|
129
|
+
"mlPrimaryKey",
|
|
130
|
+
"mlModelGroup",
|
|
131
|
+
"domain",
|
|
132
|
+
"dataProduct",
|
|
133
|
+
"businessAttribute",
|
|
134
|
+
"document"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"Relationship": {
|
|
139
|
+
"entityTypes": [
|
|
140
|
+
"schemaField"
|
|
141
|
+
],
|
|
142
|
+
"name": "ReferencedBy"
|
|
143
|
+
},
|
|
144
|
+
"Searchable": {
|
|
145
|
+
"fieldType": "URN"
|
|
146
|
+
},
|
|
147
|
+
"java": {
|
|
148
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
149
|
+
},
|
|
150
|
+
"type": [
|
|
151
|
+
"null",
|
|
152
|
+
"string"
|
|
153
|
+
],
|
|
154
|
+
"name": "schemaField",
|
|
155
|
+
"default": null,
|
|
156
|
+
"doc": "The dataset schema field urn this file is referenced by",
|
|
157
|
+
"Urn": "Urn",
|
|
158
|
+
"entityTypes": [
|
|
159
|
+
"schemaField"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"Searchable": {
|
|
164
|
+
"/actor": {
|
|
165
|
+
"fieldName": "createdBy",
|
|
166
|
+
"fieldType": "URN"
|
|
167
|
+
},
|
|
168
|
+
"/time": {
|
|
169
|
+
"fieldName": "createdAt",
|
|
170
|
+
"fieldType": "DATETIME"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"type": {
|
|
174
|
+
"type": "record",
|
|
175
|
+
"name": "AuditStamp",
|
|
176
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
177
|
+
"fields": [
|
|
178
|
+
{
|
|
179
|
+
"type": "long",
|
|
180
|
+
"name": "time",
|
|
181
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"java": {
|
|
185
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
186
|
+
},
|
|
187
|
+
"type": "string",
|
|
188
|
+
"name": "actor",
|
|
189
|
+
"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.",
|
|
190
|
+
"Urn": "Urn"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"java": {
|
|
194
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
195
|
+
},
|
|
196
|
+
"type": [
|
|
197
|
+
"null",
|
|
198
|
+
"string"
|
|
199
|
+
],
|
|
200
|
+
"name": "impersonator",
|
|
201
|
+
"default": null,
|
|
202
|
+
"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.",
|
|
203
|
+
"Urn": "Urn"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": [
|
|
207
|
+
"null",
|
|
208
|
+
"string"
|
|
209
|
+
],
|
|
210
|
+
"name": "message",
|
|
211
|
+
"default": null,
|
|
212
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"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."
|
|
216
|
+
},
|
|
217
|
+
"name": "created",
|
|
218
|
+
"doc": "Timestamp when this file was created and by whom"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"Searchable": {
|
|
222
|
+
"fieldType": "KEYWORD"
|
|
223
|
+
},
|
|
224
|
+
"type": [
|
|
225
|
+
"null",
|
|
226
|
+
"string"
|
|
227
|
+
],
|
|
228
|
+
"name": "contentHash",
|
|
229
|
+
"default": null,
|
|
230
|
+
"doc": "SHA-256 hash of file contents"
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"doc": "Information about a DataHub file - a file stored in S3 for use within DataHub platform features like documentation, home pages, and announcements."
|
|
234
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubFileKey",
|
|
5
|
+
"keyForEntity": "dataHubFile",
|
|
6
|
+
"entityCategory": "core",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"dataHubFileInfo",
|
|
9
|
+
"status"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"name": "DataHubFileKey",
|
|
13
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
14
|
+
"fields": [
|
|
15
|
+
{
|
|
16
|
+
"type": "string",
|
|
17
|
+
"name": "id",
|
|
18
|
+
"doc": "Unique id for the file."
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"doc": "Key for a DataHubFile"
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubOpenAPISchemaKey",
|
|
5
|
+
"keyForEntity": "dataHubOpenAPISchema",
|
|
6
|
+
"entityCategory": "internal",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"systemMetadata"
|
|
9
|
+
],
|
|
10
|
+
"entityDoc": "Contains aspects which are used in OpenAPI requests/responses which are not otherwise present in the data model."
|
|
11
|
+
},
|
|
12
|
+
"name": "DataHubOpenAPISchemaKey",
|
|
13
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
14
|
+
"fields": [
|
|
15
|
+
{
|
|
16
|
+
"type": "string",
|
|
17
|
+
"name": "id",
|
|
18
|
+
"doc": "A unique id for the DataHub OpenAPI schema."
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"doc": "Key for a Query"
|
|
22
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataHubPageModuleKey",
|
|
5
|
+
"keyForEntity": "dataHubPageModule",
|
|
6
|
+
"entityCategory": "core",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"dataHubPageModuleProperties"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"name": "DataHubPageModuleKey",
|
|
12
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
13
|
+
"fields": [
|
|
14
|
+
{
|
|
15
|
+
"type": "string",
|
|
16
|
+
"name": "id",
|
|
17
|
+
"doc": "Unique id for the module."
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"doc": "Key for a DataHubPageModule"
|
|
21
|
+
}
|