acryl-datahub-cloud 0.3.11.1rc8__py3-none-any.whl → 0.3.12rc3__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 (82) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
  3. acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
  4. acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +524 -0
  5. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  9. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  10. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +49 -40
  11. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2014 -1958
  12. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  13. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
  14. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  15. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  16. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
  17. acryl_datahub_cloud/metadata/schema.avsc +26713 -26274
  18. acryl_datahub_cloud/metadata/schema_classes.py +1302 -777
  19. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  20. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +72 -0
  21. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  22. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +220 -208
  23. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +36 -7
  24. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  25. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +40 -8
  26. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
  27. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +14 -0
  28. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  29. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  30. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  31. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  32. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +2 -1
  33. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  34. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  35. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  36. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  37. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  38. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
  39. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +1 -1
  40. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
  41. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  42. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  43. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  44. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  45. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  46. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +22 -0
  47. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
  48. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
  49. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
  50. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -0
  51. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +1 -0
  52. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
  53. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -1
  54. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
  55. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +39 -10
  56. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
  57. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  58. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
  59. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  60. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +3 -3
  61. acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
  62. acryl_datahub_cloud/notifications/__init__.py +0 -0
  63. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  64. acryl_datahub_cloud/sdk/__init__.py +25 -0
  65. acryl_datahub_cloud/sdk/assertion.py +767 -0
  66. acryl_datahub_cloud/sdk/assertion_input.py +1335 -0
  67. acryl_datahub_cloud/sdk/assertions_client.py +1153 -0
  68. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  69. acryl_datahub_cloud/sdk/entities/assertion.py +425 -0
  70. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  71. acryl_datahub_cloud/sdk/entities/subscription.py +84 -0
  72. acryl_datahub_cloud/sdk/errors.py +34 -0
  73. acryl_datahub_cloud/sdk/resolver_client.py +39 -0
  74. acryl_datahub_cloud/sdk/subscription_client.py +678 -0
  75. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/METADATA +44 -39
  76. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/RECORD +79 -55
  77. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/WHEEL +1 -1
  78. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/entry_points.txt +1 -0
  79. acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
  80. acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
  81. acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
  82. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/top_level.txt +0 -0
@@ -36,14 +36,25 @@
36
36
  "name": "type",
37
37
  "doc": "Type of assertion."
38
38
  },
39
+ {
40
+ "TimeseriesField": {},
41
+ "java": {
42
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
43
+ },
44
+ "type": [
45
+ "null",
46
+ "string"
47
+ ],
48
+ "name": "creator",
49
+ "default": null,
50
+ "doc": "Creator of the assertion.",
51
+ "Urn": "Urn"
52
+ },
39
53
  {
40
54
  "Searchable": {
41
55
  "/*": {
42
- "addToFilters": true,
43
- "fieldName": "parentDomains",
44
56
  "fieldType": "URN",
45
- "filterNameOverride": "In Parent Domain",
46
- "hasValuesFieldName": "hasParentDomain"
57
+ "hasValuesFieldName": "hasAsserteeDomain"
47
58
  }
48
59
  },
49
60
  "TimeseriesField": {},
@@ -54,18 +65,15 @@
54
65
  "items": "string"
55
66
  }
56
67
  ],
57
- "name": "parentDomains",
68
+ "name": "asserteeDomains",
58
69
  "default": null,
59
70
  "doc": "The Domains attached to the entity's parent Asset"
60
71
  },
61
72
  {
62
73
  "Searchable": {
63
74
  "/*": {
64
- "addToFilters": true,
65
- "fieldName": "domains",
66
75
  "fieldType": "URN",
67
- "filterNameOverride": "In Parent Data Product",
68
- "hasValuesFieldName": "hasParentDataProduct"
76
+ "hasValuesFieldName": "hasAsserteeDataProduct"
69
77
  }
70
78
  },
71
79
  "TimeseriesField": {},
@@ -76,137 +84,52 @@
76
84
  "items": "string"
77
85
  }
78
86
  ],
79
- "name": "parentDataProducts",
87
+ "name": "asserteeDataProducts",
80
88
  "default": null,
81
89
  "doc": "The Data Products attached to the entity's parent Asset"
82
90
  },
