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.

Files changed (238) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
  3. acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
  4. acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
  5. acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  9. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  10. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  11. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +37 -13
  12. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +55 -24
  13. acryl_datahub_cloud/datahub_reporting/extract_graph.py +4 -3
  14. acryl_datahub_cloud/datahub_reporting/extract_sql.py +242 -51
  15. acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
  16. acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
  17. acryl_datahub_cloud/datahub_restore/source.py +3 -2
  18. acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
  19. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  20. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +518 -77
  21. acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
  22. acryl_datahub_cloud/graphql_utils.py +64 -0
  23. acryl_datahub_cloud/lineage_features/source.py +555 -49
  24. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2296 -1900
  25. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
  26. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
  27. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  28. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +4 -2
  29. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
  30. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
  31. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
  32. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
  33. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
  34. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  35. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
  36. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
  37. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  38. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +12 -0
  39. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
  40. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
  41. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  42. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
  43. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
  44. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
  45. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
  46. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
  47. acryl_datahub_cloud/metadata/schema.avsc +25091 -20557
  48. acryl_datahub_cloud/metadata/schema_classes.py +29269 -23863
  49. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
  50. acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
  51. acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
  52. acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
  53. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  54. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
  55. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  56. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +353 -215
  57. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
  58. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  59. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +166 -21
  60. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
  61. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
  62. acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
  63. acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
  64. acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
  65. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  66. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  67. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  68. acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
  69. acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
  70. acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
  71. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  72. acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
  73. acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
  74. acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
  75. acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
  76. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
  77. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
  78. acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
  79. acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
  80. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  81. acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
  82. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  83. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
  84. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
  85. acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
  86. acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
  87. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  88. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  89. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
  90. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  91. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
  92. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  93. acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
  94. acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
  95. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  96. acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
  97. acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
  98. acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
  99. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
  100. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
  101. acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
  102. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
  103. acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
  104. acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
  105. acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
  106. acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
  107. acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
  108. acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
  109. acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
  110. acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
  111. acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
  112. acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
  113. acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
  114. acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
  115. acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
  116. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
  117. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
  118. acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
  119. acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
  120. acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
  121. acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
  122. acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
  123. acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
  124. acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
  125. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  126. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  127. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  128. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  129. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  130. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
  131. acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
  132. acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
  133. acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
  134. acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
  135. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
  136. acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
  137. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
  138. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
  139. acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
  140. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
  141. acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
  142. acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
  143. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
  144. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
  145. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
  146. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
  147. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
  148. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
  149. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
  150. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
  151. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +418 -97
  152. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
  153. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
  154. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +54 -9
  155. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +163 -23
  156. acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
  157. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
  158. acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
  159. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  160. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
  161. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  162. acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
  163. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
  164. acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
  165. acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
  166. acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
  167. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
  168. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
  169. acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
  170. acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
  171. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
  172. acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
  173. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
  174. acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
  175. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
  176. acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
  177. acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
  178. acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
  179. acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
  180. acryl_datahub_cloud/notifications/__init__.py +0 -0
  181. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  182. acryl_datahub_cloud/sdk/__init__.py +69 -0
  183. acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
  184. acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
  185. acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
  186. acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
  187. acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
  188. acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
  189. acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
  190. acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
  191. acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
  192. acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
  193. acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
  194. acryl_datahub_cloud/sdk/assertion/types.py +20 -0
  195. acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
  196. acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
  197. acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
  198. acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
  199. acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
  200. acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
  201. acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
  202. acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
  203. acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
  204. acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
  205. acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
  206. acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
  207. acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
  208. acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
  209. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
  210. acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
  211. acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
  212. acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
  213. acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
  214. acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
  215. acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
  216. acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
  217. acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
  218. acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
  219. acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
  220. acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
  221. acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
  222. acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
  223. acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
  224. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  225. acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
  226. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  227. acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
  228. acryl_datahub_cloud/sdk/errors.py +34 -0
  229. acryl_datahub_cloud/sdk/resolver_client.py +42 -0
  230. acryl_datahub_cloud/sdk/subscription_client.py +737 -0
  231. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +55 -49
  232. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +235 -142
  233. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
  234. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
  235. acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
  236. acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
  237. acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
  238. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
