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
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlModelGroupProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlModelGroupProperties",
12
13
  "ownership",
13
14
  "status",
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlModelProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "ownership",
12
13
  "mlModelProperties",
13
14
  "intendedUse",
@@ -8,6 +8,7 @@
8
8
  "glossaryTerms",
9
9
  "editableMlPrimaryKeyProperties",
10
10
  "domains",
11
+ "applications",
11
12
  "mlPrimaryKeyProperties",
12
13
  "ownership",
13
14
  "institutionalMemory",
@@ -8632,13 +8632,15 @@
8632
8632
  "type": "enum",
8633
8633
  "symbolDocs": {
8634
8634
  "EQUALS": "Whether the field matches the value",
8635
+ "NOT_EQUALS": "Whether the field does not match the value",
8635
8636
  "STARTS_WITH": "Whether the field value starts with the value"
8636
8637
  },
8637
8638
  "name": "PolicyMatchCondition",
8638
8639
  "namespace": "com.linkedin.pegasus2avro.policy",
8639
8640
  "symbols": [
8640
8641
  "EQUALS",
8641
- "STARTS_WITH"
8642
+ "STARTS_WITH",
8643
+ "NOT_EQUALS"
8642
8644
  ],
8643
8645
  "doc": "The matching condition in a filter criterion"
8644
8646
  },
@@ -8660,6 +8662,15 @@
8660
8662
  "name": "filter",
8661
8663
  "default": null,
8662
8664
  "doc": "Filter to apply privileges to"
8665
+ },
8666
+ {
8667
+ "type": [
8668
+ "null",
8669
+ "com.linkedin.pegasus2avro.policy.PolicyMatchFilter"
8670
+ ],
8671
+ "name": "privilegeConstraints",
8672
+ "default": null,
8673
+ "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"
8663
8674
  }
8664
8675
  ],
8665
8676
  "doc": "Information used to filter DataHub resource."
@@ -161,16 +161,18 @@
161
161
  "type": {
162
162
  "type": "enum",
163
163
  "symbolDocs": {
164
- "INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly."
164
+ "INFERRED_ASSERTION_FAILURE": "An assertion has failed, triggering the anomaly report.",
165
+ "USER_FEEDBACK": "An anomaly was reported by a user."
165
166
  },
166
167
  "name": "AnomalySourceType",
167
168
  "namespace": "com.linkedin.pegasus2avro.anomaly",
168
169
  "symbols": [
169
- "INFERRED_ASSERTION_FAILURE"
170
+ "INFERRED_ASSERTION_FAILURE",
171
+ "USER_FEEDBACK"
170
172
  ]
171
173
  },
172
174
  "name": "type",
173
- "doc": "Message associated with the anomaly"
175
+ "doc": "How this feedback was provided."
174
176
  },
175
177
  {
176
178
  "TimeseriesField": {},
@@ -183,9 +185,19 @@
183
185
  ],
184
186
  "name": "sourceUrn",
185
187
  "default": null,
186
- "doc": "Reference to an URN related to the source of an anomaly.\nIf this anomaly was raised due to an inferred assertion failure, then this will contain the urn of the source Assertion.",
188
+ "doc": "Reference to an URN related to the source of an anomaly.\nFor assertion monitors, this will contain the urn of the source Assertion.",
187
189
  "Urn": "Urn"
188
190
  },
191
+ {
192
+ "TimeseriesField": {},
193
+ "type": [
194
+ "null",
195
+ "long"
196
+ ],
197
+ "name": "sourceEventTimestampMillis",
198
+ "default": null,
199
+ "doc": "The timestamp of the event that triggered the anomaly.\nFor assertion monitors, this will be the timestamp of the assertion run event."
200
+ },
189
201
  {
190
202
  "type": [
191
203
  "null",
@@ -225,10 +237,10 @@
225
237
  ],
226
238
  "name": "properties",
227
239
  "default": null,
228
- "doc": "Additional properties about the source, for example which evaluation\nof an assertion generated an Anomaly."
240
+ "doc": "Additional properties about the source, for example which metric\nof an assertion generated the anomaly."
229
241
  }