83
91
  {
84
92
  "Searchable": {
85
- "/*/tag": {
86
- "addToFilters": true,
87
- "boostScore": 0.5,
88
- "fieldName": "tags",
93
+ "/*": {
89
94
  "fieldType": "URN",
90
- "filterNameOverride": "Parent Tagged With",
91
- "hasValuesFieldName": "hasParentTags",
92
- "queryByDefault": true
95
+ "hasValuesFieldName": "hasAsserteeTags"
93
96
  }
94
97
  },
95
- "TimeseriesField": {},
96
98
  "type": [
97
99
  "null",
98
100
  {
99
101
  "type": "array",
100
- "items": {
101
- "type": "record",
102
- "name": "TagAssociation",
103
- "namespace": "com.linkedin.pegasus2avro.common",
104
- "fields": [
105
- {
106
- "java": {
107
- "class": "com.linkedin.pegasus2avro.common.urn.TagUrn"
108
- },
109
- "type": "string",
110
- "name": "tag",
111
- "doc": "Urn of the applied tag",
112
- "Urn": "TagUrn"
113
- },
114
- {
115
- "type": [
116
- "null",
117
- "string"
118
- ],
119
- "name": "context",
120
- "default": null,
121
- "doc": "Additional context about the association"
122
- },
123
- {
124
- "Searchable": {
125
- "/actor": {
126
- "fieldName": "tagAttributionActors",
127
- "fieldType": "URN",
128
- "queryByDefault": false
129
- },
130
- "/source": {
131
- "fieldName": "tagAttributionSources",
132
- "fieldType": "URN",
133
- "queryByDefault": false
134
- },
135
- "/time": {
136
- "fieldName": "tagAttributionDates",
137
- "fieldType": "DATETIME",
138
- "queryByDefault": false
139
- }
140
- },
141
- "type": [
142
- "null",
143
- {
144
- "type": "record",
145
- "name": "MetadataAttribution",
146
- "namespace": "com.linkedin.pegasus2avro.common",
147
- "fields": [
148
- {
149
- "type": "long",
150
- "name": "time",
151
- "doc": "When this metadata was updated."
152
- },
153
- {
154
- "java": {
155
- "class": "com.linkedin.pegasus2avro.common.urn.Urn"
156
- },
157
- "type": "string",
158
- "name": "actor",
159
- "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.",
160
- "Urn": "Urn"
161
- },
162
- {
163
- "java": {
164
- "class": "com.linkedin.pegasus2avro.common.urn.Urn"
165
- },
166
- "type": [
167
- "null",
168
- "string"
169
- ],
170
- "name": "source",
171
- "default": null,
172
- "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.",
173
- "Urn": "Urn"
174
- },
175
- {
176
- "type": {
177
- "type": "map",
178
- "values": "string"
179
- },
180
- "name": "sourceDetail",
181
- "default": {},
182
- "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."
183
- }
184
- ],
185
- "doc": "Information about who, why, and how this metadata was applied"
186
- }
187
- ],
188
- "name": "attribution",
189
- "default": null,
190
- "doc": "Information about who, why, and how this metadata was applied"
191
- }
192
- ],
193
- "doc": "Properties of an applied tag. For now, just an Urn. In the future we can extend this with other properties, e.g.\npropagation parameters."
194
- }
102
+ "items": "string"
195
103
  }
196
104
  ],
197
- "name": "parentGlobalTags",
105
+ "name": "asserteeTags",
198
106
  "default": null,
199
107
  "doc": "The Tags attached to the entity's parent Asset"
200
108
  },
201
109
  {
202
110
  "Searchable": {
203
111
  "/*": {
204
- "addToFilters": true,
205
- "fieldName": "parentOwners",
206
112
  "fieldType": "URN",
207
- "filterNameOverride": "Parent Owned By",
208
- "hasValuesFieldName": "hasParentOwners",
209
- "queryByDefault": false
113
+ "hasValuesFieldName": "hasAsserteeGlossaryTerms"
114
+ }
115
+ },
116
+ "TimeseriesField": {},
117
+ "type": [
118
+ "null",
119
+ {
120
+ "type": "array",
121
+ "items": "string"
122
+ }
123
+ ],
124
+ "name": "asserteeGlossaryTerms",
125
+ "default": null,
126
+ "doc": "The Glossary Terms attached to the entity's parent Asset"
127
+ },
128
+ {
129
+ "Searchable": {
130
+ "/*": {
131
+ "fieldType": "URN",
132
+ "hasValuesFieldName": "hasAsserteeOwners"
210
133
  }
211
134
  },
212
135
  "TimeseriesField": {},
@@ -217,15 +140,13 @@
217
140
  "items": "string"
218
141
  }
219
142
  ],
