acryl-datahub 1.0.0.1rc1__py3-none-any.whl → 1.0.0.1rc2__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 might be problematic. Click here for more details.

Files changed (62) hide show
  1. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info}/METADATA +2471 -2470
  2. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info}/RECORD +61 -46
  3. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info}/WHEEL +1 -1
  4. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info}/entry_points.txt +2 -1
  5. datahub/_version.py +1 -1
  6. datahub/api/entities/dataset/dataset.py +1 -28
  7. datahub/emitter/request_helper.py +19 -14
  8. datahub/ingestion/api/source.py +6 -2
  9. datahub/ingestion/api/source_helpers.py +6 -2
  10. datahub/ingestion/extractor/schema_util.py +1 -0
  11. datahub/ingestion/source/common/data_platforms.py +23 -0
  12. datahub/ingestion/source/common/gcp_credentials_config.py +6 -0
  13. datahub/ingestion/source/common/subtypes.py +15 -0
  14. datahub/ingestion/source/data_lake_common/path_spec.py +21 -1
  15. datahub/ingestion/source/dbt/dbt_common.py +6 -4
  16. datahub/ingestion/source/dbt/dbt_core.py +4 -6
  17. datahub/ingestion/source/dbt/dbt_tests.py +8 -6
  18. datahub/ingestion/source/dremio/dremio_datahub_source_mapping.py +1 -1
  19. datahub/ingestion/source/dremio/dremio_entities.py +6 -5
  20. datahub/ingestion/source/dremio/dremio_source.py +96 -117
  21. datahub/ingestion/source/hex/__init__.py +0 -0
  22. datahub/ingestion/source/hex/api.py +394 -0
  23. datahub/ingestion/source/hex/constants.py +3 -0
  24. datahub/ingestion/source/hex/hex.py +167 -0
  25. datahub/ingestion/source/hex/mapper.py +372 -0
  26. datahub/ingestion/source/hex/model.py +68 -0
  27. datahub/ingestion/source/iceberg/iceberg.py +62 -66
  28. datahub/ingestion/source/mlflow.py +198 -7
  29. datahub/ingestion/source/mode.py +11 -1
  30. datahub/ingestion/source/openapi.py +69 -34
  31. datahub/ingestion/source/powerbi/powerbi.py +29 -23
  32. datahub/ingestion/source/s3/source.py +11 -0
  33. datahub/ingestion/source/slack/slack.py +399 -82
  34. datahub/ingestion/source/superset.py +15 -6
  35. datahub/ingestion/source/vertexai/__init__.py +0 -0
  36. datahub/ingestion/source/vertexai/vertexai.py +1055 -0
  37. datahub/ingestion/source/vertexai/vertexai_config.py +29 -0
  38. datahub/ingestion/source/vertexai/vertexai_result_type_utils.py +68 -0
  39. datahub/metadata/_schema_classes.py +472 -1
  40. datahub/metadata/com/linkedin/pegasus2avro/dataplatform/slack/__init__.py +15 -0
  41. datahub/metadata/com/linkedin/pegasus2avro/event/__init__.py +11 -0
  42. datahub/metadata/com/linkedin/pegasus2avro/event/notification/__init__.py +15 -0
  43. datahub/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +19 -0
  44. datahub/metadata/schema.avsc +307 -0
  45. datahub/metadata/schemas/CorpUserEditableInfo.avsc +14 -0
  46. datahub/metadata/schemas/CorpUserKey.avsc +2 -1
  47. datahub/metadata/schemas/CorpUserSettings.avsc +95 -0
  48. datahub/metadata/schemas/MLModelGroupProperties.avsc +16 -0
  49. datahub/metadata/schemas/MetadataChangeEvent.avsc +30 -0
  50. datahub/metadata/schemas/QueryProperties.avsc +20 -0
  51. datahub/metadata/schemas/Siblings.avsc +2 -0
  52. datahub/metadata/schemas/SlackUserInfo.avsc +160 -0
  53. datahub/sdk/dataset.py +122 -0
  54. datahub/sdk/entity.py +99 -3
  55. datahub/sdk/entity_client.py +27 -3
  56. datahub/sdk/main_client.py +22 -0
  57. datahub/sdk/search_filters.py +4 -4
  58. datahub/sql_parsing/sql_parsing_aggregator.py +6 -0
  59. datahub/sql_parsing/tool_meta_extractor.py +27 -2
  60. datahub/ingestion/source/vertexai.py +0 -695
  61. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info/licenses}/LICENSE +0 -0
  62. {acryl_datahub-1.0.0.1rc1.dist-info → acryl_datahub-1.0.0.1rc2.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,19 @@
1
+ # mypy: ignore-errors
2
+ # flake8: noqa
3
+
4
+ # This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
5
+ # Do not modify manually!
6
+
7
+ # pylint: skip-file
8
+ # fmt: off
9
+ # isort: skip_file
10
+ from .......schema_classes import EmailNotificationSettingsClass
11
+ from .......schema_classes import NotificationSettingsClass
12
+ from .......schema_classes import SlackNotificationSettingsClass
13
+
14
+
15
+ EmailNotificationSettings = EmailNotificationSettingsClass
16
+ NotificationSettings = NotificationSettingsClass
17
+ SlackNotificationSettings = SlackNotificationSettingsClass
18
+
19
+ # fmt: on
@@ -2313,6 +2313,21 @@
2313
2313
  "name": "QueryProperties",
2314
2314
  "namespace": "com.linkedin.pegasus2avro.query",
2315
2315
  "fields": [
2316
+ {
2317
+ "Searchable": {
2318
+ "/*": {
2319
+ "fieldType": "TEXT",
2320
+ "queryByDefault": true
2321
+ }
2322
+ },
2323
+ "type": {
2324
+ "type": "map",
2325
+ "values": "string"
2326
+ },
2327
+ "name": "customProperties",
2328
+ "default": {},
2329
+ "doc": "Custom property bag."
2330
+ },
2316
2331
  {
2317
2332
  "type": {
2318
2333
  "type": "record",
@@ -2418,6 +2433,11 @@
2418
2433
  "doc": "Audit stamp capturing the time and actor who last modified the Query."
2419
2434
  },
2420
2435
  {
2436
+ "Searchable": {
2437
+ "addToFilters": false,
2438
+ "fieldType": "URN",
2439
+ "queryByDefault": false
2440
+ },
2421
2441
  "java": {
2422
2442
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2423
2443
  },
@@ -5997,6 +6017,20 @@
5997
6017
  "name": "email",
5998
6018
  "default": null,
5999
6019
  "doc": "Email address to contact the user"
6020
+ },
6021
+ {
6022
+ "Urn": "Urn",
6023
+ "urn_is_array": true,
6024
+ "type": [
6025
+ "null",
6026
+ {
6027
+ "type": "array",
6028
+ "items": "string"
6029
+ }
6030
+ ],
6031
+ "name": "informationSources",
6032
+ "default": null,
6033
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future."
6000
6034
  }
6001
6035
  ],
6002
6036
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -10300,6 +10334,22 @@
10300
10334
  "default": null,
10301
10335
  "doc": "List of jobs or process instances (if any) that use the model or group."
10302
10336
  },
10337
+ {
10338
+ "Searchable": {
10339
+ "fieldType": "KEYWORD"
10340
+ },
10341
+ "java": {
10342
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
10343
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
10344
+ },
10345
+ "type": [
10346
+ "null",
10347
+ "string"
10348
+ ],
10349
+ "name": "externalUrl",
10350
+ "default": null,
10351
+ "doc": "URL where the reference exist"
10352
+ },
10303
10353
  {
10304
10354
  "Searchable": {
10305
10355
  "boostScore": 10.0,
@@ -13747,8 +13797,10 @@
13747
13797
  },
13748
13798
  "Searchable": {
13749
13799
  "/*": {
13800
+ "addHasValuesToFilters": true,
13750
13801
  "fieldName": "siblings",
13751
13802
  "fieldType": "URN",
13803
+ "hasValuesFieldName": "hasSiblings",
13752
13804
  "queryByDefault": false
13753
13805
  }
13754
13806
  },
@@ -14574,6 +14626,166 @@
14574
14626
  "doc": "Forms that are assigned to this entity to be filled out"
14575
14627
  },
14576
14628
  "com.linkedin.pegasus2avro.dataplatform.DataPlatformInfo",
14629
+ {
14630
+ "type": "record",
14631
+ "Aspect": {
14632
+ "name": "slackUserInfo"
14633
+ },
14634
+ "name": "SlackUserInfo",
14635
+ "namespace": "com.linkedin.pegasus2avro.dataplatform.slack",
14636
+ "fields": [
14637
+ {
14638
+ "Relationship": {
14639
+ "entityTypes": [
14640
+ "dataPlatformInstance"
14641
+ ],
14642
+ "name": "PartOfSlackWorkspace"
14643
+ },
14644
+ "java": {
14645
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
14646
+ },
14647
+ "Urn": "Urn",
14648
+ "entityTypes": [
14649
+ "dataPlatformInstance"
14650
+ ],
14651
+ "type": "string",
14652
+ "name": "slackInstance",
14653
+ "doc": "The dataplatform instance that this Slack member belongs to."
14654
+ },
14655
+ {
14656
+ "type": "string",
14657
+ "name": "id",
14658
+ "doc": "The unique identifier for the Slack member."
14659
+ },
14660
+ {
14661
+ "type": "string",
14662
+ "name": "name",
14663
+ "doc": "The username of the Slack member."
14664
+ },
14665
+ {
14666
+ "type": "string",
14667
+ "name": "realName",
14668
+ "doc": "The real name of the Slack member."
14669
+ },
14670
+ {
14671
+ "type": "string",
14672
+ "name": "displayName",
14673
+ "doc": "The display name of the Slack member."
14674
+ },
14675
+ {
14676
+ "type": [
14677
+ "null",
14678
+ "string"
14679
+ ],
14680
+ "name": "email",
14681
+ "default": null,
14682
+ "doc": "The email associated with the Slack member."
14683
+ },
14684
+ {
14685
+ "type": "string",
14686
+ "name": "teamId",
14687
+ "doc": "The ID associated with the Slack team."
14688
+ },
14689
+ {
14690
+ "type": "boolean",
14691
+ "name": "isDeleted",
14692
+ "doc": "Whether the member is deleted or not."
14693
+ },
14694
+ {
14695
+ "type": "boolean",
14696
+ "name": "isAdmin",
14697
+ "doc": "Whether the member is an admin."
14698
+ },
14699
+ {
14700
+ "type": "boolean",
14701
+ "name": "isOwner",
14702
+ "doc": "Whether the member is an owner."
14703
+ },
14704
+ {
14705
+ "type": "boolean",
14706
+ "name": "isPrimaryOwner",
14707
+ "doc": "Whether the member is a primary owner."
14708
+ },
14709
+ {
14710
+ "type": "boolean",
14711
+ "name": "isBot",
14712
+ "doc": "Whether the member is a bot."
14713
+ },
14714
+ {
14715
+ "type": [
14716
+ "null",
14717
+ "string"
14718
+ ],
14719
+ "name": "timezone",
14720
+ "default": null,
14721
+ "doc": "The timezone of the Slack member."
14722
+ },
14723
+ {
14724
+ "type": [
14725
+ "null",
14726
+ "int"
14727
+ ],
14728
+ "name": "timezoneOffset",
14729
+ "default": null,
14730
+ "doc": "The timezone offset of the Slack member."
14731
+ },
14732
+ {
14733
+ "type": [
14734
+ "null",
14735
+ "string"
14736
+ ],
14737
+ "name": "title",
14738
+ "default": null,
14739
+ "doc": "The title of the Slack member."
14740
+ },
14741
+ {
14742
+ "type": [
14743
+ "null",
14744
+ "string"
14745
+ ],
14746
+ "name": "phone",
14747
+ "default": null,
14748
+ "doc": "The phone number of the Slack member."
14749
+ },
14750
+ {
14751
+ "type": [
14752
+ "null",
14753
+ "string"
14754
+ ],
14755
+ "name": "profilePictureUrl",
14756
+ "default": null,
14757
+ "doc": "The URL of the member's profile picture."
14758
+ },
14759
+ {
14760
+ "type": [
14761
+ "null",
14762
+ "string"
14763
+ ],
14764
+ "name": "statusText",
14765
+ "default": null,
14766
+ "doc": "The status text of the Slack member."
14767
+ },
14768
+ {
14769
+ "type": [
14770
+ "null",
14771
+ "string"
14772
+ ],
14773
+ "name": "statusEmoji",
14774
+ "default": null,
14775
+ "doc": "The status emoji of the Slack member."
14776
+ },
14777
+ {
14778
+ "type": [
14779
+ "null",
14780
+ "long"
14781
+ ],
14782
+ "name": "lastUpdatedSeconds",
14783
+ "default": null,
14784
+ "doc": "The timestamp of when the member was last updated. (in seconds)"
14785
+ }
14786
+ ],
14787
+ "doc": "Information about a Slack user."
14788
+ },
14577
14789
  "com.linkedin.pegasus2avro.policy.DataHubPolicyInfo",
14578
14790
  {
14579
14791
  "type": "record",
@@ -17641,6 +17853,101 @@
17641
17853
  "name": "views",
17642
17854
  "default": null,
17643
17855
  "doc": "User preferences for the Views feature."
17856
+ },
17857
+ {
17858
+ "type": [
17859
+ "null",
17860
+ {
17861
+ "type": "record",
17862
+ "name": "NotificationSettings",
17863
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17864
+ "fields": [
17865
+ {
17866
+ "type": {
17867
+ "type": "array",
17868
+ "items": {
17869
+ "type": "enum",
17870
+ "symbolDocs": {
17871
+ "EMAIL": "Email target type.",
17872
+ "SLACK": "Slack target type."
17873
+ },
17874
+ "name": "NotificationSinkType",
17875
+ "namespace": "com.linkedin.pegasus2avro.event.notification",
17876
+ "symbols": [
17877
+ "SLACK",
17878
+ "EMAIL"
17879
+ ],
17880
+ "doc": "A type of sink / platform to send a notification to."
17881
+ }
17882
+ },
17883
+ "name": "sinkTypes",
17884
+ "doc": "Sink types that notifications are sent to."
17885
+ },
17886
+ {
17887
+ "type": [
17888
+ "null",
17889
+ {
17890
+ "type": "record",
17891
+ "name": "SlackNotificationSettings",
17892
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17893
+ "fields": [
17894
+ {
17895
+ "type": [
17896
+ "null",
17897
+ "string"
17898
+ ],
17899
+ "name": "userHandle",
17900
+ "default": null,
17901
+ "doc": "Optional user handle"
17902
+ },
17903
+ {
17904
+ "type": [
17905
+ "null",
17906
+ {
17907
+ "type": "array",
17908
+ "items": "string"
17909
+ }
17910
+ ],
17911
+ "name": "channels",
17912
+ "default": null,
17913
+ "doc": "Optional list of channels to send notifications to"
17914
+ }
17915
+ ],
17916
+ "doc": "Slack Notification settings for an actor."
17917
+ }
17918
+ ],
17919
+ "name": "slackSettings",
17920
+ "default": null,
17921
+ "doc": "Slack Notification Settings"
17922
+ },
17923
+ {
17924
+ "type": [
17925
+ "null",
17926
+ {
17927
+ "type": "record",
17928
+ "name": "EmailNotificationSettings",
17929
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
17930
+ "fields": [
17931
+ {
17932
+ "type": "string",
17933
+ "name": "email",
17934
+ "doc": "Optional user or group email address"
17935
+ }
17936
+ ],
17937
+ "doc": "Email Notification settings for an actor."
17938
+ }
17939
+ ],
17940
+ "name": "emailSettings",
17941
+ "default": null,
17942
+ "doc": "Email Notification Settings"
17943
+ }
17944
+ ],
17945
+ "doc": "Notification settings for an actor or subscription."
17946
+ }
17947
+ ],
17948
+ "name": "notificationSettings",
17949
+ "default": null,
17950
+ "doc": "Notification settings for a user"
17644
17951
  }
17645
17952
  ],
