acryl-datahub-cloud 0.3.11.1rc8__py3-none-any.whl → 0.3.12__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 (94) 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 +569 -0
  5. acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  9. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  10. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +29 -13
  11. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  12. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +49 -40
  13. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2011 -1955
  14. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  15. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
  16. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  17. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  18. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
  19. acryl_datahub_cloud/metadata/schema.avsc +25413 -25425
  20. acryl_datahub_cloud/metadata/schema_classes.py +1316 -791
  21. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  22. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +72 -0
  23. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  24. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +223 -202
  25. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +36 -7
  26. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  27. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +40 -8
  28. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
  29. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +14 -0
  30. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  31. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  32. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  33. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  34. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +2 -1
  35. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  36. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  37. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  38. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  39. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  40. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
  41. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +1 -1
  42. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
  43. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  44. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  45. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  46. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  47. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  48. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +22 -0
  49. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
  50. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
  51. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
  52. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -0
  53. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +1 -0
  54. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
  55. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -1
  56. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
  57. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +39 -10
  58. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
  59. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  60. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
  61. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  62. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +3 -3
  63. acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
  64. acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
  65. acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
  66. acryl_datahub_cloud/notifications/__init__.py +0 -0
  67. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  68. acryl_datahub_cloud/sdk/__init__.py +39 -0
  69. acryl_datahub_cloud/sdk/assertion/__init__.py +0 -0
  70. acryl_datahub_cloud/sdk/assertion/assertion_base.py +1467 -0
  71. acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +224 -0
  72. acryl_datahub_cloud/sdk/assertion/types.py +20 -0
  73. acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
  74. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1648 -0
  75. acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +258 -0
  76. acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +914 -0
  77. acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +272 -0
  78. acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +648 -0
  79. acryl_datahub_cloud/sdk/assertions_client.py +3206 -0
  80. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  81. acryl_datahub_cloud/sdk/entities/assertion.py +432 -0
  82. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  83. acryl_datahub_cloud/sdk/entities/subscription.py +84 -0
  84. acryl_datahub_cloud/sdk/errors.py +34 -0
  85. acryl_datahub_cloud/sdk/resolver_client.py +39 -0
  86. acryl_datahub_cloud/sdk/subscription_client.py +714 -0
  87. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/METADATA +50 -45
  88. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/RECORD +91 -58
  89. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/WHEEL +1 -1
  90. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/entry_points.txt +1 -0
  91. acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
  92. acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
  93. acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
  94. {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12.dist-info}/top_level.txt +0 -0
@@ -38,7 +38,10 @@
38
38
  "doc": "URL where the reference exist"
39
39
  },