230
242
  ],
231
- "doc": "Information about the source of an anomaly raised on an asset."
243
+ "doc": "Information about the source of feedback for an anomaly raised on an asset."
232
244
  },
233
245
  "name": "source",
234
246
  "doc": "The source of an anomaly, i.e. how it was generated."
@@ -262,14 +274,14 @@
262
274
  "doc": "A standard event timestamp"
263
275
  },
264
276
  "name": "created",
265
- "doc": "The time at which the request was initially created"
277
+ "doc": "@Deprecated: this matches the timestampMillis field in the TimeseriesAspectBase."
266
278
  },
267
279
  {
268
280
  "TimeseriesField": {},
269
281
  "type": "com.linkedin.pegasus2avro.common.TimeStamp",
270
282
  "name": "lastUpdated",
271
- "doc": "The time at which the request was initially created"
283
+ "doc": "The time at which the anomaly was last updated\n@Deprecated: this field is not used as this is an immutable log."
272
284
  }
273
285
  ],
274
- "doc": "Information about an anomaly generated by a monitor"
286
+ "doc": "A feedback log of anomalies detected by a monitor\nNOTE: this is an immutable log. The most recent entry for a given run can be used to determine the state of the anomaly."
275
287
  }
@@ -43,7 +43,7 @@
43
43
  "type": "enum",
44
44
  "symbolDocs": {
45
45
  "ASSERTION": "A monitor responsible for evaluating Assertions.",
46
- "FRESHNESS": "A monitor responsible for evaluating system freshness monitors"
46
+ "FRESHNESS": "A monitor responsible for evaluating system freshness monitors - This is not used"
47
47
  },
48
48
  "name": "MonitorType",
49
49
  "namespace": "com.linkedin.pegasus2avro.monitor",
@@ -68,7 +68,7 @@
68
68
  "symbolDocs": {
69
69
  "ACTIVE": "The monitor should be actively operating.",
70
70
  "INACTIVE": "The monitor is not actively operating.",
71
- "PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode."
71
+ "PASSIVE": "The monitor is running in passive mode.\nFor assertion monitors, this means that assertions will be run in dry mode.\nThis is for internal troubleshooting purposes."
72
72
  },
73
73
  "name": "MonitorMode",
74
74
  "namespace": "com.linkedin.pegasus2avro.monitor",
@@ -627,7 +627,10 @@
627
627
  "doc": "URL where the reference exist"
628
628
  },
