acryl-datahub-cloud 0.3.6.9rc1__py3-none-any.whl → 0.3.7rc1__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.
Files changed (66) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/datahub_reporting/extract_graph.py +1 -1
  3. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py +466 -0
  4. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +432 -34
  5. acryl_datahub_cloud/metadata/_urns/urn_defs.py +788 -5
  6. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py +2 -0
  7. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ai/__init__.py +23 -0
  8. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +4 -0
  9. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py +2 -0
  10. acryl_datahub_cloud/metadata/schema.avsc +774 -75
  11. acryl_datahub_cloud/metadata/schema_classes.py +750 -20
  12. acryl_datahub_cloud/metadata/schemas/Access.avsc +2 -1
  13. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +76 -0
  14. acryl_datahub_cloud/metadata/schemas/AiInferenceMetadata.avsc +42 -0
  15. acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc +16 -8
  16. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +3506 -0
  17. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +3 -2
  18. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +2 -0
  19. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +4 -3
  20. acryl_datahub_cloud/metadata/schemas/AssertionSummary.avsc +50 -0
  21. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +55 -8
  22. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +4 -2
  23. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  24. acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +3 -1
  25. acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +1 -1
  26. acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +29 -2
  27. acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +3 -1
  28. acryl_datahub_cloud/metadata/schemas/DataHubActionInfo.avsc +10 -1
  29. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +4 -2
  30. acryl_datahub_cloud/metadata/schemas/DataHubViewInfo.avsc +2 -0
  31. acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +3 -1
  32. acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +3 -1
  33. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +5 -2
  34. acryl_datahub_cloud/metadata/schemas/DynamicFormAssignment.avsc +2 -0
  35. acryl_datahub_cloud/metadata/schemas/EntityInferenceMetadata.avsc +47 -0
  36. acryl_datahub_cloud/metadata/schemas/Filter.avsc +2 -0
  37. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +75 -0
  38. acryl_datahub_cloud/metadata/schemas/Forms.avsc +18 -9
  39. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +18 -0
  40. acryl_datahub_cloud/metadata/schemas/GlossaryRelatedTerms.avsc +4 -4
  41. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -1
  42. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -1
  43. acryl_datahub_cloud/metadata/schemas/IncidentsSummary.avsc +4 -2
  44. acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +4 -2
  45. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +2 -1
  46. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +3 -1
  47. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +3 -1
  48. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +5 -2
  49. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +119 -11
  50. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +3 -2
  51. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +2 -1
  52. acryl_datahub_cloud/metadata/schemas/Operation.avsc +0 -3
  53. acryl_datahub_cloud/metadata/schemas/Ownership.avsc +2 -1
  54. acryl_datahub_cloud/metadata/schemas/PlatformResourceInfo.avsc +2 -2
  55. acryl_datahub_cloud/metadata/schemas/PlatformResourceKey.avsc +4 -3
  56. acryl_datahub_cloud/metadata/schemas/PostInfo.avsc +2 -1
  57. acryl_datahub_cloud/metadata/schemas/RecommendationModule.avsc +2 -0
  58. acryl_datahub_cloud/metadata/schemas/Share.avsc +2 -1
  59. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +25 -1
  60. acryl_datahub_cloud/metadata/schemas/SubTypes.avsc +1 -1
  61. acryl_datahub_cloud/metadata/schemas/TestResults.avsc +8 -4
  62. {acryl_datahub_cloud-0.3.6.9rc1.dist-info → acryl_datahub_cloud-0.3.7rc1.dist-info}/METADATA +38 -38
  63. {acryl_datahub_cloud-0.3.6.9rc1.dist-info → acryl_datahub_cloud-0.3.7rc1.dist-info}/RECORD +66 -60
  64. {acryl_datahub_cloud-0.3.6.9rc1.dist-info → acryl_datahub_cloud-0.3.7rc1.dist-info}/WHEEL +1 -1
  65. {acryl_datahub_cloud-0.3.6.9rc1.dist-info → acryl_datahub_cloud-0.3.7rc1.dist-info}/entry_points.txt +0 -0
  66. {acryl_datahub_cloud-0.3.6.9rc1.dist-info → acryl_datahub_cloud-0.3.7rc1.dist-info}/top_level.txt +0 -0
@@ -199,7 +199,8 @@
199
199
  "Searchable": {
200
200
  "/*/owners/*/owner": {
201
201
  "fieldName": "inferredOwners",
202
- "fieldType": "URN"
202
+ "fieldType": "URN",
203
+ "queryByDefault": false
203
204
  }
204
205
  },
205
206
  "type": [
@@ -301,7 +302,8 @@
301
302
  },
302
303
  "Searchable": {
303
304
  "fieldName": "ownershipTypeUrn",
304
- "fieldType": "URN"
305
+ "fieldType": "URN",
306
+ "queryByDefault": false
305
307
  },
306
308
  "java": {
307
309
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -1215,11 +1217,13 @@
1215
1217
  "/*/test": {
1216
1218
  "fieldName": "failingTests",
1217
1219
  "fieldType": "URN",
1218
- "hasValuesFieldName": "hasFailingTests"
1220
+ "hasValuesFieldName": "hasFailingTests",
1221
+ "queryByDefault": false
1219
1222
  },
1220
1223
  "/*/testDefinitionMd5": {
1221
1224
  "fieldName": "failingTestDefinitionMd5",
1222
- "fieldType": "KEYWORD"
1225
+ "fieldType": "KEYWORD",
1226
+ "queryByDefault": false
1223
1227
  }
1224
1228
  },
1225
1229
  "type": {
@@ -1293,11 +1297,13 @@
1293
1297
  "/*/test": {
1294
1298
  "fieldName": "passingTests",
1295
1299
  "fieldType": "URN",
1296
- "hasValuesFieldName": "hasPassingTests"
1300
+ "hasValuesFieldName": "hasPassingTests",
1301
+ "queryByDefault": false
1297
1302
  },
1298
1303
  "/*/testDefinitionMd5": {
1299
1304
  "fieldName": "passingTestDefinitionMd5",
1300
- "fieldType": "KEYWORD"
1305
+ "fieldType": "KEYWORD",
1306
+ "queryByDefault": false
1301
1307
  }
1302
1308
  },
1303
1309
  "type": {
@@ -1496,7 +1502,16 @@
1496
1502
  {
1497
1503
  "type": "string",
1498
1504
  "name": "recipe",
1499
- "doc": "The JSON recipe to use for ingestion"
1505
+ "doc": "The JSON recipe to use for the automation"
1506
+ },
1507
+ {
1508
+ "type": [
1509
+ "null",
1510
+ "string"
1511
+ ],
1512
+ "name": "executorId",
1513
+ "default": null,
1514
+ "doc": "The id of the executor to use to execute the automation. Defaults to 'default' (runs locally)"
1500
1515
  }
1501
1516
  ]
1502
1517
  },
@@ -1672,6 +1687,7 @@
1672
1687
  "EXISTS": "Represents the relation: field exists and is non-empty, e.g. owners is not null and != [] (empty)",
1673
1688
  "GREATER_THAN": "Represent the relation greater than, e.g. ownerCount > 5",