220
- "name": "parentOwners",
143
+ "name": "asserteeOwners",
221
144
  "default": null,
222
145
  "doc": "Parent Owner URN, e.g. urn:li:corpuser:ldap, urn:li:corpGroup:group_name, and urn:li:multiProduct:mp_name\n(Caveat: only corpuser is currently supported in the frontend.)"
223
146
  },
224
147
  {
225
148
  "Searchable": {
226
- "addToFilters": true,
227
- "fieldType": "URN",
228
- "filterNameOverride": "Parent Platform"
149
+ "fieldType": "URN"
229
150
  },
230
151
  "TimeseriesField": {},
231
152
  "java": {
@@ -235,17 +156,14 @@
235
156
  "null",
236
157
  "string"
237
158
  ],
238
- "name": "parentDataPlatform",
159
+ "name": "asserteeDataPlatform",
239
160
  "default": null,
240
161
  "doc": "Data Platform for parent",
241
162
  "Urn": "Urn"
242
163
  },
243
164
  {
244
165
  "Searchable": {
245
- "addToFilters": true,
246
- "fieldName": "parentPlatformInstance",
247
- "fieldType": "URN",
248
- "filterNameOverride": "Parent Platform Instance"
166
+ "fieldType": "URN"
249
167
  },
250
168
  "TimeseriesField": {},
251
169
  "java": {
@@ -255,11 +173,49 @@
255
173
  "null",
256
174
  "string"
257
175
  ],
258
- "name": "parentDataPlatformInstance",
176
+ "name": "asserteeDataPlatformInstance",
259
177
  "default": null,
260
178
  "doc": "Instance of the parent's data platform (e.g. db instance)",
261
179
  "Urn": "Urn"
262
180
  },
181
+ {
182
+ "Searchable": {
183
+ "/*": {
184
+ "fieldType": "URN",
185
+ "hasValuesFieldName": "hasAsserteeSchemaFieldGlossaryTerms"
186
+ }
187
+ },
188
+ "TimeseriesField": {},
189
+ "type": [
190
+ "null",
191
+ {
192
+ "type": "array",
193
+ "items": "string"
194
+ }
195
+ ],
196
+ "name": "asserteeSchemaFieldGlossaryTerms",
197
+ "default": null,
198
+ "doc": "Only provided if the Assertion is of type 'Column'. The glossary terms associated with the target column."
199
+ },
200
+ {
201
+ "Searchable": {
202
+ "/*": {
203
+ "fieldType": "URN",
204
+ "hasValuesFieldName": "hasAsserteeSchemaFieldTags"
205
+ }
206
+ },
207
+ "TimeseriesField": {},
208
+ "type": [
209
+ "null",
210
+ {
211
+ "type": "array",
212
+ "items": "string"
213
+ }
214
+ ],
215
+ "name": "asserteeSchemaFieldTags",
216
+ "default": null,
217
+ "doc": "Only provided if the Assertion is of type 'Column'. The tags associated with the target column."
218
+ },
263
219
  {
264
220
  "type": "long",
265
221
  "name": "timestampMillis",
@@ -387,7 +343,10 @@
387
343
  "doc": "URL where the reference exist"
388
344
  },