17646
17953
  "doc": "Settings that a user can customize through the datahub ui"
@@ -149,6 +149,20 @@
149
149
  "name": "email",
150
150
  "default": null,
151
151
  "doc": "Email address to contact the user"
152
+ },
153
+ {
154
+ "type": [
155
+ "null",
156
+ {
157
+ "type": "array",
158
+ "items": "string"
159
+ }
160
+ ],
161
+ "name": "informationSources",
162
+ "default": null,
163
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future.",
164
+ "Urn": "Urn",
165
+ "urn_is_array": true
152
166
  }
153
167
  ],
154
168
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -19,7 +19,8 @@
19
19
  "structuredProperties",
20
20
  "forms",
21
21
  "testResults",
22
- "subTypes"
22
+ "subTypes",
23
+ "slackUserInfo"
23
24
  ],
24
25
  "entityDoc": "CorpUser represents an identity of a person (or an account) in the enterprise."
25
26
  },
@@ -64,6 +64,101 @@
64
64
  "name": "views",
65
65
  "default": null,
66
66
  "doc": "User preferences for the Views feature."
67
+ },
68
+ {
69
+ "type": [
70
+ "null",
71
+ {
72
+ "type": "record",
73
+ "name": "NotificationSettings",
74
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
75
+ "fields": [
76
+ {
77
+ "type": {
78
+ "type": "array",
79
+ "items": {
80
+ "type": "enum",
81
+ "symbolDocs": {
82
+ "EMAIL": "Email target type.",
83
+ "SLACK": "Slack target type."
84
+ },
85
+ "name": "NotificationSinkType",
86
+ "namespace": "com.linkedin.pegasus2avro.event.notification",
87
+ "symbols": [
88
+ "SLACK",
89
+ "EMAIL"
90
+ ],
91
+ "doc": "A type of sink / platform to send a notification to."
92
+ }
93
+ },
94
+ "name": "sinkTypes",
95
+ "doc": "Sink types that notifications are sent to."
96
+ },
97
+ {
98
+ "type": [
99
+ "null",
100
+ {
101
+ "type": "record",
102
+ "name": "SlackNotificationSettings",
103
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
104
+ "fields": [
105
+ {
106
+ "type": [
107
+ "null",
108
+ "string"
109
+ ],
110
+ "name": "userHandle",
111
+ "default": null,
112
+ "doc": "Optional user handle"
113
+ },
114
+ {
115
+ "type": [
116
+ "null",
117
+ {
118
+ "type": "array",
119
+ "items": "string"
120
+ }
121
+ ],
122
+ "name": "channels",
123
+ "default": null,
124
+ "doc": "Optional list of channels to send notifications to"
125
+ }
126
+ ],
127
+ "doc": "Slack Notification settings for an actor."
128
+ }
129
+ ],
130
+ "name": "slackSettings",
131
+ "default": null,
132
+ "doc": "Slack Notification Settings"
133
+ },
134
+ {
135
+ "type": [
136
+ "null",
137
+ {
138
+ "type": "record",
139
+ "name": "EmailNotificationSettings",
140
+ "namespace": "com.linkedin.pegasus2avro.event.notification.settings",
141
+ "fields": [
142
+ {
143
+ "type": "string",
144
+ "name": "email",
145
+ "doc": "Optional user or group email address"
146
+ }
147
+ ],
148
+ "doc": "Email Notification settings for an actor."
149
+ }
150
+ ],
151
+ "name": "emailSettings",
152
+ "default": null,
153
+ "doc": "Email Notification Settings"
154
+ }
155
+ ],
156
+ "doc": "Notification settings for an actor or subscription."
157
+ }
158
+ ],
159
+ "name": "notificationSettings",
160
+ "default": null,
161
+ "doc": "Notification settings for a user"
67
162
  }