1674
1689
  "GREATER_THAN_OR_EQUAL_TO": "Represent the relation greater than or equal to, e.g. ownerCount >= 5",
1690
+ "IEQUAL": "Represent the relation: field = value and support case insensitive values, e.g. platform = hdfs",
1675
1691
  "IN": "Represent the relation: String field is one of the array values to, e.g. name in [\"Profile\", \"Event\"]",
1676
1692
  "IS_NULL": "Represent the relation: field is null, e.g. platform is null",
1677
1693
  "LESS_THAN": "Represent the relation less than, e.g. ownerCount < 3",
@@ -1685,6 +1701,7 @@
1685
1701
  "CONTAIN",
1686
1702
  "END_WITH",
1687
1703
  "EQUAL",
1704
+ "IEQUAL",
1688
1705
  "IS_NULL",
1689
1706
  "EXISTS",
1690
1707
  "GREATER_THAN",
@@ -2821,6 +2838,7 @@
2821
2838
  "structuredProperties",
2822
2839
  "forms",
2823
2840
  "testResults",
2841
+ "access",
2824
2842
  "share",
2825
2843
  "origin",
2826
2844
  "documentation"
@@ -2990,6 +3008,8 @@
2990
3008
  "status",
2991
3009
  "globalTags",
2992
3010
  "lineageFeatures",
3011
+ "assertionSummary",
3012
+ "assertionAnalyticsRunEvent",
2993
3013
  "assertionDryRunEvent",
2994
3014
  "assertionInferenceDetails"
2995
3015
  ],
@@ -3230,6 +3250,7 @@
3230
3250
  "PROD": "Designates production fabrics",
3231
3251
  "QA": "Designates quality assurance fabrics",
3232
3252
  "RVW": "Designates review fabrics",
3253
+ "SANDBOX": "Designates sandbox fabrics",
3233
3254
  "STG": "Designates staging fabrics",
3234
3255
  "TEST": "Designates testing fabrics",
3235
3256
  "TST": "Alternative Test spelling",
@@ -3250,7 +3271,8 @@
3250
3271
  "CORP",
3251
3272
  "RVW",
3252
3273
  "PRD",
3253
- "TST"
3274
+ "TST",
3275
+ "SANDBOX"
3254
3276
  ],
3255
3277
  "doc": "Fabric group type"
3256
3278
  },
@@ -3687,7 +3709,8 @@
3687
3709
  "share",
3688
3710
  "origin",
3689
3711
  "lineageFeatures",
3690
- "documentation"
3712
+ "documentation",
3713
+ "incidentsSummary"
3691
3714
  ]
3692
3715
  },
3693
3716
  "name": "MLFeatureKey",
@@ -4066,7 +4089,8 @@
4066
4089
  "partitionsSummary",
4067
4090
  "share",
4068
4091
  "origin",
4069
- "documentation"
4092
+ "documentation",
4093
+ "entityInferenceMetadata"
4070
4094
  ],
4071
4095
  "entityDoc": "Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets."
4072
4096
  },
@@ -4384,7 +4408,8 @@
4384
4408
  "share",
4385
4409
  "origin",
4386
4410
  "lineageFeatures",
4387
- "documentation"
4411
+ "documentation",
4412
+ "incidentsSummary"
4388
4413
  ]
4389
4414
  },
4390
4415
  "name": "MLModelKey",
@@ -5331,7 +5356,9 @@
5331
5356
  "dashboard",
5332
5357
  "dataFlow",
5333
5358
  "dataJob",
5334
- "schemaField"
5359
+ "schemaField",
5360
+ "mlModel",
5361
+ "mlFeature"
5335
5362
  ],
5336
5363
  "name": "IncidentOn"
5337
5364
  }
@@ -6071,6 +6098,95 @@
6071
6098
  ],
6072
6099
  "doc": "Information about the subjects of a particular Query, i.e. the assets\nbeing queried."
6073
6100
  },
6101
+ {
6102
+ "type": "record",
6103
+ "Aspect": {
6104
+ "name": "entityInferenceMetadata"
6105
+ },
6106
+ "name": "EntityInferenceMetadata",
6107
+ "namespace": "com.linkedin.pegasus2avro.ai",
6108
+ "fields": [
6109
+ {
6110
+ "Searchable": {
6111
+ "/lastInferredAt": {
6112
+ "fieldName": "glossaryTermsLastInferredAt",
6113
+ "queryByDefault": false
6114
+ },
6115
+ "/version": {
6116
+ "fieldName": "glossaryTermsVersion",
6117
+ "queryByDefault": false
6118
+ }
6119
+ },
6120
+ "type": [
6121
+ "null",
6122
+ {
6123
+ "type": "record",
6124
+ "name": "InferenceGroupMetadata",
6125
+ "namespace": "com.linkedin.pegasus2avro.ai",
6126
+ "fields": [
6127
+ {
6128
+ "type": "long",
6129
+ "name": "lastInferredAt",
6130
+ "doc": "Timestamp of the last inference in milliseconds."
6131
+ },
6132
+ {
6133
+ "type": "int",
6134
+ "name": "version",
6135
+ "doc": "Monotonically incrementing version number. Once bumped, will re-trigger a new inference."
6136
+ }
6137
+ ],
6138
+ "doc": "Reusable metadata about a group of inferences of the same type."
6139
+ }
6140
+ ],
6141
+ "name": "glossaryTermsInference",
6142
+ "default": null,
6143
+ "doc": "Information about a group of inferences made for Glossary Terms."
6144
+ }
6145
+ ],
6146
+ "doc": "AI Inference Metadata for a specific entity."
6147
+ },
6148
+ {
6149
+ "type": "record",
6150
+ "Aspect": {
6151
+ "name": "aiInferenceMetadata"
6152
+ },
6153
+ "name": "AiInferenceMetadata",
6154
+ "namespace": "com.linkedin.pegasus2avro.ai",
6155
+ "fields": [
6156
+ {
6157
+ "type": [
6158
+ "null",
6159
+ {
6160
+ "type": "record",
6161
+ "name": "GlossaryTermsInferenceMetadata",
6162
+ "namespace": "com.linkedin.pegasus2avro.ai",
6163
+ "fields": [
6164
+ {
6165
+ "Searchable": {
6166
+ "fieldName": "glossaryTermsLastInferredAt"
6167
+ },
6168
+ "type": "long",
6169
+ "name": "lastInferredAt",
6170
+ "doc": "Timestamp of the last inference in milliseconds."
6171
+ },
6172
+ {
6173
+ "Searchable": {
6174
+ "fieldName": "glossaryTermsVersion"
6175
+ },
6176
+ "type": "long",
6177
+ "name": "version",
6178
+ "doc": "Monotonically incrementing version number. Once bumped, will re-trigger a new inference."
6179
+ }
6180
+ ]
6181
+ }
6182
+ ],
6183
+ "name": "glossaryTermsInference",
6184
+ "default": null,
6185
+ "doc": "Information about a glossary terms inference."
6186
+ }
6187
+ ],
6188
+ "doc": "AI Inference Metadata of various types."
6189
+ },
6074
6190
  {
6075
6191
  "type": "record",
6076
6192
  "Aspect": {
@@ -6414,7 +6530,31 @@
6414
6530
  ],
6415
6531
  "name": "lastModified",
6416
6532
  "default": null,
6417
- "doc": "Created Audit stamp"
6533
+ "doc": "Last Modified Audit stamp"
6534
+ },
6535
+ {
6536
+ "Searchable": {
6537
+ "fieldType": "KEYWORD"
6538
+ },
6539
+ "type": [
6540
+ {
6541
+ "type": "enum",
6542
+ "symbolDocs": {
6543
+ "DISABLED": "This structured property will not show up in search filters",
6544
+ "ENABLED": "This structured property will show up in search filters"
6545
+ },
6546
+ "name": "StructuredPropertyFilterStatus",
6547
+ "namespace": "com.linkedin.pegasus2avro.structured",
6548
+ "symbols": [
6549
+ "ENABLED",
6550
+ "DISABLED"
6551
+ ]
6552
+ },
6553
+ "null"
6554
+ ],
6555
+ "name": "filterStatus",
6556
+ "default": "DISABLED",
6557
+ "doc": "The filter status of this structured property - whether it will show up in search filters or not"
6418
6558
  }