389
345
  {
390
- "Searchable": {},
346
+ "Searchable": {
347
+ "fieldName": "assertionType",
348
+ "fieldType": "KEYWORD"
349
+ },
391
350
  "type": "com.linkedin.pegasus2avro.assertion.AssertionType",
392
351
  "name": "type",
393
352
  "doc": "Type of assertion."
@@ -694,7 +653,10 @@
694
653
  "namespace": "com.linkedin.pegasus2avro.assertion",
695
654
  "fields": [
696
655
  {
697
- "Searchable": {},
656
+ "Searchable": {
657
+ "fieldName": "freshnessAssertionType",
658
+ "fieldType": "KEYWORD"
659
+ },
698
660
  "type": {
699
661
  "type": "enum",
700
662
  "symbolDocs": {
@@ -1081,7 +1043,10 @@
1081
1043
  "namespace": "com.linkedin.pegasus2avro.assertion",
1082
1044
  "fields": [
1083
1045
  {
1084
- "Searchable": {},
1046
+ "Searchable": {
1047
+ "fieldName": "volumeAssertionType",
1048
+ "fieldType": "KEYWORD"
1049
+ },
1085
1050
  "type": {
1086
1051
  "type": "enum",
1087
1052
  "symbolDocs": {
@@ -1374,7 +1339,10 @@
1374
1339
  "namespace": "com.linkedin.pegasus2avro.assertion",
1375
1340
  "fields": [
1376
1341
  {
1377
- "Searchable": {},
1342
+ "Searchable": {
1343
+ "fieldName": "sqlAssertionType",
1344
+ "fieldType": "KEYWORD"
1345
+ },
1378
1346
  "type": {
1379
1347
  "type": "enum",
1380
1348
  "symbolDocs": {
@@ -1453,7 +1421,10 @@
1453
1421
  "namespace": "com.linkedin.pegasus2avro.assertion",
1454
1422
  "fields": [
1455
1423
  {
1456
- "Searchable": {},
1424
+ "Searchable": {
1425
+ "fieldName": "fieldAssertionType",
1426
+ "fieldType": "KEYWORD"
1427
+ },
1457
1428
  "type": {
1458
1429
  "type": "enum",
1459
1430
  "symbolDocs": {
@@ -1615,7 +1586,7 @@
1615
1586
  },
1616
1587
  "type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
1617
1588
  "name": "field",
1618
- "doc": "The field under evaluation"
1589
+ "doc": "The field path under evaluation"
1619
1590
  },
1620
1591
  {
1621
1592
  "type": {
@@ -2360,7 +2331,101 @@
2360
2331
  },
2361
2332
  "type": {
2362
2333
  "type": "array",
2363
- "items": "com.linkedin.pegasus2avro.common.TagAssociation"
2334
+ "items": {
2335
+ "type": "record",
2336
+ "name": "TagAssociation",
2337
+ "namespace": "com.linkedin.pegasus2avro.common",
2338
+ "fields": [
2339
+ {
2340
+ "java": {
2341
+ "class": "com.linkedin.pegasus2avro.common.urn.TagUrn"
2342
+ },
2343
+ "type": "string",
2344
+ "name": "tag",
2345
+ "doc": "Urn of the applied tag",
2346
+ "Urn": "TagUrn"
2347
+ },
2348
+ {
2349
+ "type": [
2350
+ "null",
2351
+ "string"
2352
+ ],
2353
+ "name": "context",
2354
+ "default": null,
2355
+ "doc": "Additional context about the association"
2356
+ },
2357
+ {
2358
+ "Searchable": {
2359
+ "/actor": {
2360
+ "fieldName": "tagAttributionActors",
2361
+ "fieldType": "URN",
2362
+ "queryByDefault": false
2363
+ },
2364
+ "/source": {
2365
+ "fieldName": "tagAttributionSources",
2366
+ "fieldType": "URN",
2367
+ "queryByDefault": false
2368
+ },
2369
+ "/time": {
2370
+ "fieldName": "tagAttributionDates",
2371
+ "fieldType": "DATETIME",
2372
+ "queryByDefault": false
2373
+ }
2374
+ },
2375
+ "type": [
2376
+ "null",
2377
+ {
2378
+ "type": "record",
2379
+ "name": "MetadataAttribution",
2380
+ "namespace": "com.linkedin.pegasus2avro.common",
2381
+ "fields": [
2382
+ {
2383
+ "type": "long",
2384
+ "name": "time",
2385
+ "doc": "When this metadata was updated."
2386
+ },
2387
+ {
2388
+ "java": {
2389
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2390
+ },
2391
+ "type": "string",
2392
+ "name": "actor",
2393
+ "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.",
2394
+ "Urn": "Urn"
2395
+ },
2396
+ {
2397
+ "java": {
2398
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
2399
+ },
2400
+ "type": [
2401
+ "null",
2402
+ "string"
2403
+ ],
2404
+ "name": "source",
2405
+ "default": null,
2406
+ "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.",
2407
+ "Urn": "Urn"
2408
+ },
2409
+ {
2410
+ "type": {
2411
+ "type": "map",
2412
+ "values": "string"
2413
+ },
2414
+ "name": "sourceDetail",
2415
+ "default": {},
2416
+ "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."
2417
+ }
2418
+ ],
2419
+ "doc": "Information about who, why, and how this metadata was applied"
2420
+ }
2421
+ ],
2422
+ "name": "attribution",
2423
+ "default": null,
2424
+ "doc": "Information about who, why, and how this metadata was applied"
2425
+ }
2426
+ ],
2427
+ "doc": "Properties of an applied tag. For now, just an Urn. In the future we can extend this with other properties, e.g.\npropagation parameters."
2428
+ }
2364
2429
  },
2365
2430
  "name": "tags",
2366
2431
  "doc": "Tags associated with a given entity"
@@ -2746,7 +2811,8 @@
2746
2811
  "fields": [
2747
2812
  {
2748
2813
  "Searchable": {
2749
- "fieldName": "customType"
2814
+ "fieldName": "customType",
2815
+ "fieldType": "KEYWORD"
2750
2816
  },
2751
2817
  "type": "string",
2752
2818
  "name": "type",
@@ -2809,6 +2875,14 @@
2809
2875
  "doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
2810
2876
  },
2811
2877
  {
2878
+ "Searchable": {
2879
+ "/created/actor": {
2880
+ "fieldName": "creator",
2881
+ "fieldType": "URN",
2882
+ "filterNameOverride": "Created By",
2883
+ "hasValuesFieldName": "hasCreator"
2884
+ }
2885
+ },
2812
2886
  "type": [
2813
2887
  "null",
2814
2888
  {
@@ -2865,6 +2939,11 @@
2865
2939
  "doc": "The time at which the assertion was last updated and the actor who updated it.\nThis field is only present for Native assertions updated after this field was introduced."
2866
2940
  },
2867
2941
  {
2942
+ "Searchable": {
2943
+ "fieldName": "assertionDescription",
2944
+ "fieldType": "TEXT",
2945
+ "hasValuesFieldName": "hasAssertionDescription"
2946
+ },
2868
2947
  "type": [
2869
2948
  "null",
2870
2949
  "string"
@@ -2922,7 +3001,10 @@
2922
3001
  "doc": "The optional AssertionInfo which contains the original/untransformed assertion that was predicted.\nThis field is used to store the original assertion that was made before the evaluation process.\nIt is optional and may not always be present in the AssertionRunEvent record.\nWhen present, it provides additional context about the original assertion that was made.\n\nAcryl Only! An assertion without any searchable or relationship annotations."
2923
3002
  },
2924
3003
  {
2925
- "Searchable": {},
3004
+ "Searchable": {
3005
+ "fieldName": "lastResultType",
3006
+ "fieldType": "KEYWORD"
3007
+ },
2926
3008
  "TimeseriesField": {},
2927
3009
  "type": {
2928
3010
  "type": "enum",
@@ -3587,76 +3669,6 @@
3587
3669
  "default": null,
3588
3670
  "doc": "Results of assertion, present if the status is COMPLETE"
3589
3671
  },
3590
- {
3591
- "type": [
3592
- "null",
3593
- {
3594
- "type": "map",
3595
- "values": "string"
3596
- }
3597
- ],
3598
- "name": "runtimeContext",
3599
- "default": null,
3600
- "doc": "Runtime parameters of evaluation"
3601
- },
3602
- {
3603
- "type": [
3604
- "null",
3605
- {
3606
- "type": "record",
3607
- "name": "BatchSpec",
3608
- "namespace": "com.linkedin.pegasus2avro.assertion",
3609
- "fields": [
3610
- {
3611
- "Searchable": {
3612
- "/*": {
3613
- "fieldType": "TEXT",
3614
- "queryByDefault": true
3615
- }
3616
- },
3617
- "type": {
3618
- "type": "map",
3619
- "values": "string"
3620
- },
3621
- "name": "customProperties",
3622
- "default": {},
3623
- "doc": "Custom property bag."
3624
- },
3625
- {
3626
- "type": [
3627
- "null",
3628
- "string"
3629
- ],
3630
- "name": "nativeBatchId",
3631
- "default": null,
3632
- "doc": "The native identifier as specified by the system operating on the batch."
3633
- },
3634
- {
3635
- "type": [
3636
- "null",
3637
- "string"
3638
- ],
3639
- "name": "query",
3640
- "default": null,
3641
- "doc": "A query that identifies a batch of data"
3642
- },
3643
- {
3644
- "type": [
3645
- "null",
3646
- "int"
3647
- ],
3648
- "name": "limit",
3649
- "default": null,
3650
- "doc": "Any limit to the number of rows in the batch, if applied"
3651
- }
3652
- ],
3653
- "doc": "A batch on which certain operations, e.g. data quality evaluation, is done."
3654
- }
3655
- ],
3656
- "name": "batchSpec",
3657
- "default": null,
3658
- "doc": "Specification of the batch which this run is evaluating"
3659
- },
3660
3672
  {
3661
3673
  "type": [
3662
3674
  "null",