68
163
  ],
69
164
  "doc": "Settings that a user can customize through the datahub ui"
@@ -66,6 +66,22 @@
66
66
  "default": null,
67
67
  "doc": "List of jobs or process instances (if any) that use the model or group."
68
68
  },
69
+ {
70
+ "Searchable": {
71
+ "fieldType": "KEYWORD"
72
+ },
73
+ "java": {
74
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
75
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
76
+ },
77
+ "type": [
78
+ "null",
79
+ "string"
80
+ ],
81
+ "name": "externalUrl",
82
+ "default": null,
83
+ "doc": "URL where the reference exist"
84
+ },
69
85
  {
70
86
  "Searchable": {
71
87
  "boostScore": 10.0,
@@ -1787,6 +1787,20 @@
1787
1787
  "name": "email",
1788
1788
  "default": null,
1789
1789
  "doc": "Email address to contact the user"
1790
+ },
1791
+ {
1792
+ "type": [
1793
+ "null",
1794
+ {
1795
+ "type": "array",
1796
+ "items": "string"
1797
+ }
1798
+ ],
1799
+ "name": "informationSources",
1800
+ "default": null,
1801
+ "doc": "Information sources that have been used to populate this CorpUserEditableInfo.\nThese include platform resources, such as Slack members or Looker users.\nThey can also refer to other semantic urns in the future.",
1802
+ "Urn": "Urn",
1803
+ "urn_is_array": true
1790
1804
  }
1791
1805
  ],