6419
6559
  ]
6420
6560
  },
@@ -6975,6 +7115,24 @@
6975
7115
  "name": "helpLink",
6976
7116
  "default": null,
6977
7117
  "doc": "The configurable help link shown in the UI"
7118
+ },
7119
+ {
7120
+ "type": [
7121
+ "null",
7122
+ "string"
7123
+ ],
7124
+ "name": "customLogoUrl",
7125
+ "default": null,
7126
+ "doc": "The Url for a custom logo to display in the UI"
7127
+ },
7128
+ {
7129
+ "type": [
7130
+ "null",
7131
+ "string"
7132
+ ],
7133
+ "name": "customOrgName",
7134
+ "default": null,
7135
+ "doc": "A customized name for organization display preferences"
6978
7136
  }
6979
7137
  ],
6980
7138
  "doc": "Global settings for the UI"
@@ -7695,10 +7853,11 @@
7695
7853
  "FIELD",
7696
7854
  "DATA_SCHEMA",
7697
7855
  "CUSTOM"
7698
- ]
7856
+ ],
7857
+ "doc": "Type of assertion. Assertion types can evolve to span Datasets, Flows (Pipelines), Models, Features etc."
7699
7858
  },
7700
7859
  "name": "type",
7701
- "doc": "Type of assertion. Assertion types can evolve to span Datasets, Flows (Pipelines), Models, Features etc."
7860
+ "doc": "Type of assertion."
7702
7861
  },
7703
7862
  {
7704
7863
  "type": [
@@ -10495,9 +10654,9 @@
10495
10654
  },
10496
10655
  "Searchable": {
10497
10656
  "/*": {
10498
- "boostScore": 2.0,
10499
10657
  "fieldName": "isRelatedTerms",
10500
- "fieldType": "URN"
10658
+ "fieldType": "URN",
10659
+ "queryByDefault": false
10501
10660
  }
10502
10661
  },
10503
10662
  "Urn": "GlossaryTermUrn",
@@ -10524,9 +10683,9 @@
10524
10683
  },
10525
10684
  "Searchable": {
10526
10685
  "/*": {
10527
- "boostScore": 2.0,
10528
10686
  "fieldName": "hasRelatedTerms",
10529
- "fieldType": "URN"
10687
+ "fieldType": "URN",
10688
+ "queryByDefault": false
10530
10689
  }
10531
10690
  },
10532
10691
  "Urn": "GlossaryTermUrn",
@@ -10715,7 +10874,7 @@
10715
10874
  },
10716
10875
  "type": "long",
10717
10876
  "name": "timestampMillis",
10718
- "doc": "The event timestamp field as epoch at UTC in milli seconds."
10877
+ "doc": "The event timestamp field as epoch at UTC in milliseconds."
10719
10878
  },
10720
10879
  {
10721
10880
  "type": "string",
@@ -11297,23 +11456,316 @@
11297
11456
  "doc": "The Actions about an Assertion.\nIn the future, we'll likely extend this model to support additional\nparameters or options related to the assertion actions."
11298
11457
  }
11299
11458
  },