629
629
  {
630
- "Searchable": {},
630
+ "Searchable": {
631
+ "fieldName": "assertionType",
632
+ "fieldType": "KEYWORD"
633
+ },
631
634
  "type": {
632
635
  "type": "enum",
633
636
  "symbolDocs": {
@@ -957,7 +960,10 @@
957
960
  "namespace": "com.linkedin.pegasus2avro.assertion",
958
961
  "fields": [
959
962
  {
960
- "Searchable": {},
963
+ "Searchable": {
964
+ "fieldName": "freshnessAssertionType",
965
+ "fieldType": "KEYWORD"
966
+ },
961
967
  "type": {
962
968
  "type": "enum",
963
969
  "symbolDocs": {
@@ -1344,7 +1350,10 @@
1344
1350
  "namespace": "com.linkedin.pegasus2avro.assertion",
1345
1351
  "fields": [
1346
1352
  {
1347
- "Searchable": {},
1353
+ "Searchable": {
1354
+ "fieldName": "volumeAssertionType",
1355
+ "fieldType": "KEYWORD"
1356
+ },
1348
1357
  "type": {
1349
1358
  "type": "enum",
1350
1359
  "symbolDocs": {
@@ -1637,7 +1646,10 @@
1637
1646
  "namespace": "com.linkedin.pegasus2avro.assertion",
1638
1647
  "fields": [
1639
1648
  {
1640
- "Searchable": {},
1649
+ "Searchable": {
1650
+ "fieldName": "sqlAssertionType",
1651
+ "fieldType": "KEYWORD"
1652
+ },
1641
1653
  "type": {
1642
1654
  "type": "enum",
1643
1655
  "symbolDocs": {
@@ -1716,7 +1728,10 @@
1716
1728
  "namespace": "com.linkedin.pegasus2avro.assertion",
1717
1729
  "fields": [
1718
1730
  {
1719
- "Searchable": {},
1731
+ "Searchable": {
1732
+ "fieldName": "fieldAssertionType",
1733
+ "fieldType": "KEYWORD"
1734
+ },
1720
1735
  "type": {
1721
1736
  "type": "enum",
1722
1737
  "symbolDocs": {
@@ -1878,7 +1893,7 @@
1878
1893
  },
1879
1894
  "type": "com.linkedin.pegasus2avro.schema.SchemaFieldSpec",
1880
1895
  "name": "field",
1881
- "doc": "The field under evaluation"
1896
+ "doc": "The field path under evaluation"
1882
1897
  },
1883
1898
  {
1884
1899
  "type": {
@@ -3103,7 +3118,8 @@
3103
3118
  "fields": [
3104
3119
  {
3105
3120
  "Searchable": {
3106
- "fieldName": "customType"
3121
+ "fieldName": "customType",
3122
+ "fieldType": "KEYWORD"
3107
3123
  },
3108
3124
  "type": "string",
3109
3125
  "name": "type",
@@ -3166,6 +3182,14 @@
3166
3182
  "doc": "A Custom Assertion definition. This field is populated when type is CUSTOM."
3167
3183
  },
3168
3184
  {
3185
+ "Searchable": {
3186
+ "/created/actor": {
3187
+ "fieldName": "creator",
3188
+ "fieldType": "URN",
3189
+ "filterNameOverride": "Created By",
3190
+ "hasValuesFieldName": "hasCreator"
3191
+ }
3192
+ },
3169
3193
  "type": [
3170
3194
  "null",
3171
3195
  {
@@ -3222,6 +3246,11 @@
3222
3246
  "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."
3223
3247
  },
3224
3248
  {
3249
+ "Searchable": {
3250
+ "fieldName": "assertionDescription",
3251
+ "fieldType": "TEXT",
3252
+ "hasValuesFieldName": "hasAssertionDescription"
3253
+ },
3225
3254
  "type": [
3226
3255
  "null",
3227
3256
  "string"
@@ -3500,7 +3529,7 @@
3500
3529
  }
3501
3530
  },
3502
3531
  "name": "assertions",
3503
- "doc": "Specs for each assertion to evaluate"
3532
+ "doc": "Specs for each assertion to evaluate\nThis will always have 1 reference. Modelling error caused it to be an array.\nIf it is != 1 then we have data corruption."
3504
3533
  },
3505
3534
  {
3506
3535
  "type": [
@@ -509,7 +509,7 @@
509
509
  "TAG_REMOVED",
510
510
  "TAG_PROPOSED"
511
511
  ],
512
- "doc": "Enum to define change types that can trigger a subscription."
512
+ "doc": "Enum to define change types that can trigger a notification for a subscription."
513
513
  },
514
514
  "name": "entityChangeType",
515
515
  "doc": "Change type that triggers a notification for the subscription."
@@ -15,6 +15,7 @@
15
15
  "browsePaths",
16
16
  "institutionalMemory",
17
17
  "domains",
18
+ "applications",
18
19
  "subTypes",
19
20
  "dataPlatformInstance",
20
21
  "browsePathsV2",
@@ -34,6 +34,7 @@
34
34
  "BROADCAST_INGESTION_RUN_CHANGE",
35
35
  "BROADCAST_NEW_PROPOSAL",
36
36
  "BROADCAST_PROPOSAL_STATUS_CHANGE",
37
+ "BROADCAST_COMPLIANCE_FORM_PUBLISH",
37
38
  "INVALID_TEMPLATE"
38
39
  ],
39
40
  "doc": "Possible notification template types."
@@ -377,6 +377,23 @@
377
377
  "type": "long",
378
378
  "name": "lastUpdatedTimestamp",
379
379
  "doc": "The time at which the operation occurred. Would be better named 'operationTime'"
380
+ },
381
+ {
382
+ "TimeseriesFieldCollection": {
383
+ "key": "query"
384
+ },
385
+ "type": [
386
+ "null",
387
+ {
388
+ "type": "array",
389
+ "items": "string"
390
+ }
391
+ ],
392
+ "name": "queries",
393
+ "default": null,
394
+ "doc": "Which queries were used in this operation.",
395
+ "Urn": "Urn",
396
+ "urn_is_array": true
380
397
  }
381
398
  ],
382
399
  "doc": "Operational info for an entity."
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "type": "string",
17
17
  "name": "actorUrn",
18
- "doc": "Actor Urn",
18
+ "doc": "Actor Urn who will be notified ",
19
19
  "Urn": "Urn"
20
20
  },
21
21
  {
@@ -119,7 +119,7 @@
119
119
  ],
120
120
  "name": "entityUrn",
121
121
  "default": null,
122
- "doc": "Optional entity Urn",
122
+ "doc": "Optional entity Urn - top level for now (Dataset, container etc. )",
123
123
  "Urn": "Urn"
124
124
  },
125
125
  {
@@ -196,7 +196,7 @@
196
196
  "TAG_REMOVED",
197
197
  "TAG_PROPOSED"
198
198
  ],
199
- "doc": "Enum to define change types that can trigger a subscription."
199
+ "doc": "Enum to define change types that can trigger a notification for a subscription."
200
200
  },
201
201
  "name": "entityChangeType",
202
202
  "doc": "Change type that triggers a notification for the subscription."
@@ -5,7 +5,8 @@
5
5
  "keyForEntity": "subscription",
6
6
  "entityCategory": "core",
7
7
  "entityAspects": [
8
- "subscriptionInfo"
8
+ "subscriptionInfo",
9
+ "status"
9
10
  ]
10
11
  },
11
12
  "name": "SubscriptionKey",
@@ -160,6 +160,16 @@
160
160
  "doc": "Overall rank of the dataset based on the the last 30 days insert/update operation count on a platform\nIt returns one plus the number of rows proceeding or equals to the current row in the ordering. "
161
161
  },
162
162
  {
163
+ "Searchable": {
164
+ "/*": {
165
+ "addToFilters": true,
166
+ "fieldName": "topUsersLast30Days",
167
+ "fieldType": "URN",
168
+ "filterNameOverride": "Top users last 30 days",
169
+ "hasValuesFieldName": "hasTopUsersLast30Days",
170
+ "queryByDefault": false
171
+ }
172
+ },
163
173
  "type": [
164
174
  "null",
165
175
  {
@@ -15,10 +15,10 @@ import pathlib
15
15
  def _load_schema(schema_name: str) -> str:
16
16
  return (pathlib.Path(__file__).parent / f"{schema_name}.avsc").read_text()
17
17
 
18
- def getMetadataChangeProposalSchema() -> str:
19
- return _load_schema("MetadataChangeProposal")
20
-
21
18
  def getMetadataChangeEventSchema() -> str:
22
19
  return _load_schema("MetadataChangeEvent")
23
20
 
21
+ def getMetadataChangeProposalSchema() -> str:
22
+ return _load_schema("MetadataChangeProposal")
23
+
24
24
  # fmt: on
File without changes