1792
1806
  "doc": "Linkedin corp user information that can be edited from UI"
@@ -6919,6 +6933,22 @@
6919
6933
  "default": null,
6920
6934
  "doc": "List of jobs or process instances (if any) that use the model or group."
6921
6935
  },
6936
+ {
6937
+ "Searchable": {
6938
+ "fieldType": "KEYWORD"
6939
+ },
6940
+ "java": {
6941
+ "class": "com.linkedin.pegasus2avro.common.url.Url",
6942
+ "coercerClass": "com.linkedin.pegasus2avro.common.url.UrlCoercer"
6943
+ },
6944
+ "type": [
6945
+ "null",
6946
+ "string"
6947
+ ],
6948
+ "name": "externalUrl",
6949
+ "default": null,
6950
+ "doc": "URL where the reference exist"
6951
+ },
6922
6952
  {
6923
6953
  "Searchable": {
6924
6954
  "boostScore": 10.0,
@@ -6,6 +6,21 @@
6
6
  "name": "QueryProperties",
7
7
  "namespace": "com.linkedin.pegasus2avro.query",
8
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
+ },
9
24
  {
10
25
  "type": {
11
26
  "type": "record",
@@ -154,6 +169,11 @@
154
169
  "doc": "Audit stamp capturing the time and actor who last modified the Query."
155
170
  },
156
171
  {
172
+ "Searchable": {
173
+ "addToFilters": false,
174
+ "fieldType": "URN",
175
+ "queryByDefault": false
176
+ },
157
177
  "java": {
158
178
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
159
179
  },
@@ -17,8 +17,10 @@
17
17
  },
18
18
  "Searchable": {
19
19
  "/*": {
20
+ "addHasValuesToFilters": true,
20
21
  "fieldName": "siblings",
21
22
  "fieldType": "URN",
23
+ "hasValuesFieldName": "hasSiblings",
22
24
  "queryByDefault": false
23
25
  }
24
26
  },