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
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "semanticContent"
|
|
5
|
+
},
|
|
6
|
+
"name": "SemanticContent",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "map",
|
|
12
|
+
"values": {
|
|
13
|
+
"type": "record",
|
|
14
|
+
"name": "EmbeddingModelData",
|
|
15
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"type": "string",
|
|
19
|
+
"name": "modelVersion",
|
|
20
|
+
"doc": "Full model identifier including provider.\nExamples: bedrock/cohere.embed-english-v3, openai/text-embedding-ada-002"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "long",
|
|
24
|
+
"name": "generatedAt",
|
|
25
|
+
"doc": "Timestamp when embeddings were generated (milliseconds since epoch)."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": [
|
|
29
|
+
"null",
|
|
30
|
+
"string"
|
|
31
|
+
],
|
|
32
|
+
"name": "chunkingStrategy",
|
|
33
|
+
"default": null,
|
|
34
|
+
"doc": "Description of the chunking strategy used.\nExamples: sentence_boundary_400t, fixed_512_chars, paragraph"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "int",
|
|
38
|
+
"name": "totalChunks",
|
|
39
|
+
"doc": "Total number of chunks."
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": [
|
|
43
|
+
"null",
|
|
44
|
+
"int"
|
|
45
|
+
],
|
|
46
|
+
"name": "totalTokens",
|
|
47
|
+
"default": null,
|
|
48
|
+
"doc": "Estimated total token count across all chunks."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"type": {
|
|
52
|
+
"type": "array",
|
|
53
|
+
"items": {
|
|
54
|
+
"type": "record",
|
|
55
|
+
"name": "EmbeddingChunk",
|
|
56
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
57
|
+
"fields": [
|
|
58
|
+
{
|
|
59
|
+
"type": "int",
|
|
60
|
+
"name": "position",
|
|
61
|
+
"doc": "Zero-based position/index of this chunk within the document."
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": "float"
|
|
67
|
+
},
|
|
68
|
+
"name": "vector",
|
|
69
|
+
"doc": "The embedding vector for this chunk.\nDimensionality depends on the model (e.g., 1024 for Cohere v3)."
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": [
|
|
73
|
+
"null",
|
|
74
|
+
"int"
|
|
75
|
+
],
|
|
76
|
+
"name": "characterOffset",
|
|
77
|
+
"default": null,
|
|
78
|
+
"doc": "Character offset from start of source text.\nUsed for highlighting and navigation. Optional for privacy."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": [
|
|
82
|
+
"null",
|
|
83
|
+
"int"
|
|
84
|
+
],
|
|
85
|
+
"name": "characterLength",
|
|
86
|
+
"default": null,
|
|
87
|
+
"doc": "Character length of the chunk in source text.\nOptional for privacy-sensitive use cases."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": [
|
|
91
|
+
"null",
|
|
92
|
+
"int"
|
|
93
|
+
],
|
|
94
|
+
"name": "tokenCount",
|
|
95
|
+
"default": null,
|
|
96
|
+
"doc": "Estimated token count for this chunk."
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"type": [
|
|
100
|
+
"null",
|
|
101
|
+
"string"
|
|
102
|
+
],
|
|
103
|
+
"name": "text",
|
|
104
|
+
"default": null,
|
|
105
|
+
"doc": "Original text of this chunk.\nOPTIONAL: May be omitted for privacy-sensitive data sources\nwhere only embeddings should be stored, not source text."
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"doc": "A single chunk of text with its embedding vector.\n\nChunks enable semantic search over long documents by breaking them\ninto smaller, semantically coherent pieces that fit within model\ncontext windows."
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"name": "chunks",
|
|
112
|
+
"doc": "Individual chunks with their embedding vectors."
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"doc": "Embedding data for a specific model.\nContains metadata about the embedding generation and the chunked vectors."
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"name": "embeddings",
|
|
119
|
+
"doc": "Map of embedding model name to embedding data.\nKey is the model identifier (e.g., cohere_embed_v3, openai_ada_002).\nAllows storing embeddings from multiple models simultaneously."
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"doc": "Semantic content for enabling vector similarity search.\n\nThis aspect stores chunked text and embedding vectors for any entity that supports semantic search. Generation of the data for this aspect should be built in tight collaboration with the embedding generator during semantic search query processing. Chunk determination and generation can happen somewhat independently\nThe data in this aspect is directly passed along to the semantic search index.\n\nDesign notes:\n- Supports multiple embedding models (e.g., different providers or versions)\n- Supports chunked content for long documents\n- Text field is optional to support privacy-sensitive use cases where\n only embeddings (not source text) are shared with DataHub"
|
|
123
|
+
}
|
|
@@ -94,6 +94,75 @@
|
|
|
94
94
|
"name": "lastModified",
|
|
95
95
|
"default": null,
|
|
96
96
|
"doc": "Audit stamp containing who last modified this relationship edge and when"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"Searchable": {
|
|
100
|
+
"/actor": {
|
|
101
|
+
"fieldName": "structuredPropertyAttributionActors",
|
|
102
|
+
"fieldType": "URN",
|
|
103
|
+
"queryByDefault": false
|
|
104
|
+
},
|
|
105
|
+
"/source": {
|
|
106
|
+
"fieldName": "structuredPropertyAttributionSources",
|
|
107
|
+
"fieldType": "URN",
|
|
108
|
+
"queryByDefault": false
|
|
109
|
+
},
|
|
110
|
+
"/time": {
|
|
111
|
+
"fieldName": "structuredPropertyAttributionDates",
|
|
112
|
+
"fieldType": "DATETIME",
|
|
113
|
+
"queryByDefault": false
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"type": [
|
|
117
|
+
"null",
|
|
118
|
+
{
|
|
119
|
+
"type": "record",
|
|
120
|
+
"name": "MetadataAttribution",
|
|
121
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
122
|
+
"fields": [
|
|
123
|
+
{
|
|
124
|
+
"type": "long",
|
|
125
|
+
"name": "time",
|
|
126
|
+
"doc": "When this metadata was updated."
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"java": {
|
|
130
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
131
|
+
},
|
|
132
|
+
"type": "string",
|
|
133
|
+
"name": "actor",
|
|
134
|
+
"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.",
|
|
135
|
+
"Urn": "Urn"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"java": {
|
|
139
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
140
|
+
},
|
|
141
|
+
"type": [
|
|
142
|
+
"null",
|
|
143
|
+
"string"
|
|
144
|
+
],
|
|
145
|
+
"name": "source",
|
|
146
|
+
"default": null,
|
|
147
|
+
"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.",
|
|
148
|
+
"Urn": "Urn"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"type": {
|
|
152
|
+
"type": "map",
|
|
153
|
+
"values": "string"
|
|
154
|
+
},
|
|
155
|
+
"name": "sourceDetail",
|
|
156
|
+
"default": {},
|
|
157
|
+
"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."
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
161
|
+
}
|
|
162
|
+
],
|
|
163
|
+
"name": "attribution",
|
|
164
|
+
"default": null,
|
|
165
|
+
"doc": "Information about who, why, and how this metadata was applied"
|
|
97
166
|
}
|
|
98
167
|
]
|
|
99
168
|
}
|
|
@@ -7,13 +7,22 @@
|
|
|
7
7
|
"namespace": "com.linkedin.pegasus2avro.structured",
|
|
8
8
|
"fields": [
|
|
9
9
|
{
|
|
10
|
-
"Searchable": {
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"fieldType": "KEYWORD",
|
|
12
|
+
"searchLabel": "qualifiedName",
|
|
13
|
+
"searchTier": 1
|
|
14
|
+
},
|
|
11
15
|
"type": "string",
|
|
12
16
|
"name": "qualifiedName",
|
|
13
17
|
"doc": "The fully qualified name of the property. e.g. io.acryl.datahub.myProperty"
|
|
14
18
|
},
|
|
15
19
|
{
|
|
16
|
-
"Searchable": {
|
|
20
|
+
"Searchable": {
|
|
21
|
+
"enableAutocomplete": true,
|
|
22
|
+
"fieldType": "WORD_GRAM",
|
|
23
|
+
"searchLabel": "entityName",
|
|
24
|
+
"searchTier": 1
|
|
25
|
+
},
|
|
17
26
|
"type": [
|
|
18
27
|
"null",
|
|
19
28
|
"string"
|
|
@@ -306,7 +315,8 @@
|
|
|
306
315
|
"Searchable": {
|
|
307
316
|
"/time": {
|
|
308
317
|
"fieldName": "createdTime",
|
|
309
|
-
"fieldType": "DATETIME"
|
|
318
|
+
"fieldType": "DATETIME",
|
|
319
|
+
"searchLabel": "createdAt"
|
|
310
320
|
}
|
|
311
321
|
},
|
|
312
322
|
"type": [
|
|
@@ -364,7 +374,8 @@
|
|
|
364
374
|
"Searchable": {
|
|
365
375
|
"/time": {
|
|
366
376
|
"fieldName": "lastModified",
|
|
367
|
-
"fieldType": "DATETIME"
|
|
377
|
+
"fieldType": "DATETIME",
|
|
378
|
+
"searchLabel": "lastModifiedAt"
|
|
368
379
|
}
|
|
369
380
|
},
|
|
370
381
|
"type": [
|
|
@@ -33,6 +33,15 @@
|
|
|
33
33
|
"default": false,
|
|
34
34
|
"doc": "Whether or not this asset should be displayed in the asset sidebar"
|
|
35
35
|
},
|
|
36
|
+
{
|
|
37
|
+
"Searchable": {
|
|
38
|
+
"fieldType": "BOOLEAN"
|
|
39
|
+
},
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"name": "hideInAssetSummaryWhenEmpty",
|
|
42
|
+
"default": false,
|
|
43
|
+
"doc": "Whether or not this asset should be hidden in the asset sidebar (showInAssetSummary should be enabled)\nwhen its value is empty"
|
|
44
|
+
},
|
|
36
45
|
{
|
|
37
46
|
"Searchable": {
|
|
38
47
|
"fieldType": "BOOLEAN"
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "string",
|
|
17
17
|
"name": "actorUrn",
|
|
18
|
-
"doc": "Actor Urn",
|
|
18
|
+
"doc": "Actor Urn who will be notified ",
|
|
19
19
|
"Urn": "Urn"
|
|
20
20
|
},
|
|
21
21
|
{
|
|
@@ -54,6 +54,12 @@
|
|
|
54
54
|
"doc": "The subscription types."
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
|
+
"Searchable": {
|
|
58
|
+
"/time": {
|
|
59
|
+
"fieldName": "createdOn",
|
|
60
|
+
"fieldType": "DATETIME"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
57
63
|
"type": {
|
|
58
64
|
"type": "record",
|
|
59
65
|
"name": "AuditStamp",
|
|
@@ -119,7 +125,7 @@
|
|
|
119
125
|
],
|
|
120
126
|
"name": "entityUrn",
|
|
121
127
|
"default": null,
|
|
122
|
-
"doc": "Optional entity Urn",
|
|
128
|
+
"doc": "Optional entity Urn - top level for now (Dataset, container etc. )",
|
|
123
129
|
"Urn": "Urn"
|
|
124
130
|
},
|
|
125
131
|
{
|
|
@@ -196,7 +202,7 @@
|
|
|
196
202
|
"TAG_REMOVED",
|
|
197
203
|
"TAG_PROPOSED"
|
|
198
204
|
],
|
|
199
|
-
"doc": "Enum to define change types that can trigger a subscription."
|
|
205
|
+
"doc": "Enum to define change types that can trigger a notification for a subscription."
|
|
200
206
|
},
|
|
201
207
|
"name": "entityChangeType",
|
|
202
208
|
"doc": "Change type that triggers a notification for the subscription."
|
|
@@ -263,13 +269,15 @@
|
|
|
263
269
|
"type": "enum",
|
|
264
270
|
"symbolDocs": {
|
|
265
271
|
"EMAIL": "Email target type.",
|
|
266
|
-
"SLACK": "Slack target type."
|
|
272
|
+
"SLACK": "Slack target type.",
|
|
273
|
+
"TEAMS": "Microsoft Teams target type."
|
|
267
274
|
},
|
|
268
275
|
"name": "NotificationSinkType",
|
|
269
276
|
"namespace": "com.linkedin.pegasus2avro.event.notification",
|
|
270
277
|
"symbols": [
|
|
271
278
|
"SLACK",
|
|
272
|
-
"EMAIL"
|
|
279
|
+
"EMAIL",
|
|
280
|
+
"TEAMS"
|
|
273
281
|
],
|
|
274
282
|
"doc": "A type of sink / platform to send a notification to."
|
|
275
283
|
}
|
|
@@ -335,6 +343,129 @@
|
|
|
335
343
|
"default": null,
|
|
336
344
|
"doc": "Email Notification Settings"
|
|
337
345
|
},
|
|
346
|
+
{
|
|
347
|
+
"type": [
|
|
348
|
+
"null",
|
|
349
|
+
{
|
|
350
|
+
"type": "record",
|
|
351
|
+
"name": "TeamsNotificationSettings",
|
|
352
|
+
"namespace": "com.linkedin.pegasus2avro.event.notification.settings",
|
|
353
|
+
"fields": [
|
|
354
|
+
{
|
|
355
|
+
"type": [
|
|
356
|
+
"null",
|
|
357
|
+
{
|
|
358
|
+
"type": "record",
|
|
359
|
+
"name": "TeamsUser",
|
|
360
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
361
|
+
"fields": [
|
|
362
|
+
{
|
|
363
|
+
"type": [
|
|
364
|
+
"null",
|
|
365
|
+
"string"
|
|
366
|
+
],
|
|
367
|
+
"name": "teamsUserId",
|
|
368
|
+
"default": null,
|
|
369
|
+
"doc": "The Teams user ID (internal Teams identifier).\nThis is the primary identifier used for Teams messaging."
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"Searchable": {
|
|
373
|
+
"fieldType": "KEYWORD",
|
|
374
|
+
"queryByDefault": false
|
|
375
|
+
},
|
|
376
|
+
"type": [
|
|
377
|
+
"null",
|
|
378
|
+
"string"
|
|
379
|
+
],
|
|
380
|
+
"name": "azureUserId",
|
|
381
|
+
"default": null,
|
|
382
|
+
"doc": "The Azure AD user ID (Azure Active Directory object ID).\nThis is the primary identifier for Azure AD operations and Microsoft Graph API calls."
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"type": [
|
|
386
|
+
"null",
|
|
387
|
+
"string"
|
|
388
|
+
],
|
|
389
|
+
"name": "email",
|
|
390
|
+
"default": null,
|
|
391
|
+
"doc": "The user's email address (fallback identifier).\nUsed when other IDs are not available or for email-based user resolution."
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"type": [
|
|
395
|
+
"null",
|
|
396
|
+
"string"
|
|
397
|
+
],
|
|
398
|
+
"name": "displayName",
|
|
399
|
+
"default": null,
|
|
400
|
+
"doc": "The user's display name (cached value, may be stale).\nRetrieved from Microsoft Graph API and cached for performance."
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"type": [
|
|
404
|
+
"null",
|
|
405
|
+
"long"
|
|
406
|
+
],
|
|
407
|
+
"name": "lastUpdated",
|
|
408
|
+
"default": null,
|
|
409
|
+
"doc": "The timestamp when the cached display name was last updated.\nUsed for TTL-based cache invalidation (milliseconds since epoch)."
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"doc": "Teams user information with cached display name and multiple ID support.\nFollows the same caching pattern as TeamsChannel for consistency."
|
|
413
|
+
}
|
|
414
|
+
],
|
|
415
|
+
"name": "user",
|
|
416
|
+
"default": null,
|
|
417
|
+
"doc": "Optional structured user information with cached metadata.\nSupports both Azure AD user ID and Teams user ID with cached display name."
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"type": [
|
|
421
|
+
"null",
|
|
422
|
+
{
|
|
423
|
+
"type": "array",
|
|
424
|
+
"items": {
|
|
425
|
+
"type": "record",
|
|
426
|
+
"name": "TeamsChannel",
|
|
427
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
428
|
+
"fields": [
|
|
429
|
+
{
|
|
430
|
+
"type": "string",
|
|
431
|
+
"name": "id",
|
|
432
|
+
"doc": "The Teams channel ID (internal Teams identifier)."
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"type": [
|
|
436
|
+
"null",
|
|
437
|
+
"string"
|
|
438
|
+
],
|
|
439
|
+
"name": "name",
|
|
440
|
+
"default": null,
|
|
441
|
+
"doc": "The Teams channel display name (cached value, may be stale)."
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"type": [
|
|
445
|
+
"null",
|
|
446
|
+
"long"
|
|
447
|
+
],
|
|
448
|
+
"name": "lastUpdated",
|
|
449
|
+
"default": null,
|
|
450
|
+
"doc": "The timestamp when the cached name was last updated.\nUsed for TTL-based cache invalidation."
|
|
451
|
+
}
|
|
452
|
+
],
|
|
453
|
+
"doc": "Teams channel information with cached display name."
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
],
|
|
457
|
+
"name": "channels",
|
|
458
|
+
"default": null,
|
|
459
|
+
"doc": "Optional list of structured channels with cached metadata"
|
|
460
|
+
}
|
|
461
|
+
],
|
|
462
|
+
"doc": "Microsoft Teams Notification settings for an actor."
|
|
463
|
+
}
|
|
464
|
+
],
|
|
465
|
+
"name": "teamsSettings",
|
|
466
|
+
"default": null,
|
|
467
|
+
"doc": "Microsoft Teams Notification Settings"
|
|
468
|
+
},
|
|
338
469
|
{
|
|
339
470
|
"type": [
|
|
340
471
|
"null",
|
|
@@ -80,6 +80,67 @@
|
|
|
80
80
|
"name": "version",
|
|
81
81
|
"default": null,
|
|
82
82
|
"doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": [
|
|
86
|
+
"null",
|
|
87
|
+
{
|
|
88
|
+
"type": "record",
|
|
89
|
+
"name": "AuditStamp",
|
|
90
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
91
|
+
"fields": [
|
|
92
|
+
{
|
|
93
|
+
"type": "long",
|
|
94
|
+
"name": "time",
|
|
95
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"java": {
|
|
99
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
100
|
+
},
|
|
101
|
+
"type": "string",
|
|
102
|
+
"name": "actor",
|
|
103
|
+
"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.",
|
|
104
|
+
"Urn": "Urn"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"java": {
|
|
108
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
109
|
+
},
|
|
110
|
+
"type": [
|
|
111
|
+
"null",
|
|
112
|
+
"string"
|
|
113
|
+
],
|
|
114
|
+
"name": "impersonator",
|
|
115
|
+
"default": null,
|
|
116
|
+
"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.",
|
|
117
|
+
"Urn": "Urn"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": [
|
|
121
|
+
"null",
|
|
122
|
+
"string"
|
|
123
|
+
],
|
|
124
|
+
"name": "message",
|
|
125
|
+
"default": null,
|
|
126
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
127
|
+
}
|
|
128
|
+
],
|
|
129
|
+
"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."
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"name": "aspectCreated",
|
|
133
|
+
"default": null,
|
|
134
|
+
"doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": [
|
|
138
|
+
"null",
|
|
139
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
140
|
+
],
|
|
141
|
+
"name": "aspectModified",
|
|
142
|
+
"default": null,
|
|
143
|
+
"doc": "When the aspect was last modified and the actor that performed the modification"
|
|
83
144
|
}
|
|
84
145
|
],
|
|
85
146
|
"doc": "Metadata associated with each metadata change that is processed by the system"
|
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"Searchable": {
|
|
95
95
|
"fieldName": "upstreams",
|
|
96
96
|
"fieldType": "URN",
|
|
97
|
+
"hasValuesFieldName": "hasUpstreams",
|
|
97
98
|
"queryByDefault": false
|
|
98
99
|
},
|
|
99
100
|
"java": {
|
|
@@ -199,6 +200,14 @@
|
|
|
199
200
|
"doc": "The type of upstream entity"
|
|
200
201
|
},
|
|
201
202
|
{
|
|
203
|
+
"Searchable": {
|
|
204
|
+
"/*": {
|
|
205
|
+
"fieldName": "fineGrainedUpstreams",
|
|
206
|
+
"fieldType": "URN",
|
|
207
|
+
"hasValuesFieldName": "hasFineGrainedUpstreams",
|
|
208
|
+
"queryByDefault": false
|
|
209
|
+
}
|
|
210
|
+
},
|
|
202
211
|
"type": [
|
|
203
212
|
"null",
|
|
204
213
|
{
|
|
@@ -160,6 +160,16 @@
|
|
|
160
160
|
"doc": "Overall rank of the dataset based on the the last 30 days insert/update operation count on a platform\nIt returns one plus the number of rows proceeding or equals to the current row in the ordering. "
|
|
161
161
|
},
|
|
162
162
|
{
|
|
163
|
+
"Searchable": {
|
|
164
|
+
"/*": {
|
|
165
|
+
"addToFilters": true,
|
|
166
|
+
"fieldName": "topUsersLast30Days",
|
|
167
|
+
"fieldType": "URN",
|
|
168
|
+
"filterNameOverride": "Top users last 30 days",
|
|
169
|
+
"hasValuesFieldName": "hasTopUsersLast30Days",
|
|
170
|
+
"queryByDefault": false
|
|
171
|
+
}
|
|
172
|
+
},
|
|
163
173
|
"type": [
|
|
164
174
|
"null",
|
|
165
175
|
{
|
|
File without changes
|