40
40
  {
41
- "Searchable": {},
41
+ "Searchable": {
42
+ "fieldName": "assertionType",
43
+ "fieldType": "KEYWORD"
44
+ },
42
45
  "type": {
43
46
  "type": "enum",
44
47
  "symbolDocs": {
@@ -368,7 +371,10 @@
368
371
  "namespace": "com.linkedin.pegasus2avro.assertion",
369
372
  "fields": [
370
373
  {
371
- "Searchable": {},
374
+ "Searchable": {
375
+ "fieldName": "freshnessAssertionType",
376
+ "fieldType": "KEYWORD"
377
+ },
372
378
  "type": {
373
379
  "type": "enum",
374
380
  "symbolDocs": {
@@ -755,7 +761,10 @@
755
761
  "namespace": "com.linkedin.pegasus2avro.assertion",
756
762
  "fields": [
757
763
  {
758
- "Searchable": {},
764
+ "Searchable": {
765
+ "fieldName": "volumeAssertionType",
766
+ "fieldType": "KEYWORD"
767
+ },
759
768
  "type": {
760
769
  "type": "enum",
761
770
  "symbolDocs": {
@@ -1048,7 +1057,10 @@
1048
1057
  "namespace": "com.linkedin.pegasus2avro.assertion",
1049
1058
  "fields": [
1050
1059
  {
1051
- "Searchable": {},
1060
+ "Searchable": {
1061
+ "fieldName": "sqlAssertionType",
1062
+ "fieldType": "KEYWORD"
1063
+ },
1052
1064
  "type": {
1053
1065
  "type": "enum",
1054
1066
  "symbolDocs": {
@@ -1127,7 +1139,10 @@
1127
1139
  "namespace": "com.linkedin.pegasus2avro.assertion",
1128
1140
  "fields": [
1129
1141
  {
1130
- "Searchable": {},
1142
+ "Searchable": {
1143
+ "fieldName": "fieldAssertionType",
1144
+ "fieldType": "KEYWORD"
1145
+ },
1131
1146
  "type": {
1132
1147
  "type": "enum",
1133
1148
  "symbolDocs": {
@@ -1289,7 +1304,7 @@
1289
1304
  },
1290
1305
  "type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
1291
1306
  "name": "field",
1292
- "doc": "The field under evaluation"
1307
+ "doc": "The field path under evaluation"
1293
1308
  },
1294
1309
  {
1295
1310
  "type": {
@@ -2514,7 +2529,8 @@
2514
2529
  "fields": [
2515
2530
  {
2516
2531
  "Searchable": {
2517
- "fieldName": "customType"
2532
+ "fieldName": "customType",
2533
+ "fieldType": "KEYWORD"
2518
2534
  },
2519
2535
  "type": "string",
2520
2536
  "name": "type",
@@ -2577,6 +2593,14 @@
2577
2593
  "doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
2578
2594
  },
2579
2595
  {
2596
+ "Searchable": {
2597
+ "/created/actor": {
2598
+ "fieldName": "creator",
2599
+ "fieldType": "URN",
2600
+ "filterNameOverride": "Created By",
2601
+ "hasValuesFieldName": "hasCreator"
2602
+ }
2603
+ },
2580
2604
  "type": [
2581
2605
  "null",
2582
2606
  {
@@ -2633,6 +2657,11 @@
2633
2657
  "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."
2634
2658
  },
2635
2659
  {
2660
+ "Searchable": {
2661
+ "fieldName": "assertionDescription",
2662
+ "fieldType": "TEXT",
2663
+ "hasValuesFieldName": "hasAssertionDescription"
2664
+ },
2636
2665
  "type": [
2637
2666
  "null",
2638
2667
  "string"
@@ -12,7 +12,7 @@
12
12
  "status",
13
13
  "globalTags",
14
14
  "lineageFeatures",
15
- "assertionSummary",
15
+ "assertionRunSummary",
16
16
  "assertionAnalyticsRunEvent",
17
17
  "assertionDryRunEvent",
18
18
  "assertionInferenceDetails"
@@ -129,7 +129,10 @@
129
129
  "doc": "URL where the reference exist"
130
130
  },
131
131
  {
132
- "Searchable": {},
132
+ "Searchable": {
133
+ "fieldName": "assertionType",
134
+ "fieldType": "KEYWORD"
135
+ },
133
136
  "type": {
134
137
  "type": "enum",
135
138
  "symbolDocs": {
@@ -459,7 +462,10 @@
459
462
  "namespace": "com.linkedin.pegasus2avro.assertion",
460
463
  "fields": [
461
464
  {
462
- "Searchable": {},
465
+ "Searchable": {
466
+ "fieldName": "freshnessAssertionType",
467
+ "fieldType": "KEYWORD"
468
+ },
463
469
  "type": {
464
470
  "type": "enum",
465
471
  "symbolDocs": {
@@ -846,7 +852,10 @@
846
852
  "namespace": "com.linkedin.pegasus2avro.assertion",
847
853
  "fields": [
848
854
  {
849
- "Searchable": {},
855
+ "Searchable": {
856
+ "fieldName": "volumeAssertionType",
857
+ "fieldType": "KEYWORD"
858
+ },
850
859
  "type": {
851
860
  "type": "enum",
852
861
  "symbolDocs": {
@@ -1139,7 +1148,10 @@
1139
1148
  "namespace": "com.linkedin.pegasus2avro.assertion",
1140
1149
  "fields": [
1141
1150
  {
1142
- "Searchable": {},
1151
+ "Searchable": {
1152
+ "fieldName": "sqlAssertionType",
1153
+ "fieldType": "KEYWORD"
1154
+ },
1143
1155
  "type": {
1144
1156
  "type": "enum",
1145
1157
  "symbolDocs": {
@@ -1218,7 +1230,10 @@
1218
1230
  "namespace": "com.linkedin.pegasus2avro.assertion",
1219
1231
  "fields": [
1220
1232
  {
1221
- "Searchable": {},
1233
+ "Searchable": {
1234
+ "fieldName": "fieldAssertionType",
1235
+ "fieldType": "KEYWORD"
1236
+ },
1222
1237
  "type": {
1223
1238
  "type": "enum",
1224
1239
  "symbolDocs": {
@@ -1380,7 +1395,7 @@
1380
1395
  },
1381
1396
  "type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
1382
1397
  "name": "field",
1383
- "doc": "The field under evaluation"
1398
+ "doc": "The field path under evaluation"
1384
1399
  },
1385
1400
  {
1386
1401
  "type": {
@@ -2605,7 +2620,8 @@
2605
2620
  "fields": [
2606
2621
  {
2607
2622
  "Searchable": {
2608
- "fieldName": "customType"
2623
+ "fieldName": "customType",
2624
+ "fieldType": "KEYWORD"
2609
2625
  },
2610
2626
  "type": "string",
2611
2627
  "name": "type",
@@ -2668,6 +2684,14 @@
2668
2684
  "doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
2669
2685
  },
2670
2686
  {
2687
+ "Searchable": {
2688
+ "/created/actor": {
2689
+ "fieldName": "creator",
2690
+ "fieldType": "URN",
2691
+ "filterNameOverride": "Created By",
2692
+ "hasValuesFieldName": "hasCreator"
2693
+ }
2694
+ },
2671
2695
  "type": [
2672
2696
  "null",
2673
2697
  {
@@ -2724,6 +2748,11 @@
2724
2748
  "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."
2725
2749
  },
2726
2750
  {
2751
+ "Searchable": {
2752
+ "fieldName": "assertionDescription",
2753
+ "fieldType": "TEXT",
2754
+ "hasValuesFieldName": "hasAssertionDescription"
2755
+ },
2727
2756
  "type": [
2728
2757
  "null",
2729
2758
  "string"
@@ -2781,7 +2810,10 @@
2781
2810
  "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."
2782
2811
  },
2783
2812
  {
2784
- "Searchable": {},
2813
+ "Searchable": {
2814
+ "fieldName": "lastResultType",
2815
+ "fieldType": "KEYWORD"
2816
+ },
2785
2817
  "TimeseriesField": {},
2786
2818
  "type": {
2787
2819
  "type": "enum",
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "type": "record",
3
3
  "Aspect": {
4
- "name": "assertionSummary"
4
+ "name": "assertionRunSummary"
5
5
  },
6
- "name": "AssertionSummary",
6
+ "name": "AssertionRunSummary",
7
7
  "namespace": "com.linkedin.pegasus2avro.assertion",
8
8
  "fields": [
9
9
  {
@@ -30,6 +30,20 @@
30
30
  "Urn": "Urn",
31
31
  "urn_is_array": true
32
32
  },
33
+ {
34
+ "Searchable": {
35
+ "fieldName": "lastAssertionResultAt",
36
+ "fieldType": "DATETIME",
37
+ "queryByDefault": false
38
+ },
39
+ "type": [
40
+ "null",
41
+ "long"
42
+ ],
43
+ "name": "lastAssertionResultAt",
44
+ "default": null,
45
+ "doc": "The last time an assertion was run."
46
+ },
33
47
  {
34
48
  "Relationship": {
35
49
  "/*/urn": {
@@ -13,6 +13,7 @@
13
13
  "embed",
14
14
  "browsePaths",
15
15
  "domains",
16
+ "applications",
16
17
  "container",
17
18
  "deprecation",
18
19
  "ownership",
@@ -100,13 +100,15 @@
100
100
  "type": "enum",
101
101
  "symbolDocs": {
102
102
  "EQUALS": "Whether the field matches the value",
103
+ "NOT_EQUALS": "Whether the field does not match the value",
103
104
  "STARTS_WITH": "Whether the field value starts with the value"
104
105
  },
105
106
  "name": "PolicyMatchCondition",
106
107
  "namespace": "com.linkedin.pegasus2avro.policy",
107
108
  "symbols": [
108
109
  "EQUALS",
109
- "STARTS_WITH"
110
+ "STARTS_WITH",
111
+ "NOT_EQUALS"
110
112
  ],
111
113
  "doc": "The matching condition in a filter criterion"
112
114
  },
@@ -128,6 +130,15 @@
128
130
  "name": "filter",
129
131
  "default": null,
130
132
  "doc": "Filter to apply privileges to"
133
+ },
134
+ {
135
+ "type": [
136
+ "null",
137
+ "com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
138
+ ],
139
+ "name": "privilegeConstraints",
140
+ "default": null,
141
+ "doc": "Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"
131
142
  }
132
143
  ],
133
144
  "doc": "Information used to filter DataHub resource."
@@ -18,6 +18,7 @@
18
18
  "browsePaths",
19
19
  "status",
20
20
  "domains",
21
+ "applications",
21
22
  "browsePathsV2",
22
23
  "structuredProperties",
23
24
  "forms",
@@ -17,7 +17,8 @@
17
17
  "testResults",
18
18
  "subTypes",
19
19
  "corpGroupSettings",
20
- "share"
20
+ "share",
21
+ "formNotifications"
21
22
  ],
22
23
  "entityDoc": "CorpGroup represents an identity of a group of users in the enterprise."
23
24
  },
@@ -21,7 +21,8 @@
21
21
  "testResults",
22
22
  "subTypes",
23
23
  "slackUserInfo",
24
- "share"
24
+ "share",
25
+ "formNotifications"
25
26
  ],
26
27
  "entityDoc": "CorpUser represents an identity of a person (or an account) in the enterprise."
27
28
  },
@@ -6,6 +6,7 @@
6
6
  "entityCategory": "_unset_",
7
7
  "entityAspects": [
8
8
  "domains",
9
+ "applications",
9
10
  "container",
10
11
  "deprecation",
11
12
  "dashboardUsageStatistics",
@@ -6,6 +6,7 @@
6
6
  "entityCategory": "core",
7
7
  "entityAspects": [
8
8
  "domains",
9
+ "applications",
9
10
  "deprecation",
10
11
  "versionInfo",
11
12
  "dataFlowInfo",
@@ -5,7 +5,8 @@
5
5
  "keyForEntity": "dataHubIngestionSource",
6
6
  "entityCategory": "internal",
7
7
  "entityAspects": [
8
- "dataHubIngestionSourceInfo"
8
+ "dataHubIngestionSourceInfo",
9
+ "ownership"
9
10
  ]
10
11
  },
11
12
  "name": "DataHubIngestionSourceKey",
@@ -110,13 +110,15 @@
110
110
  "type": "enum",
111
111
  "symbolDocs": {
112
112
  "EQUALS": "Whether the field matches the value",
113
+ "NOT_EQUALS": "Whether the field does not match the value",
113
114
  "STARTS_WITH": "Whether the field value starts with the value"
114
115
  },
115
116
  "name": "PolicyMatchCondition",
116
117
  "namespace": "com.linkedin.pegasus2avro.policy",
117
118
  "symbols": [
118
119
  "EQUALS",
119
- "STARTS_WITH"
120
+ "STARTS_WITH",
121
+ "NOT_EQUALS"
120
122
  ],
121
123
  "doc": "The matching condition in a filter criterion"
122
124
  },
@@ -138,6 +140,15 @@
138
140
  "name": "filter",
139
141
  "default": null,
140
142
  "doc": "Filter to apply privileges to"
143
+ },
144
+ {
145
+ "type": [
146
+ "null",
147
+ "com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
148
+ ],
149
+ "name": "privilegeConstraints",
150
+ "default": null,
151
+ "doc": "Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"
141
152
  }
142
153
  ],
143
154
  "doc": "Information used to filter DataHub resource."
@@ -8,6 +8,7 @@
8
8
  "datahubIngestionRunSummary",
9
9
  "datahubIngestionCheckpoint",
10
10
  "domains",
11
+ "applications",
11
12
  "deprecation",
12
13
  "versionInfo",
13
14
  "dataJobInfo",
@@ -9,6 +9,7 @@
9
9
  "glossaryTerms",
10
10
  "globalTags",
11
11
  "domains",
12
+ "applications",
12
13
  "dataProductProperties",
13
14
  "institutionalMemory",
14
15
  "status",
@@ -65,7 +65,7 @@
65
65
  ],
66
66
  "name": "description",
67
67
  "default": null,
68
- "doc": "Documentation of the dataset"
68
+ "doc": "Documentation of the data product"
69
69
  },
70
70
  {
71
71
  "Relationship": {
@@ -11,6 +11,7 @@
11
11
  "datasetUsageStatistics",
12
12
  "operation",
13
13
  "domains",
14
+ "applications",
14
15
  "schemaMetadata",
15
16
  "status",
16
17
  "container",
@@ -0,0 +1,36 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "formAssignmentStatus"
5
+ },
6
+ "name": "FormAssignmentStatus",
7
+ "namespace": "com.linkedin.pegasus2avro.form",
8
+ "fields": [
9
+ {
10
+ "type": {
11
+ "type": "enum",
12
+ "symbolDocs": {
13
+ "COMPLETE": "Assets assignment is complete",
14
+ "IN_PROGRESS": "Assets are currently being assigned"
15
+ },
16
+ "name": "AssignmentStatus",
17
+ "namespace": "com.linkedin.pegasus2avro.form",
18
+ "symbols": [
19
+ "IN_PROGRESS",
20
+ "COMPLETE"
21
+ ]
22
+ },
23
+ "name": "status",
24
+ "doc": "Notification settings for a form"
25
+ },
26
+ {
27
+ "type": [
28
+ "null",
29
+ "long"
30
+ ],
31
+ "name": "timestamp",
32
+ "default": null,
33
+ "doc": "Timestamp this aspect was last updated at"
34
+ }
35
+ ]
36
+ }
@@ -398,6 +398,12 @@
398
398
  "doc": "Who the form is assigned to, e.g. who should see the form when visiting the entity page or governance center"
399
399
  },
400
400
  {
401
+ "Searchable": {
402
+ "/state": {
403
+ "fieldName": "formStatus",
404
+ "fieldType": "KEYWORD"
405
+ }
406
+ },
401
407
  "type": {
402
408
  "type": "record",
403
409
  "name": "FormStatus",
@@ -7,7 +7,9 @@
7
7
  "entityAspects": [
8
8
  "formInfo",
9
9
  "dynamicFormAssignment",
10
- "ownership"
10
+ "ownership",
11
+ "formSettings",
12
+ "formAssignmentStatus"
11
13
  ]
12
14
  },
13
15
  "name": "FormKey",
@@ -0,0 +1,69 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "formNotifications"
5
+ },
6
+ "name": "FormNotifications",
7
+ "namespace": "com.linkedin.pegasus2avro.notification",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*/formUrn": {
12
+ "fieldName": "notificationFormUrn",
13
+ "fieldType": "URN",
14
+ "queryByDefault": false
15
+ }
16
+ },
17
+ "type": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "record",
21
+ "name": "FormNotificationDetails",
22
+ "namespace": "com.linkedin.pegasus2avro.notification",
23
+ "fields": [
24
+ {
25
+ "java": {
26
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
27
+ },
28
+ "type": "string",
29
+ "name": "formUrn",
30
+ "doc": "The urn of the form that these notification details are on behalf of",
31
+ "Urn": "Urn"
32
+ },
33
+ {
34
+ "type": {
35
+ "type": "array",
36
+ "items": {
37
+ "type": "record",
38
+ "name": "FormNotificationEntry",
39
+ "namespace": "com.linkedin.pegasus2avro.notification",
40
+ "fields": [
41
+ {
42
+ "type": "long",
43
+ "name": "time",
44
+ "doc": "The time at which this notification was sent in milliseconds"
45
+ },
46
+ {
47
+ "type": "string",
48
+ "name": "notificationType",
49
+ "doc": "The notification scenario type for this notification record"
50
+ }
51
+ ],
52
+ "doc": "Info about a specific form notification"
53
+ }
54
+ },
55
+ "name": "notificationLog",
56
+ "default": [],
57
+ "doc": "The list of details per notification sent on behalf of this form"
58
+ }
59
+ ],
60
+ "doc": "Info about all of the notifications a user has received for a given form"
61
+ }
62
+ },
63
+ "name": "notificationDetails",
64
+ "default": [],
65
+ "doc": "List of details for notifications for each form"
66
+ }
67
+ ],
68
+ "doc": "The history of notifications sent to this actor on behalf of forms"
69
+ }
@@ -0,0 +1,30 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "formSettings"
5
+ },
6
+ "name": "FormSettings",
7
+ "namespace": "com.linkedin.pegasus2avro.form",
8
+ "fields": [
9
+ {
10
+ "type": {
11
+ "type": "record",
12
+ "name": "FormNotificationSettings",
13
+ "namespace": "com.linkedin.pegasus2avro.form",
14
+ "fields": [
15
+ {
16
+ "Searchable": {
17
+ "fieldType": "BOOLEAN"
18
+ },
19
+ "type": "boolean",
20
+ "name": "notifyAssigneesOnPublish",
21
+ "default": false,
22
+ "doc": "Whether to notify the assignees of the form when it is published."
23
+ }
24
+ ]
25
+ },
26
+ "name": "notificationSettings",
27
+ "doc": "Notification settings for a form"
28
+ }
29
+ ]
30
+ }
@@ -454,6 +454,28 @@
454
454
  },
455
455
  "doc": "Settings related to the documentation propagation feature"
456
456
  },
457
+ {
458
+ "type": [
459
+ "null",
460
+ {
461
+ "type": "record",
462
+ "name": "DocumentationAiSettings",
463
+ "namespace": "com.linkedin.pegasus2avro.settings.global",
464
+ "fields": [
465
+ {
466
+ "type": "boolean",
467
+ "name": "enabled",
468
+ "default": true,
469
+ "doc": "Whether or not AI-generated documentation is enabled."
470
+ }
471
+ ],
472
+ "doc": "Settings related to AI-powered documentation."
473
+ }
474
+ ],
475
+ "name": "documentationAi",
476
+ "default": null,
477
+ "doc": "Settings related to AI-powered documentation."
478
+ },
457
479
  {
458
480
  "type": [
459
481
  "null",
@@ -12,6 +12,7 @@
12
12
  "ownership",
13
13
  "deprecation",
14
14
  "domains",
15
+ "applications",
15
16
  "status",
16
17
  "browsePaths",
17
18
  "structuredProperties",
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlFeatureProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlFeatureProperties",
12
13
  "ownership",
13
14
  "institutionalMemory",
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlFeatureTableProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlFeatureTableProperties",
12
13
  "ownership",
13
14
  "institutionalMemory",