11300
- "name": "onSuccess",
11301
- "default": [],
11302
- "doc": "Actions to be executed on successful assertion run."
11459
+ "name": "onSuccess",
11460
+ "default": [],
11461
+ "doc": "Actions to be executed on successful assertion run."
11462
+ },
11463
+ {
11464
+ "type": {
11465
+ "type": "array",
11466
+ "items": "com.linkedin.pegasus2avro.assertion.AssertionAction"
11467
+ },
11468
+ "name": "onFailure",
11469
+ "default": [],
11470
+ "doc": "Actions to be executed on failed assertion run."
11471
+ }
11472
+ ],
11473
+ "doc": "The Actions about an Assertion"
11474
+ },
11475
+ {
11476
+ "type": "record",
11477
+ "Aspect": {
11478
+ "name": "assertionAnalyticsRunEvent",
11479
+ "type": "timeseries"
11480
+ },
11481
+ "name": "AssertionAnalyticsRunEvent",
11482
+ "namespace": "com.linkedin.pegasus2avro.assertion",
11483
+ "fields": [
11484
+ {
11485
+ "TimeseriesField": {},
11486
+ "type": "com.linkedin.pegasus2avro.assertion.AssertionType",
11487
+ "name": "type",
11488
+ "doc": "Type of assertion."
11489
+ },
11490
+ {
11491
+ "Searchable": {
11492
+ "/*": {
11493
+ "addToFilters": true,
11494
+ "fieldName": "parentDomains",
11495
+ "fieldType": "URN",
11496
+ "filterNameOverride": "In Parent Domain",
11497
+ "hasValuesFieldName": "hasParentDomain"
11498
+ }
11499
+ },
11500
+ "TimeseriesField": {},
11501
+ "type": [
11502
+ "null",
11503
+ {
11504
+ "type": "array",
11505
+ "items": "string"
11506
+ }
11507
+ ],
11508
+ "name": "parentDomains",
11509
+ "default": null,
11510
+ "doc": "The Domains attached to the entity's parent Asset"
11511
+ },
11512
+ {
11513
+ "Searchable": {
11514
+ "/*": {
11515
+ "addToFilters": true,
11516
+ "fieldName": "domains",
11517
+ "fieldType": "URN",
11518
+ "filterNameOverride": "In Parent Data Product",
11519
+ "hasValuesFieldName": "hasParentDataProduct"
11520
+ }
11521
+ },
11522
+ "TimeseriesField": {},
11523
+ "type": [
11524
+ "null",
11525
+ {
11526
+ "type": "array",
11527
+ "items": "string"
11528
+ }
11529
+ ],
11530
+ "name": "parentDataProducts",
11531
+ "default": null,
11532
+ "doc": "The Data Products attached to the entity's parent Asset"
11533
+ },
11534
+ {
11535
+ "Searchable": {
11536
+ "/*/tag": {
11537
+ "addToFilters": true,
11538
+ "boostScore": 0.5,
11539
+ "fieldName": "tags",
11540
+ "fieldType": "URN",
11541
+ "filterNameOverride": "Parent Tagged With",
11542
+ "hasValuesFieldName": "hasParentTags",
11543
+ "queryByDefault": true
11544
+ }
11545
+ },
11546
+ "TimeseriesField": {},
11547
+ "type": [
11548
+ "null",
11549
+ {
11550
+ "type": "array",
11551
+ "items": "com.linkedin.pegasus2avro.common.TagAssociation"
11552
+ }
11553
+ ],
11554
+ "name": "parentGlobalTags",
11555
+ "default": null,
11556
+ "doc": "The Tags attached to the entity's parent Asset"
11557
+ },
11558
+ {
11559
+ "Searchable": {
11560
+ "/*": {
11561
+ "addToFilters": true,
11562
+ "fieldName": "parentOwners",
11563
+ "fieldType": "URN",
11564
+ "filterNameOverride": "Parent Owned By",
11565
+ "hasValuesFieldName": "hasParentOwners",
11566
+ "queryByDefault": false
11567
+ }
11568
+ },
11569
+ "TimeseriesField": {},
11570
+ "type": [
11571
+ "null",
11572
+ {
11573
+ "type": "array",
11574
+ "items": "string"
11575
+ }
11576
+ ],
11577
+ "name": "parentOwners",
11578
+ "default": null,
11579
+ "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.)"
11580
+ },
11581
+ {
11582
+ "Searchable": {
11583
+ "addToFilters": true,
11584
+ "fieldType": "URN",
11585
+ "filterNameOverride": "Parent Platform"
11586
+ },
11587
+ "TimeseriesField": {},
11588
+ "java": {
11589
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
11590
+ },
11591
+ "Urn": "Urn",
11592
+ "type": [
11593
+ "null",
11594
+ "string"
11595
+ ],
11596
+ "name": "parentDataPlatform",
11597
+ "default": null,
11598
+ "doc": "Data Platform for parent"
11599
+ },
11600
+ {
11601
+ "Searchable": {
11602
+ "addToFilters": true,
11603
+ "fieldName": "parentPlatformInstance",
11604
+ "fieldType": "URN",
11605
+ "filterNameOverride": "Parent Platform Instance"
11606
+ },
11607
+ "TimeseriesField": {},
11608
+ "java": {
11609
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
11610
+ },
11611
+ "Urn": "Urn",
11612
+ "type": [
11613
+ "null",
11614
+ "string"
11615
+ ],
11616
+ "name": "parentDataPlatformInstance",
11617
+ "default": null,
11618
+ "doc": "Instance of the parent's data platform (e.g. db instance)"
11619
+ },
11620
+ {
11621
+ "type": "long",
11622
+ "name": "timestampMillis",
11623
+ "doc": "The event timestamp field as epoch at UTC in milliseconds."
11624
+ },
11625
+ {
11626
+ "type": "string",
11627
+ "name": "runId",
11628
+ "doc": " Native (platform-specific) identifier for this run"
11629
+ },
11630
+ {
11631
+ "TimeseriesField": {},
11632
+ "java": {
11633
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
11634
+ },
11635
+ "Urn": "Urn",
11636
+ "type": "string",
11637
+ "name": "asserteeUrn"
11638
+ },
11639
+ {
11640
+ "TimeseriesField": {},
11641
+ "java": {
11642
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
11643
+ },
11644
+ "Urn": "Urn",
11645
+ "type": "string",
11646
+ "name": "assertionUrn"
11647
+ },
11648
+ {
11649
+ "TimeseriesField": {},
11650
+ "type": "com.linkedin.pegasus2avro.assertion.AssertionRunStatus",
11651
+ "name": "status",
11652
+ "doc": "The status of the assertion run as per this timeseries event."
11653
+ },
11654
+ {
11655
+ "type": [
11656
+ "null",
11657
+ "com.linkedin.pegasus2avro.assertion.AssertionResult"
11658
+ ],
11659
+ "name": "result",
11660
+ "default": null,
11661
+ "doc": "Results of assertion, present if the status is COMPLETE"
11662
+ },
11663
+ {
11664
+ "type": [
11665
+ "null",
11666
+ {
11667
+ "type": "map",
11668
+ "values": "string"
11669
+ }
11670
+ ],
11671
+ "name": "runtimeContext",
11672
+ "default": null,
11673
+ "doc": "Runtime parameters of evaluation"
11674
+ },
11675
+ {
11676
+ "type": [
11677
+ "null",
11678
+ "com.linkedin.pegasus2avro.assertion.BatchSpec"
11679
+ ],
11680
+ "name": "batchSpec",
11681
+ "default": null,
11682
+ "doc": "Specification of the batch which this run is evaluating"
11683
+ },
11684
+ {
11685
+ "type": [
11686
+ "null",
11687
+ "com.linkedin.pegasus2avro.timeseries.TimeWindowSize"
11688
+ ],
11689
+ "name": "eventGranularity",
11690
+ "default": null,
11691
+ "doc": "Granularity of the event if applicable"
11692
+ },
11693
+ {
11694
+ "type": [
11695
+ "com.linkedin.pegasus2avro.timeseries.PartitionSpec",
11696
+ "null"
11697
+ ],
11698
+ "name": "partitionSpec",
11699
+ "default": {
11700
+ "partition": "FULL_TABLE_SNAPSHOT",
11701
+ "type": "FULL_TABLE",
11702
+ "timePartition": null
11703
+ },
11704
+ "doc": "The optional partition specification."
11705
+ },
11706
+ {
11707
+ "type": [
11708
+ "null",
11709
+ "string"
11710
+ ],
11711
+ "name": "messageId",
11712
+ "default": null,
11713
+ "doc": "The optional messageId, if provided serves as a custom user-defined unique identifier for an aspect value."
11714
+ }
11715
+ ],
11716
+ "doc": "An event representing the current status of evaluating an assertion on a batch.\nThis should be derrived from {@link AssertionRunEvent}.\n\nIt represents the subset of data used for analytics, and hydrates extra fields for filtering"
11717
+ },
11718
+ "com.linkedin.pegasus2avro.assertion.AssertionInferenceDetails",
11719
+ {
11720
+ "type": "record",
11721
+ "Aspect": {
11722
+ "name": "assertionSummary"
11723
+ },
11724
+ "name": "AssertionSummary",
11725
+ "namespace": "com.linkedin.pegasus2avro.assertion",
11726
+ "fields": [
11727
+ {
11728
+ "Searchable": {
11729
+ "fieldName": "lastFailedAtMillis",
11730
+ "fieldType": "DATETIME"
11731
+ },
11732
+ "type": [
11733
+ "null",
11734
+ "long"
11735
+ ],
11736
+ "name": "lastFailedAtMillis",
11737
+ "default": null,
11738
+ "doc": "The last failure event timestamp field as epoch at UTC in milliseconds."
11739
+ },
11740
+ {
11741
+ "Searchable": {
11742
+ "fieldName": "lastErroredAtMillis",
11743
+ "fieldType": "DATETIME"
11744
+ },
11745
+ "type": [
11746
+ "null",
11747
+ "long"
11748
+ ],
11749
+ "name": "lastErroredAtMillis",
11750
+ "default": null,
11751
+ "doc": "The last error event timestamp field as epoch at UTC in milliseconds."
11303
11752
  },
11304
11753
  {
11305
- "type": {
11306
- "type": "array",
11307
- "items": "com.linkedin.pegasus2avro.assertion.AssertionAction"
11754
+ "Searchable": {
11755
+ "fieldName": "lastPassedAtMillis",
11756
+ "fieldType": "DATETIME"
11308
11757
  },
11309
- "name": "onFailure",
11310
- "default": [],
11311
- "doc": "Actions to be executed on failed assertion run."
11758
+ "type": [
11759
+ "null",
11760
+ "long"
11761
+ ],
11762
+ "name": "lastPassedAtMillis",
11763
+ "default": null,
11764
+ "doc": "The last pass event timestamp field as epoch at UTC in milliseconds."
11312
11765
  }
11313
11766
  ],
11314
- "doc": "The Actions about an Assertion"
11767
+ "doc": "Derived.\nTracks the latest summary details of an assertion."
11315
11768
  },
11316
- "com.linkedin.pegasus2avro.assertion.AssertionInferenceDetails",
11317
11769
  "com.linkedin.pegasus2avro.assertion.AssertionInfo",
11318
11770
  {
11319
11771
  "type": "record",
@@ -11381,7 +11833,8 @@
11381
11833
  "/*/destination": {
11382
11834
  "fieldName": "shareDestinations",
11383
11835
  "fieldType": "URN",
11384
- "hasValuesFieldName": "hasShareDestinations"
11836
+ "hasValuesFieldName": "hasShareDestinations",
11837
+ "queryByDefault": false
11385
11838
  }
11386
11839
  },
11387
11840
  "type": {
@@ -11667,7 +12120,8 @@
11667
12120
  "fieldName": "roles",
11668
12121
  "fieldType": "URN",
11669
12122
  "filterNameOverride": "Role",
11670
- "hasValuesFieldName": "hasRoles"
12123
+ "hasValuesFieldName": "hasRoles",
12124
+ "queryByDefault": false
11671
12125
  },
11672
12126
  "java": {
11673
12127
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
@@ -11712,20 +12166,24 @@
11712
12166
  "Searchable": {
11713
12167
  "/*/lastResultAt": {
11714
12168
  "fieldName": "activeAnomalyResultTimes",
11715
- "fieldType": "DATETIME"
12169
+ "fieldType": "DATETIME",
12170
+ "queryByDefault": false
11716
12171
  },
11717
12172
  "/*/source": {
11718
- "fieldName": "activeAnomalySources"
12173
+ "fieldName": "activeAnomalySources",
12174
+ "queryByDefault": false
11719
12175
  },
11720
12176
  "/*/type": {
11721
12177
  "fieldName": "activeAnomalyTypes",
11722
- "fieldType": "KEYWORD"
12178
+ "fieldType": "KEYWORD",
12179
+ "queryByDefault": false
11723
12180
  },
11724
12181
  "/*/urn": {
11725
12182
  "fieldName": "activeAnomalies",
11726
12183
  "fieldType": "URN",
11727
12184
  "hasValuesFieldName": "hasActiveAnomalies",
11728
- "numValuesFieldName": "numActiveAnomalies"
12185
+ "numValuesFieldName": "numActiveAnomalies",
12186
+ "queryByDefault": false
11729
12187
  }
11730
12188
  },
11731
12189
  "type": {
@@ -11783,20 +12241,24 @@
11783
12241
  "Searchable": {
11784
12242
  "/*/lastResultAt": {
11785
12243
  "fieldName": "resolvedAnomalyResultTimes",
11786
- "fieldType": "DATETIME"
12244
+ "fieldType": "DATETIME",
12245
+ "queryByDefault": false
11787
12246
  },
11788
12247
  "/*/source": {
11789
- "fieldName": "resolvedAnomalySources"
12248
+ "fieldName": "resolvedAnomalySources",
12249
+ "queryByDefault": false
11790
12250
  },
11791
12251
  "/*/type": {
11792
12252
  "fieldName": "resolvedAnomalyTypes",
11793
- "fieldType": "KEYWORD"
12253
+ "fieldType": "KEYWORD",
12254
+ "queryByDefault": false
11794
12255
  },
11795
12256
  "/*/urn": {
11796
12257
  "fieldName": "resolvedAnomalies",
11797
12258
  "fieldType": "URN",
11798
12259
  "hasValuesFieldName": "hasResolvedAnomalies",
11799
- "numValuesFieldName": "numResolvedAnomalies"
12260
+ "numValuesFieldName": "numResolvedAnomalies",
12261
+ "queryByDefault": false
11800
12262
  }
11801
12263
  },
11802
12264
  "type": {
@@ -11920,9 +12382,6 @@
11920
12382
  "doc": "How many rows were affected by this operation."
11921
12383
  },
11922
12384
  {
11923
- "TimeseriesFieldCollection": {
11924
- "key": "datasetName"
11925
- },
11926
12385
  "Urn": "Urn",
11927
12386
  "urn_is_array": true,
11928
12387
  "type": [
@@ -12143,19 +12602,23 @@
12143
12602
  "Searchable": {
12144
12603
  "/*/completedPrompts/*/id": {
12145
12604
  "fieldName": "incompleteFormsCompletedPromptIds",
12146
- "fieldType": "KEYWORD"
12605
+ "fieldType": "KEYWORD",
12606
+ "queryByDefault": false
12147
12607
  },
12148
12608
  "/*/completedPrompts/*/lastModified/time": {
12149
12609
  "fieldName": "incompleteFormsCompletedPromptResponseTimes",
12150
- "fieldType": "DATETIME"
12610
+ "fieldType": "DATETIME",
12611
+ "queryByDefault": false
12151
12612
  },
12152
12613
  "/*/incompletePrompts/*/id": {
12153
12614
  "fieldName": "incompleteFormsIncompletePromptIds",
12154
- "fieldType": "KEYWORD"
12615
+ "fieldType": "KEYWORD",
12616
+ "queryByDefault": false
12155
12617
  },
12156
12618
  "/*/urn": {
12157
12619
  "fieldName": "incompleteForms",
12158
- "fieldType": "URN"
12620
+ "fieldType": "URN",
12621
+ "queryByDefault": false
12159
12622
  }
12160
12623
  },
12161
12624
  "type": {
@@ -12461,19 +12924,23 @@
12461
12924
  "Searchable": {
12462
12925
  "/*/completedPrompts/*/id": {
12463
12926
  "fieldName": "completedFormsCompletedPromptIds",
12464
- "fieldType": "KEYWORD"
12927
+ "fieldType": "KEYWORD",
12928
+ "queryByDefault": false
12465
12929
  },
12466
12930
  "/*/completedPrompts/*/lastModified/time": {
12467
12931
  "fieldName": "completedFormsCompletedPromptResponseTimes",
12468
- "fieldType": "DATETIME"
12932
+ "fieldType": "DATETIME",
12933
+ "queryByDefault": false
12469
12934
  },
12470
12935
  "/*/incompletePrompts/*/id": {
12471
12936
  "fieldName": "completedFormsIncompletePromptIds",
12472
- "fieldType": "KEYWORD"
12937
+ "fieldType": "KEYWORD",
12938
+ "queryByDefault": false
12473
12939
  },
12474
12940
  "/*/urn": {
12475
12941
  "fieldName": "completedForms",
12476
- "fieldType": "URN"
12942
+ "fieldType": "URN",
12943
+ "queryByDefault": false
12477
12944
  }
12478
12945
  },
12479
12946
  "type": {
@@ -12487,7 +12954,8 @@
12487
12954
  "Searchable": {
12488
12955
  "/*/form": {
12489
12956
  "fieldName": "verifiedForms",
12490
- "fieldType": "URN"
12957
+ "fieldType": "URN",
12958
+ "queryByDefault": false
12491
12959
  }
12492
12960
  },
12493
12961
  "type": {
@@ -12729,20 +13197,24 @@
12729
13197
  "Searchable": {
12730
13198
  "/*/lastResultAt": {
12731
13199
  "fieldName": "passingAssertionResultTimes",
12732
- "fieldType": "DATETIME"
13200
+ "fieldType": "DATETIME",
13201
+ "queryByDefault": false
12733
13202
  },
12734
13203
  "/*/source": {
12735
- "fieldName": "passingAssertionSources"
13204
+ "fieldName": "passingAssertionSources",
13205
+ "queryByDefault": false
12736
13206
  },
12737
13207
  "/*/type": {
12738
13208
  "fieldName": "passingAssertionTypes",
12739
- "fieldType": "KEYWORD"
13209
+ "fieldType": "KEYWORD",
13210
+ "queryByDefault": false
12740
13211
  },
12741
13212
  "/*/urn": {
12742
13213
  "fieldName": "passingAssertions",
12743
13214
  "fieldType": "URN",
12744
13215
  "hasValuesFieldName": "hasPassingAssertions",
12745
- "numValuesFieldName": "numPassingAssertions"
13216
+ "numValuesFieldName": "numPassingAssertions",
13217
+ "queryByDefault": false
12746
13218
  }
12747
13219
  },
12748
13220
  "type": {
@@ -12800,21 +13272,25 @@
12800
13272
  "Searchable": {
12801
13273
  "/*/lastResultAt": {
12802
13274
  "fieldName": "failingAssertionResultTimes",
12803
- "fieldType": "DATETIME"
13275
+ "fieldType": "DATETIME",
13276
+ "queryByDefault": false
12804
13277
  },
12805
13278
  "/*/source": {
12806
- "fieldName": "failingAssertionSources"
13279
+ "fieldName": "failingAssertionSources",
13280
+ "queryByDefault": false
12807
13281
  },
12808
13282
  "/*/type": {
12809
13283
  "fieldName": "failingAssertionType",
12810
- "fieldType": "KEYWORD"
13284
+ "fieldType": "KEYWORD",
13285
+ "queryByDefault": false
12811
13286
  },
12812
13287
  "/*/urn": {
12813
13288
  "addHasValuesToFilters": true,
12814
13289
  "fieldName": "failingAssertions",
12815
13290
  "fieldType": "URN",
12816
13291
  "hasValuesFieldName": "hasFailingAssertions",
12817
- "numValuesFieldName": "numFailingAssertions"
13292
+ "numValuesFieldName": "numFailingAssertions",
13293
+ "queryByDefault": false
12818
13294
  }
12819
13295
  },
12820
13296
  "type": {
@@ -12824,6 +13300,45 @@
12824
13300
  "name": "failingAssertionDetails",
12825
13301
  "default": [],
12826
13302
  "doc": "Summary details about the set of failing assertions"
13303
+ },
13304
+ {
13305
+ "Relationship": {
13306
+ "/*/urn": {
13307
+ "entityTypes": [
13308
+ "assertion"
13309
+ ],
13310
+ "name": "ErroringAssertions"
13311
+ }
13312
+ },
13313
+ "Searchable": {
13314
+ "/*/lastResultAt": {
13315
+ "fieldName": "erroringAssertionResultTimes",
13316
+ "fieldType": "DATETIME"
13317
+ },
13318
+ "/*/source": {
13319
+ "fieldName": "erroringAssertionSources",
13320
+ "queryByDefault": false
13321
+ },
13322
+ "/*/type": {
13323
+ "fieldName": "erroringAssertionType",
13324
+ "fieldType": "KEYWORD"
13325
+ },
13326
+ "/*/urn": {
13327
+ "addHasValuesToFilters": true,
13328
+ "fieldName": "erroringAssertions",
13329
+ "fieldType": "URN",
13330
+ "hasValuesFieldName": "hasErroringAssertions",
13331
+ "numValuesFieldName": "numErroringAssertions",
13332
+ "queryByDefault": false
13333
+ }
13334
+ },
13335
+ "type": {
13336
+ "type": "array",
13337
+ "items": "com.linkedin.pegasus2avro.common.AssertionSummaryDetails"
13338
+ },
13339
+ "name": "erroringAssertionDetails",
13340
+ "default": [],
13341
+ "doc": "Summary details about the set of erroring assertions"
12827
13342
  }
12828
13343
  ],
12829
13344
  "doc": "Summary related to entity assertions"
@@ -13034,7 +13549,7 @@
13034
13549
  "addToFilters": true,
13035
13550
  "fieldType": "KEYWORD",
13036
13551
  "filterNameOverride": "Sub Type",
13037
- "queryByDefault": true
13552
+ "queryByDefault": false
13038
13553
  }
13039
13554
  },
13040
13555
  "type": {
@@ -13134,7 +13649,8 @@
13134
13649
  "fieldName": "resolvedIncidents",
13135
13650
  "fieldType": "URN",
13136
13651
  "hasValuesFieldName": "hasResolvedIncidents",
13137
- "numValuesFieldName": "numResolvedIncidents"
13652
+ "numValuesFieldName": "numResolvedIncidents",
13653
+ "queryByDefault": false
13138
13654
  }
13139
13655
  },
13140
13656
  "type": {
@@ -13216,7 +13732,8 @@
13216
13732
  "fieldName": "activeIncidents",
13217
13733
  "fieldType": "URN",
13218
13734
  "hasValuesFieldName": "hasActiveIncidents",
13219
- "numValuesFieldName": "numActiveIncidents"
13735
+ "numValuesFieldName": "numActiveIncidents",
13736
+ "queryByDefault": false
13220
13737
  }
13221
13738
  },
13222
13739
  "type": {
@@ -14190,6 +14707,7 @@
14190
14707
  ],
14191
14708
  "name": "PostTarget"
14192
14709
  },
14710
+ "Searchable": {},
14193
14711
  "java": {
14194
14712
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
14195
14713
  },
@@ -14209,7 +14727,7 @@
14209
14727
  ],
14210
14728
  "name": "target",
14211
14729
  "default": null,
14212
- "doc": "Optional URN that the post is associated with."
14730
+ "doc": "Optional Entity URN that the post is associated with."
14213
14731
  }
14214
14732
  ],