@@ -8,6 +8,7 @@
8
8
  "datahubIngestionRunSummary",
9
9
  "datahubIngestionCheckpoint",
10
10
  "domains",
11
+ "applications",
11
12
  "deprecation",
12
13
  "versionInfo",
13
14
  "dataJobInfo",
@@ -13,7 +13,9 @@
13
13
  "fieldNameAliases": [
14
14
  "_entityName"
15
15
  ],
16
- "fieldType": "WORD_GRAM"
16
+ "fieldType": "WORD_GRAM",
17
+ "searchLabel": "entityName",
18
+ "searchTier": 1
17
19
  },
18
20
  "validate": {
19
21
  "strlen": {
@@ -44,7 +44,9 @@
44
44
  "fieldNameAliases": [
45
45
  "_entityName"
46
46
  ],
47
- "fieldType": "WORD_GRAM"
47
+ "fieldType": "WORD_GRAM",
48
+ "searchLabel": "entityName",
49
+ "searchTier": 1
48
50
  },
49
51
  "type": [
50
52
  "null",
@@ -57,7 +59,8 @@
57
59
  {
58
60
  "Searchable": {
59
61
  "fieldType": "TEXT",
60
- "hasValuesFieldName": "hasDescription"
62
+ "hasValuesFieldName": "hasDescription",
63
+ "searchTier": 2
61
64
  },
62
65
  "type": [
63
66
  "null",
@@ -52,6 +52,8 @@
52
52
  "QA": "Designates quality assurance fabrics",
53
53
  "RVW": "Designates review fabrics",
54
54
  "SANDBOX": "Designates sandbox fabrics",
55
+ "SBX": "Alternative spelling for sandbox",
56
+ "SIT": "System Integration Testing",
55
57
  "STG": "Designates staging fabrics",
56
58
  "TEST": "Designates testing fabrics",
57
59
  "TST": "Alternative Test spelling",
@@ -73,6 +75,8 @@
73
75
  "RVW",
74
76
  "PRD",
75
77
  "TST",
78
+ "SIT",
79
+ "SBX",
76
80
  "SANDBOX"
77
81
  ],
78
82
  "doc": "Fabric group type"
@@ -9,6 +9,7 @@
9
9
  "glossaryTerms",
10
10
  "globalTags",
11
11
  "domains",
12
+ "applications",
12
13
  "dataProductProperties",
13
14
  "institutionalMemory",
14
15
  "status",
@@ -16,6 +17,7 @@
16
17
  "forms",
17
18
  "testResults",
18
19
  "subTypes",
20
+ "assetSettings",
19
21
  "share",
20
22
  "origin"
21
23
  ]
@@ -44,7 +44,9 @@
44
44
  "fieldNameAliases": [
45
45
  "_entityName"
46
46
  ],
47
- "fieldType": "WORD_GRAM"
47
+ "fieldType": "WORD_GRAM",
48
+ "searchLabel": "entityName",
49
+ "searchTier": 1
48
50
  },
49
51
  "type": [
50
52
  "null",
@@ -57,7 +59,8 @@
57
59
  {
58
60
  "Searchable": {
59
61
  "fieldType": "TEXT",
60
- "hasValuesFieldName": "hasDescription"
62
+ "hasValuesFieldName": "hasDescription",
63
+ "searchTier": 2
61
64
  },
62
65
  "type": [
63
66
  "null",
@@ -65,7 +68,7 @@
65
68
  ],
66
69
  "name": "description",
67
70
  "default": null,
68
- "doc": "Documentation of the dataset"
71
+ "doc": "Documentation of the data product"
69
72
  },
70
73
  {
71
74
  "Relationship": {
@@ -7,6 +7,11 @@
7
7
  "namespace": "com.linkedin.pegasus2avro.datatype",
8
8
  "fields": [
9
9
  {
10
+ "Searchable": {
11
+ "fieldType": "KEYWORD",
12
+ "searchLabel": "qualifiedName",
13
+ "searchTier": 1
14
+ },
10
15
  "type": "string",
11
16
  "name": "qualifiedName",
12
17
  "doc": "The qualified name for the data type. Usually a unique namespace + name, e.g. datahub.string"
@@ -11,6 +11,7 @@
11
11
  "datasetUsageStatistics",
12
12
  "operation",
13
13
  "domains",
14
+ "applications",
14
15
  "schemaMetadata",
15
16
  "status",
16
17
  "container",
@@ -38,6 +39,7 @@
38
39
  "partitionsSummary",
39
40
  "versionProperties",
40
41
  "icebergCatalogInfo",
42
+ "logicalParent",
41
43
  "inferredNeighbors",
42
44
  "inferredMetadata",
43
45
  "schemaFieldsInferredMetadata",
@@ -52,7 +54,8 @@
52
54
  "share",
53
55
  "origin",
54
56
  "documentation",
55
- "entityInferenceMetadata"
57
+ "entityInferenceMetadata",
58
+ "assetSettings"
56
59
  ],
57
60
  "entityDoc": "Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets."
58
61
  },
@@ -88,7 +91,8 @@
88
91
  "addToFilters": true,
89
92
  "fieldType": "TEXT_PARTIAL",
90
93
  "filterNameOverride": "Environment",
91
- "queryByDefault": false
94
+ "queryByDefault": false,
95
+ "searchLabel": "origin"
92
96
  },
93
97
  "type": {
94
98
  "type": "enum",
@@ -103,6 +107,8 @@
103
107
  "QA": "Designates quality assurance fabrics",
104
108
  "RVW": "Designates review fabrics",
105
109
  "SANDBOX": "Designates sandbox fabrics",
110
+ "SBX": "Alternative spelling for sandbox",
111
+ "SIT": "System Integration Testing",
106
112
  "STG": "Designates staging fabrics",
107
113
  "TEST": "Designates testing fabrics",
108
114
  "TST": "Alternative Test spelling",
@@ -124,6 +130,8 @@
124
130
  "RVW",
125
131
  "PRD",
126
132
  "TST",
133
+ "SIT",
134
+ "SBX",
127
135
  "SANDBOX"
128
136
  ],
129
137
  "doc": "Fabric group type"
@@ -44,7 +44,9 @@
44
44
  "fieldNameAliases": [
45
45
  "_entityName"
46
46
  ],
47
- "fieldType": "WORD_GRAM"
47
+ "fieldType": "WORD_GRAM",
48
+ "searchLabel": "entityName",
49
+ "searchTier": 1
48
50
  },
49
51
  "type": [
50
52
  "null",
@@ -59,7 +61,9 @@
59
61
  "addToFilters": false,
60
62
  "boostScore": 10.0,
61
63
  "enableAutocomplete": true,
62
- "fieldType": "WORD_GRAM"
64
+ "fieldType": "WORD_GRAM",
65
+ "searchLabel": "qualifiedName",
66
+ "searchTier": 1
63
67
  },
64
68
  "type": [
65
69
  "null",
@@ -72,7 +76,8 @@
72
76
  {
73
77
  "Searchable": {
74
78
  "fieldType": "TEXT",
75
- "hasValuesFieldName": "hasDescription"
79
+ "hasValuesFieldName": "hasDescription",
80
+ "searchTier": 2
76
81
  },
77
82
  "type": [
78
83
  "null",
@@ -99,7 +104,8 @@
99
104
  "Searchable": {
100
105
  "/time": {
101
106
  "fieldName": "createdAt",
102
- "fieldType": "DATETIME"
107
+ "fieldType": "DATETIME",
108
+ "searchLabel": "createdAt"
103
109
  }
104
110
  },
105
111
  "type": [
@@ -139,7 +145,8 @@
139
145
  "Searchable": {
140
146
  "/time": {
141
147
  "fieldName": "lastModifiedAt",
142
- "fieldType": "DATETIME"
148
+ "fieldType": "DATETIME",
149
+ "searchLabel": "lastModifiedAt"
143
150
  }
144
151
  },
145
152
  "type": [
@@ -130,6 +130,10 @@
130
130
  "doc": "The optional messageId, if provided serves as a custom user-defined unique identifier for an aspect value."
131
131
  },
132
132
  {
133
+ "Searchable": {
134
+ "fieldType": "COUNT",
135
+ "hasValuesFieldName": "hasUniqueUserCount"
136
+ },
133
137
  "TimeseriesField": {},
134
138
  "type": [
135
139
  "null",
@@ -140,6 +144,10 @@
140
144
  "doc": "Unique user count"
141
145
  },
142
146
  {
147
+ "Searchable": {
148
+ "fieldType": "COUNT",
149
+ "hasValuesFieldName": "hasTotalSqlQueriesCount"
150
+ },
143
151
  "TimeseriesField": {},
144
152
  "type": [
145
153
  "null",
@@ -0,0 +1,407 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "documentInfo"
5
+ },
6
+ "name": "DocumentInfo",
7
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*": {
12
+ "fieldType": "TEXT",
13
+ "queryByDefault": true
14
+ }
15
+ },
16
+ "type": {
17
+ "type": "map",
18
+ "values": "string"
19
+ },
20
+ "name": "customProperties",
21
+ "default": {},
22
+ "doc": "Custom property bag."
23
+ },
24
+ {
25
+ "Searchable": {
26
+ "boostScore": 10.0,
27
+ "enableAutocomplete": true,
28
+ "fieldNameAliases": [
29
+ "_entityName"
30
+ ],
31
+ "fieldType": "WORD_GRAM",
32
+ "searchLabel": "entityName",
33
+ "searchTier": 1
34
+ },
35
+ "type": [
36
+ "null",
37
+ "string"
38
+ ],
39
+ "name": "title",
40
+ "default": null,
41
+ "doc": "Optional title for the document. "
42
+ },
43
+ {
44
+ "type": [
45
+ "null",
46
+ {
47
+ "type": "record",
48
+ "name": "DocumentSource",
49
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
50
+ "fields": [
51
+ {
52
+ "Searchable": {
53
+ "fieldType": "KEYWORD",
54
+ "queryByDefault": false
55
+ },
56
+ "type": {
57
+ "type": "enum",
58
+ "symbolDocs": {
59
+ "EXTERNAL": "External - The document was ingested from an external source. ",
60
+ "NATIVE": "Created via the DataHub UI or API"
61
+ },
62
+ "name": "DocumentSourceType",
63
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
64
+ "symbols": [
65
+ "NATIVE",
66
+ "EXTERNAL"
67
+ ]
68
+ },
69
+ "name": "sourceType",
70
+ "doc": "The type of the source (e.g., \"Confluence\", \"Notion\", \"Google Docs\", \"SharePoint\", \"Slack\")"
71
+ },
72
+ {
73
+ "Searchable": {
74
+ "fieldType": "KEYWORD",
75
+ "queryByDefault": false
76
+ },
77
+ "type": [
78
+ "null",
79
+ "string"
80
+ ],
81
+ "name": "externalUrl",
82
+ "default": null,
83
+ "doc": "URL to the external source where this document originated"
84
+ },
85
+ {
86
+ "Searchable": {
87
+ "fieldType": "KEYWORD",
88
+ "queryByDefault": false
89
+ },
90
+ "type": [
91
+ "null",
92
+ "string"
93
+ ],
94
+ "name": "externalId",
95
+ "default": null,
96
+ "doc": "Unique identifier in the external system. Searchable in case we need to find ingested docs via filtering."
97
+ }
98
+ ],
99
+ "doc": "Information about the source of a document, especially for externally sourced documents.\nThis record is embedded within DocumentInfo to track whether a document is first-party \n(created in DataHub) or third-party (ingested from external sources like Slack, Notion, etc.)"
100
+ }
101
+ ],
102
+ "name": "source",
103
+ "default": null,
104
+ "doc": "Information about the external source of this document. \nOnly populated for third-party documents ingested from external systems."
105
+ },
106
+ {
107
+ "type": {
108
+ "type": "record",
109
+ "name": "DocumentStatus",
110
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
111
+ "fields": [
112
+ {
113
+ "Searchable": {
114
+ "fieldType": "KEYWORD",
115
+ "queryByDefault": false
116
+ },
117
+ "type": {
118
+ "type": "enum",
119
+ "symbolDocs": {
120
+ "PUBLISHED": "Document is published and visible to others.",
121
+ "UNPUBLISHED": "Document is not published to be consumed by others."
122
+ },
123
+ "name": "DocumentState",
124
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
125
+ "symbols": [
126
+ "PUBLISHED",
127
+ "UNPUBLISHED"
128
+ ],
129
+ "doc": "The state of a document"
130
+ },
131
+ "name": "state",
132
+ "doc": "The current visibility state of the document"
133
+ }
134
+ ],
135
+ "doc": "Visibility status information for a document"
136
+ },
137
+ "name": "status",
138
+ "doc": "Status of the document (published, unpublished.)"
139
+ },
140
+ {
141
+ "type": {
142
+ "type": "record",
143
+ "name": "DocumentContents",
144
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
145
+ "fields": [
146
+ {
147
+ "Searchable": {
148
+ "fieldType": "TEXT"
149
+ },
150
+ "type": "string",
151
+ "name": "text",
152
+ "doc": "The text contents of the document.\nThis needs to be added to semantic search! "
153
+ }
154
+ ],
155
+ "doc": "The contents of a document"
156
+ },
157
+ "name": "contents",
158
+ "doc": "Content of the document"
159
+ },
160
+ {
161
+ "Searchable": {
162
+ "/actor": {
163
+ "fieldName": "creator",
164
+ "fieldType": "URN",
165
+ "queryByDefault": false
166
+ },
167
+ "/time": {
168
+ "fieldName": "createdAt",
169
+ "fieldType": "DATETIME",
170
+ "queryByDefault": false
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": "The time and actor who created the document"
219
+ },
220
+ {
221
+ "Searchable": {
222
+ "/actor": {
223
+ "fieldName": "lastModifiedBy",
224
+ "fieldType": "URN",
225
+ "queryByDefault": false
226
+ },
227
+ "/time": {
228
+ "addToFilters": false,
229
+ "fieldName": "lastModifiedAt",
230
+ "fieldType": "DATETIME",
231
+ "queryByDefault": false
232
+ }
233
+ },
234
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
235
+ "name": "lastModified",
236
+ "doc": "The time and actor who last modified the document (any field)"
237
+ },
238
+ {
239
+ "type": [
240
+ "null",
241
+ {
242
+ "type": "array",
243
+ "items": {
244
+ "type": "record",
245
+ "name": "RelatedAsset",
246
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
247
+ "fields": [
248
+ {
249
+ "Relationship": {
250
+ "entityTypes": [
251
+ "container",
252
+ "dataset",
253
+ "dataJob",
254
+ "dataFlow",
255
+ "dashboard",
256
+ "chart",
257
+ "application",
258
+ "mlModel",
259
+ "mlModelGroup",
260
+ "mlPrimaryKey",
261
+ "mlFeature",
262
+ "mlFeatureTable",
263
+ "dataProduct",
264
+ "domain",
265
+ "glossaryTerm",
266
+ "glossaryNode",
267
+ "tag",
268
+ "structuredProperty",
269
+ "mlModel",
270
+ "mlModelGroup",
271
+ "mlPrimaryKey",
272
+ "mlFeature",
273
+ "mlFeatureTable"
274
+ ],
275
+ "name": "RelatedAsset"
276
+ },
277
+ "Searchable": {
278
+ "fieldName": "relatedAssets",
279
+ "fieldType": "URN",
280
+ "queryByDefault": false
281
+ },
282
+ "java": {
283
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
284
+ },
285
+ "type": "string",
286
+ "name": "asset",
287
+ "doc": "The asset referenced by or related to the document. ",
288
+ "Urn": "Urn",
289
+ "entityTypes": [
290
+ "container",
291
+ "dataset",
292
+ "dataJob",
293
+ "dataFlow",
294
+ "dashboard",
295
+ "chart",
296
+ "application",
297
+ "mlModel",
298
+ "mlModelGroup",
299
+ "mlPrimaryKey",
300
+ "mlFeature",
301
+ "mlFeatureTable",
302
+ "dataProduct",
303
+ "domain",
304
+ "glossaryTerm",
305
+ "glossaryNode",
306
+ "tag",
307
+ "structuredProperty",
308
+ "mlModel",
309
+ "mlModelGroup",
310
+ "mlPrimaryKey",
311
+ "mlFeature",
312
+ "mlFeatureTable"
313
+ ]
314
+ }
315
+ ],
316
+ "doc": "A data asset referenced by a document."
317
+ }
318
+ }
319
+ ],
320
+ "name": "relatedAssets",
321
+ "default": null,
322
+ "doc": "Assets referenced by or related to this document. "
323
+ },
324
+ {
325
+ "type": [
326
+ "null",
327
+ {
328
+ "type": "array",
329
+ "items": {
330
+ "type": "record",
331
+ "name": "RelatedDocument",
332
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
333
+ "fields": [
334
+ {
335
+ "Relationship": {
336
+ "entityTypes": [
337
+ "document"
338
+ ],
339
+ "name": "RelatedDocument"
340
+ },
341
+ "Searchable": {
342
+ "fieldName": "relatedDocuments",
343
+ "fieldType": "URN",
344
+ "queryByDefault": false
345
+ },
346
+ "java": {
347
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
348
+ },
349
+ "type": "string",
350
+ "name": "document",
351
+ "doc": "The document referenced by or related to the document. ",
352
+ "Urn": "Urn",
353
+ "entityTypes": [
354
+ "document"
355
+ ]
356
+ }
357
+ ],
358
+ "doc": "An document referenced by or related to another document\nNote that this does NOT include child documents. "
359
+ }
360
+ }
361
+ ],
362
+ "name": "relatedDocuments",
363
+ "default": null,
364
+ "doc": "Documents referenced by or related to this document. "
365
+ },
366
+ {
367
+ "type": [
368
+ "null",
369
+ {
370
+ "type": "record",
371
+ "name": "ParentDocument",
372
+ "namespace": "com.linkedin.pegasus2avro.knowledge",
373
+ "fields": [
374
+ {
375
+ "Relationship": {
376
+ "entityTypes": [
377
+ "document"
378
+ ],
379
+ "name": "IsChildOf"
380
+ },
381
+ "Searchable": {
382
+ "fieldName": "parentDocument",
383
+ "fieldType": "URN",
384
+ "queryByDefault": false
385
+ },
386
+ "java": {
387
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
388
+ },
389
+ "type": "string",
390
+ "name": "document",
391
+ "doc": "The hierarchical parent document for this document. ",
392
+ "Urn": "Urn",
393
+ "entityTypes": [
394
+ "document"
395
+ ]
396
+ }
397
+ ],
398
+ "doc": "The parent document of the document. "
399
+ }
400
+ ],
401
+ "name": "parentDocument",
402
+ "default": null,
403
+ "doc": "Parent article for this asset. "
404
+ }
405
+ ],
406
+ "doc": "Information about a document"
407
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "documentKey",
5
+ "keyForEntity": "document",
6
+ "entityCategory": "core",
7
+ "entityAspects": [
8
+ "documentInfo",
9
+ "documentSettings",
10
+ "status",
11
+ "ownership",
12
+ "domains",
13
+ "structuredProperties",
14
+ "subTypes",
15
+ "dataPlatformInstance",
16
+ "browsePathsV2",
17
+ "globalTags",
18
+ "glossaryTerms",
19
+ "semanticContent",
20
+ "institutionalMemory",
21
+ "documentation"
22
+ ]
23
+ },
24
+ "name": "DocumentKey",
25
+ "namespace": "com.linkedin.pegasus2avro.metadata.key",
26
+ "fields": [
27
+ {
28
+ "Searchable": {},
29
+ "type": "string",
30
+ "name": "id",
31
+ "doc": "Unique identifier for the document."
32
+ }
33
+ ],
34
+ "doc": "Key for a Document"
35
+ }