14215
14733
  "doc": "Information about a DataHub Post."
@@ -16200,6 +16718,29 @@
16200
16718
  "default": null,
16201
16719
  "doc": "Datasets consumed by a dashboard"
16202
16720
  },
16721
+ {
16722
+ "Relationship": {
16723
+ "/*/destinationUrn": {
16724
+ "createdActor": "datasetEdges/*/created/actor",
16725
+ "createdOn": "datasetEdges/*/created/time",
16726
+ "entityTypes": [
16727
+ "dashboard"
16728
+ ],
16729
+ "isLineage": true,
16730
+ "name": "DashboardContainsDashboard",
16731
+ "properties": "datasetEdges/*/properties",
16732
+ "updatedActor": "datasetEdges/*/lastModified/actor",
16733
+ "updatedOn": "datasetEdges/*/lastModified/time"
16734
+ }
16735
+ },
16736
+ "type": {
16737
+ "type": "array",
16738
+ "items": "com.linkedin.pegasus2avro.common.Edge"
16739
+ },
16740
+ "name": "dashboards",
16741
+ "default": [],
16742
+ "doc": "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard."
16743
+ },
16203
16744
  {
16204
16745
  "Searchable": {
16205
16746
  "/lastModified/time": {
@@ -16293,7 +16834,9 @@
16293
16834
  "doc": "Access level for the dashboard"
16294
16835
  },
16295
16836
  {
16296
- "Searchable": {},
16837
+ "Searchable": {
16838
+ "queryByDefault": false
16839
+ },
16297
16840
  "type": [
16298
16841
  "null",
16299
16842
  "long"
@@ -16303,7 +16846,9 @@
16303
16846
  "doc": "The time when this dashboard last refreshed"
16304
16847
  },
16305
16848
  {
16306
- "Searchable": {},
16849
+ "Searchable": {
16850
+ "queryByDefault": false
16851
+ },
16307
16852
  "java": {
16308
16853
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
16309
16854
  },
@@ -18663,12 +19208,14 @@
18663
19208
  "type": {
18664
19209
  "type": "enum",
18665
19210
  "symbolDocs": {
18666
- "EQUALS": "Whether the field matches the value"
19211
+ "EQUALS": "Whether the field matches the value",
19212
+ "STARTS_WITH": "Whether the field value starts with the value"
18667
19213
  },
18668
19214
  "name": "PolicyMatchCondition",
18669
19215
  "namespace": "com.linkedin.pegasus2avro.policy",
18670
19216
  "symbols": [
18671
- "EQUALS"
19217
+ "EQUALS",
19218
+ "STARTS_WITH"
18672
19219
  ],
18673
19220
  "doc": "The matching condition in a filter criterion"
18674
19221
  },
@@ -19194,7 +19741,7 @@
19194
19741
  "Searchable": {
19195
19742
  "fieldName": "managerLdap",
19196
19743
  "fieldType": "URN",
19197
- "queryByDefault": true
19744
+ "queryByDefault": false
19198
19745
  },
19199
19746
  "java": {
19200
19747
  "class": "com.linkedin.pegasus2avro.common.urn.CorpuserUrn"
@@ -20105,6 +20652,7 @@
20105
20652
  "fields": [
20106
20653
  {
20107
20654
  "Searchable": {
20655
+ "addToFilters": true,
20108
20656
  "fieldType": "KEYWORD"
20109
20657
  },
20110
20658
  "type": "string",
@@ -20222,6 +20770,9 @@
20222
20770
  "namespace": "com.linkedin.pegasus2avro.actionrequest",
20223
20771
  "fields": [
20224
20772
  {
20773
+ "Searchable": {
20774
+ "addToFilters": true
20775
+ },
20225
20776
  "java": {
20226
20777
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
20227
20778
  },
@@ -20246,6 +20797,9 @@
20246
20797
  "namespace": "com.linkedin.pegasus2avro.actionrequest",
20247
20798
  "fields": [
20248
20799
  {
20800
+ "Searchable": {
20801
+ "addToFilters": true
20802
+ },
20249
20803
  "java": {
20250
20804
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
20251
20805
  },
@@ -20539,6 +21093,75 @@
20539
21093
  "name": "dueDate",
20540
21094
  "default": null,
20541
21095
  "doc": "The time at which the request is due"
21096
+ },
21097
+ {
21098
+ "Searchable": {
21099
+ "addToFilters": true
21100
+ },
21101
+ "type": [
21102
+ {
21103
+ "type": "enum",
21104
+ "symbolDocs": {
21105
+ "INFERRED": "The Action Request was inferred by an inference pipeline, e.g. DataHub AI.",
21106
+ "MANUAL": "The Action Request was created by the user or group via the API or UI"
21107
+ },
21108
+ "name": "ActionRequestOrigin",
21109
+ "namespace": "com.linkedin.pegasus2avro.actionrequest",
21110
+ "symbols": [
21111
+ "MANUAL",
21112
+ "INFERRED"
21113
+ ],
21114
+ "doc": "The origin type of an Action Request"
21115
+ },
21116
+ "null"
21117
+ ],
21118
+ "name": "origin",
21119
+ "default": "MANUAL",
21120
+ "doc": "The origin of the action request"
21121
+ },
21122
+ {
21123
+ "Searchable": {
21124
+ "/confidenceLevel": {
21125
+ "addToFilters": true,
21126
+ "fieldName": "inferenceConfidenceLevel"
21127
+ },
21128
+ "/lastInferredAt": {
21129
+ "fieldName": "inferenceLastInferredAt"
21130
+ }
21131
+ },
21132
+ "type": [
21133
+ "null",
21134
+ {
21135
+ "type": "record",
21136
+ "name": "InferenceMetadata",
21137
+ "namespace": "com.linkedin.pegasus2avro.ai",
21138
+ "fields": [
21139
+ {
21140
+ "type": "long",
21141
+ "name": "lastInferredAt",
21142
+ "doc": "Timestamp of the last inference in milliseconds."
21143
+ },
21144
+ {
21145
+ "type": "int",
21146
+ "name": "version",
21147
+ "doc": "Monotonically incrementing version number. Once bumped, will re-trigger a new inference."
21148
+ },
21149
+ {
21150
+ "type": [
21151
+ "null",
21152
+ "int"
21153
+ ],
21154
+ "name": "confidenceLevel",
21155
+ "default": null,
21156
+ "doc": "Numeric confidence level of the inference that was made.\n\n 0 = Low Confidence\n 1 = Medium Confidence\n 2 = High Confidence"
21157
+ }
21158
+ ],
21159
+ "doc": "Reusable metadata about an individual inference - i.e. a single glossary term, tag, description, etc."
21160
+ }
21161
+ ],
21162
+ "name": "inferenceMetadata",
21163
+ "default": null,
21164
+ "doc": "Additional inference metadata. Optionally provided if the origin is INFERRED."
20542
21165
  }
20543
21166
  ],
20544
21167
  "doc": "The status of the action request - e.g. accepted, rejected, pending, etc"
@@ -24723,6 +25346,10 @@
24723
25346
  "namespace": "com.linkedin.pegasus2avro.form",
24724
25347
  "fields": [
24725
25348
  {
25349
+ "Searchable": {
25350
+ "fieldName": "structuredPropertyPromptUrns",
25351
+ "fieldType": "URN"
25352
+ },
24726
25353
  "java": {
24727
25354
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
24728
25355
  },
@@ -24766,6 +25393,15 @@
24766
25393
  "doc": "Whether one or multiple owners are accepted as a response."
24767
25394
  },
24768
25395
  {
25396
+ "Relationship": {
25397
+ "/*": {
25398
+ "entityTypes": [
25399
+ "corpuser",
25400
+ "corpGroup"
25401
+ ],
25402
+ "name": "allowedOwnerOn"
25403
+ }
25404
+ },
24769
25405
  "Urn": "Urn",
24770
25406
  "urn_is_array": true,
24771
25407
  "type": [
@@ -24780,6 +25416,14 @@
24780
25416
  "doc": "An optional list of allowed owners to choose from"
24781
25417
  },
24782
25418
  {
25419
+ "Relationship": {
25420
+ "/*": {
25421
+ "entityTypes": [
25422
+ "ownershipType"
25423
+ ],
25424
+ "name": "allowedOwnershipTypeOn"
25425
+ }
25426
+ },
24783
25427
  "Urn": "Urn",
24784
25428
  "urn_is_array": true,
24785
25429
  "type": [
@@ -24816,6 +25460,14 @@
24816
25460
  "doc": "Whether one or multiple terms are accepted as a response."
24817
25461
  },
24818
25462
  {
25463
+ "Relationship": {
25464
+ "/*": {
25465
+ "entityTypes": [
25466
+ "glossaryTerm"
25467
+ ],
25468
+ "name": "allowedTermOn"
25469
+ }
25470
+ },
24819
25471
  "Urn": "Urn",
24820
25472
  "urn_is_array": true,
24821
25473
  "type": [
@@ -24830,6 +25482,14 @@
24830
25482
  "doc": "An optional list of allowed glossary terms to choose from"
24831
25483
  },
24832
25484
  {
25485
+ "Relationship": {
25486
+ "/*": {
25487
+ "entityTypes": [
25488
+ "glossaryNode"
25489
+ ],
25490
+ "name": "allowedTermGroupOn"
25491
+ }
25492
+ },
24833
25493
  "Urn": "Urn",
24834
25494
  "urn_is_array": true,
24835
25495
  "type": [
@@ -24860,6 +25520,14 @@
24860
25520
  "namespace": "com.linkedin.pegasus2avro.form",
24861
25521
  "fields": [
24862
25522
  {
25523
+ "Relationship": {
25524
+ "/*": {
25525
+ "entityTypes": [
25526
+ "domain"
25527
+ ],
25528
+ "name": "allowedDomainOn"
25529
+ }
25530
+ },
24863
25531
  "Urn": "Urn",
24864
25532
  "urn_is_array": true,
24865
25533
  "type": [
@@ -25007,6 +25675,36 @@
25007
25675
  "lastModified": null
25008
25676
  },
25009
25677
  "doc": "Information about the state and status of this form"
25678
+ },
25679
+ {
25680
+ "Searchable": {
25681
+ "/time": {
25682
+ "fieldName": "createdTime",
25683
+ "fieldType": "DATETIME"
25684
+ }
25685
+ },
25686
+ "type": [
25687
+ "null",
25688
+ "com.linkedin.pegasus2avro.common.AuditStamp"
25689
+ ],
25690
+ "name": "created",
25691
+ "default": null,
25692
+ "doc": "Created Audit stamp"
25693
+ },
25694
+ {
25695
+ "Searchable": {
25696
+ "/time": {
25697
+ "fieldName": "lastModified",
25698
+ "fieldType": "DATETIME"
25699
+ }
25700
+ },
25701
+ "type": [
25702
+ "null",
25703
+ "com.linkedin.pegasus2avro.common.AuditStamp"
25704
+ ],
25705
+ "name": "lastModified",
25706
+ "default": null,
25707
+ "doc": "Last Modified Audit stamp"
25010
25708
  }
25011
25709
  ],
25012
25710
  "doc": "Information about a form to help with filling out metadata on entities."
@@ -25182,7 +25880,7 @@
25182
25880
  },
25183
25881
  "type": "string",
25184
25882
  "name": "resourceType",
25185
- "doc": "The type of the resource. \nThis is used to differentiate between different types of resources.\nPossible values specified in {@link com.linkedin.pegasus2avro.platformresource.PlatformResourceType}"
25883
+ "doc": "The type of the resource. \nIntended as a loose specifier of the generic type of the resource.\nProducer is not forced to conform to a specific set of symbols for\nresource types.\nThe @PlatformResourceType enumeration offers a paved path for agreed upon\ncommon terms, but is not required to be followed.\nExample values could be: conversation, user, grant, etc.\nResource types are indexed for ease of access. \ne.g. Get me all platform resources of type user for the platform looker"
25186
25884
  },
25187
25885
  {
25188
25886
  "Searchable": {
@@ -25190,7 +25888,7 @@
25190
25888
  },
25191
25889
  "type": "string",
25192
25890
  "name": "primaryKey",
25193
- "doc": "The primary key for this platform resource.\nI.e., for a slack member this would be the memberID."
25891
+ "doc": "The primary key for this platform resource.\ne.g. for a slack member this would be the memberID.\nprimary keys specified here don't need to include any additional specificity for the\n dataPlatform\nThe @PlatformResourceKey is supposed to represent that"
25194
25892
  },
25195
25893
  {
25196
25894
  "Searchable": {
@@ -25287,7 +25985,8 @@
25287
25985
  "dataPlatformInstance",
25288
25986
  "platformResourceInfo",
25289
25987
  "status"
25290
- ]
25988
+ ],
25989
+ "entityDoc": "Platform Resources are assets that are unmodeled and stored outside of the core data model. They are stored in DataHub primarily to help with application-specific use-cases that are not sufficiently generalized to move into the core data model."
25291
25990
  },
25292
25991
  "name": "PlatformResourceKey",
25293
25992
  "namespace": "com.linkedin.pegasus2avro.platformresource",
@@ -25295,10 +25994,10 @@
25295
25994
  {
25296
25995
  "type": "string",
25297
25996
  "name": "id",
25298
- "doc": "A unique id for this entity. Generated on the server side at entity creation time.\nFormat will be a guid."
25997
+ "doc": "A unique id for this entity.\nThere are no constraints on the format of this id, but most implementations\nwill choose to use a UUID.\nThis id should be globally unique for the entire DataHub instance and\n uniquely identify the resource that is being stored, so most\n implementations\nwill combine logical attributes like platform name, platform instance,\nplatform-specific-id and the resource type to create the unique id.\ne.g. slack:slack-instance:slack-user-id:user-info \nor guid(slack, slack-instance, slack-user-id, user-info) etc."
25299
25998
  }
25300
25999
  ],
25301
- "doc": "Key for Platform Resource.\nThese entities are for miscelaneous data that is used in non-core parts of the system.\nFor instance, if we want to persist & retrieve data from auxiliary integrations such as Slack or Microsoft Teams."
26000
+ "doc": "Key for a Platform Resource.\nPlatform Resources are assets that are not part of the core data model.\nThey are stored in DataHub primarily to help with application-specific\nuse-cases that are not sufficiently generalized to move into the core data model.\nFor instance, if we want to persist & retrieve additional user profile data \nfrom auxiliary integrations such as Slack or Microsoft Teams for resolving details later."
25302
26001
  },
25303
26002
  {
25304
26003
  "type": "record",