acryl-datahub-cloud 0.3.13rc3__py3-none-any.whl → 0.3.13rc4__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 (33) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/metadata/_urns/urn_defs.py +56 -0
  3. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
  4. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +0 -2
  5. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
  6. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +0 -4
  7. acryl_datahub_cloud/metadata/schema.avsc +732 -291
  8. acryl_datahub_cloud/metadata/schema_classes.py +1077 -280
  9. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +136 -1
  10. acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
  11. acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
  12. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +0 -46
  13. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +0 -25
  14. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +0 -25
  15. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +1 -10
  16. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +7 -88
  17. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +0 -1
  18. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +0 -9
  19. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +136 -19
  20. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +44 -62
  21. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +0 -61
  22. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +0 -25
  23. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +4 -0
  24. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +12 -1
  25. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +0 -1
  26. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +0 -61
  27. {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/METADATA +52 -52
  28. {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/RECORD +31 -30
  29. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +0 -15
  30. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +0 -140
  31. {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/WHEEL +0 -0
  32. {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/entry_points.txt +0 -0
  33. {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/top_level.txt +0 -0
@@ -4200,7 +4200,7 @@
4200
4200
  },
4201
4201
  "type": "string",
4202
4202
  "name": "type",
4203
- "doc": "The type of the action request, for example 'TAG_ASSOCIATION'"
4203
+ "doc": "The type of the action request, for example 'TAG_ASSOCIATION', 'WORKFLOW_FORM_REQUEST'"
4204
4204
  },
4205
4205
  {
4206
4206
  "Searchable": {
@@ -4957,6 +4957,141 @@
4957
4957
  "name": "dataContractProposal",
4958
4958
  "default": null,
4959
4959
  "doc": "A proposal to create or modify a Data Contract"
4960
+ },
4961
+ {
4962
+ "type": [
4963
+ "null",
4964
+ {
4965
+ "type": "record",
4966
+ "name": "ActionWorkflowFormRequest",
4967
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
4968
+ "fields": [
4969
+ {
4970
+ "Searchable": {
4971
+ "fieldName": "actionWorkflow"
4972
+ },
4973
+ "java": {
4974
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
4975
+ },
4976
+ "Urn": "Urn",
4977
+ "type": "string",
4978
+ "name": "workflow",
4979
+ "doc": "The urn of the associated access request workflow."
4980
+ },
4981
+ {
4982
+ "Searchable": {
4983
+ "fieldName": "workflowCategory"
4984
+ },
4985
+ "type": {
4986
+ "type": "enum",
4987
+ "symbolDocs": {
4988
+ "ACCESS": "Workflow for requesting access to a resource, such as a dataset or data job.\nRequires the `access` field to be populated with specific access parameters.",
4989
+ "CUSTOM": "Custom, non-access related workflow. For example, may be used to model workflows like\nasset creation, asset cleanup or deletion, etc."
4990
+ },
4991
+ "name": "ActionWorkflowCategory",
4992
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
4993
+ "symbols": [
4994
+ "ACCESS",
4995
+ "CUSTOM"
4996
+ ]
4997
+ },
4998
+ "name": "category",
4999
+ "doc": "The category of the workflow. \nPrimarily used for searching / filtering action requests."
5000
+ },
5001
+ {
5002
+ "Searchable": {
5003
+ "fieldName": "customWorkflowCategory"
5004
+ },
5005
+ "type": [
5006
+ "null",
5007
+ "string"
5008
+ ],
5009
+ "name": "customCategory",
5010
+ "default": null,
5011
+ "doc": "The custom category of the workflow, if category is custom.\nPrimarily used for searching / filtering action requests."
5012
+ },
5013
+ {
5014
+ "type": {
5015
+ "type": "array",
5016
+ "items": {
5017
+ "type": "record",
5018
+ "name": "ActionWorkflowFormRequestField",
5019
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
5020
+ "fields": [
5021
+ {
5022
+ "type": "string",
5023
+ "name": "id",
5024
+ "doc": "Workflow-local id for the field"
5025
+ },
5026
+ {
5027
+ "type": {
5028
+ "type": "array",
5029
+ "items": [
5030
+ "string",
5031
+ "double"
5032
+ ]
5033
+ },
5034
+ "name": "values",
5035
+ "doc": "Value, reused model from structured properties. Empty if no response was provided."
5036
+ }
5037
+ ],
5038
+ "doc": "Simply capture the field id + the value."
5039
+ }
5040
+ },
5041
+ "name": "fields",
5042
+ "doc": "Custom fields provided by the user making the request if the action request is of type FORM_SUBMITTED\nEventually, these may need to become search indexed. For now, not indexed."
5043
+ },
5044
+ {
5045
+ "type": [
5046
+ "null",
5047
+ {
5048
+ "type": "record",
5049
+ "name": "ActionWorkflowRequestAccess",
5050
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
5051
+ "fields": [
5052
+ {
5053
+ "Searchable": {},
5054
+ "type": [
5055
+ "null",
5056
+ "long"
5057
+ ],
5058
+ "name": "expiresAt",
5059
+ "default": null,
5060
+ "doc": "Expiration time for the action request (optional, if part of the template)."
5061
+ }
5062
+ ]
5063
+ }
5064
+ ],
5065
+ "name": "access",
5066
+ "default": null,
5067
+ "doc": "Details specific for access request workflow requests."
5068
+ },
5069
+ {
5070
+ "type": {
5071
+ "type": "record",
5072
+ "name": "ActionWorkflowRequestStepState",
5073
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
5074
+ "fields": [
5075
+ {
5076
+ "Searchable": {
5077
+ "fieldName": "workflowStepId"
5078
+ },
5079
+ "type": "string",
5080
+ "name": "stepId",
5081
+ "doc": "The id of the current step in the workflow, which should be of type ACTION_REQUEST_REVIEW."
5082
+ }
5083
+ ]
5084
+ },
5085
+ "name": "stepState",
5086
+ "doc": "State related to steps. This should correspond to a step of type ACTION_REQUEST_REVIEW in the workflow \ndefinition."
5087
+ }
5088
+ ],
5089
+ "doc": "A request for an access workflow form to be reviewed.\n\nFor an access workflow of trigger type FORM, this action request currently represents the \"state\" \nof the workflow instance. \n\nIn the future, we may add more features like due dates, escalations, etc.\nIdeally, for now we are keeping these out of here."
5090
+ }
5091
+ ],
5092
+ "name": "workflowFormRequest",
5093
+ "default": null,
5094
+ "doc": "An action workflow form request."
4960
5095
  }
4961
5096
  ],
4962
5097
  "doc": "Parameters provided with a particular action request. Only one of the fields will be populated,\ndepending on the action request type."
@@ -6278,6 +6413,27 @@
6278
6413
  ],
6279
6414
  "doc": "Key for an asset Anomaly"
6280
6415
  },
6416
+ {
6417
+ "type": "record",
6418
+ "Aspect": {
6419
+ "name": "actionWorkflowKey",
6420
+ "keyForEntity": "actionWorkflow",
6421
+ "entityCategory": "internal",
6422
+ "entityAspects": [
6423
+ "actionWorkflowInfo"
6424
+ ]
6425
+ },
6426
+ "name": "ActionWorkflowKey",
6427
+ "namespace": "com.linkedin.pegasus2avro.metadata.key",
6428
+ "fields": [
6429
+ {
6430
+ "type": "string",
6431
+ "name": "id",
6432
+ "doc": " The unique identifier for the workflow "
6433
+ }
6434
+ ],
6435
+ "doc": "Key for an ActionRequestWorkflow"
6436
+ },
6281
6437
  {
6282
6438
  "type": "record",
6283
6439
  "Aspect": {
@@ -7100,7 +7256,6 @@
7100
7256
  "testResults",
7101
7257
  "deprecation",
7102
7258
  "subTypes",
7103
- "logicalParent",
7104
7259
  "schemaFieldProfile",
7105
7260
  "lineageFeatures"
7106
7261
  ]
@@ -7373,7 +7528,6 @@
7373
7528
  "partitionsSummary",
7374
7529
  "versionProperties",
7375
7530
  "icebergCatalogInfo",
7376
- "logicalParent",
7377
7531
  "inferredNeighbors",
7378
7532
  "inferredMetadata",
7379
7533
  "schemaFieldsInferredMetadata",
@@ -11662,6 +11816,13 @@
11662
11816
  "namespace": "com.linkedin.pegasus2avro.query",
11663
11817
  "fields": [
11664
11818
  {
11819
+ "Relationship": {
11820
+ "entityTypes": [
11821
+ "dataset",
11822
+ "schemaField"
11823
+ ],
11824
+ "name": "IsAssociatedWith"
11825
+ },
11665
11826
  "Searchable": {
11666
11827
  "fieldName": "entities",
11667
11828
  "fieldType": "URN"
@@ -11670,6 +11831,10 @@
11670
11831
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
11671
11832
  },
11672
11833
  "Urn": "Urn",
11834
+ "entityTypes": [
11835
+ "dataset",
11836
+ "schemaField"
11837
+ ],
11673
11838
  "type": "string",
11674
11839
  "name": "entity",
11675
11840
  "doc": "An entity which is the subject of a query."
@@ -13229,44 +13394,6 @@
13229
13394
  ],
13230
13395
  "doc": "BusinessAttribute aspect used for applying it to an entity"
13231
13396
  },
13232
- {
13233
- "type": "record",
13234
- "Aspect": {
13235
- "name": "logicalParent"
13236
- },
13237
- "name": "LogicalParent",
13238
- "namespace": "com.linkedin.pegasus2avro.logical",
13239
- "fields": [
13240
- {
13241
- "Relationship": {
13242
- "/destinationUrn": {
13243
- "createdActor": "parent/created/actor",
13244
- "createdOn": "parent/created/time",
13245
- "entityTypes": [
13246
- "dataset",
13247
- "schemaField"
13248
- ],
13249
- "name": "PhysicalInstanceOf",
13250
- "properties": "parent/properties",
13251
- "updatedActor": "parent/lastModified/actor",
13252
- "updatedOn": "parent/lastModified/time"
13253
- }
13254
- },
13255
- "Searchable": {
13256
- "/destinationUrn": {
13257
- "addToFilters": true,
13258
- "fieldName": "logicalParent",
13259
- "fieldType": "URN",
13260
- "filterNameOverride": "Physical Instance Of",
13261
- "hasValuesFieldName": "hasLogicalParent",
13262
- "queryByDefault": false
13263
- }
13264
- },
13265
- "type": "com.linkedin.pegasus2avro.common.Edge",
13266
- "name": "parent"
13267
- }
13268
- ]
13269
- },
13270
13397
  {
13271
13398
  "type": "record",
13272
13399
  "Aspect": {
@@ -13354,15 +13481,6 @@
13354
13481
  "name": "defaultChannelName",
13355
13482
  "default": null,
13356
13483
  "doc": "A default slack channel to use."
13357
- },
13358
- {
13359
- "type": [
13360
- "null",
13361
- "boolean"
13362
- ],
13363
- "name": "datahubAtMentionEnabled",
13364
- "default": null,
13365
- "doc": "Whether the Slack @DataHub bot mention functionality is enabled.\nIf null, use the default value from feature flags."
13366
13484
  }
13367
13485
  ],
13368
13486
  "doc": "Slack integration settings."
@@ -15824,7 +15942,9 @@
15824
15942
  "type": {
15825
15943
  "type": "enum",
15826
15944
  "symbolDocs": {
15945
+ "BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE": "Broadcast that an action workflow form request has been completed (approved or denied).",
15827
15946
  "BROADCAST_ASSERTION_STATUS_CHANGE": "Assertion change notification template.",
15947
+ "BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST": "Broadcast that a new action workflow form request has been created or needs review.",
15828
15948
  "BROADCAST_NEW_INCIDENT_UPDATE": "Updates the broadcasted incident if possible.",
15829
15949
  "CUSTOM": "Legacy template types to support backwards compatibility.",
15830
15950
  "OWNERSHIP_CHANGE": "Ownership change notification template."
@@ -15843,6 +15963,8 @@
15843
15963
  "BROADCAST_NEW_PROPOSAL",
15844
15964
  "BROADCAST_PROPOSAL_STATUS_CHANGE",
15845
15965
  "BROADCAST_COMPLIANCE_FORM_PUBLISH",
15966
+ "BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST",
15967
+ "BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE",
15846
15968
  "INVALID_TEMPLATE"
15847
15969
  ],
15848
15970
  "doc": "Possible notification template types."
@@ -19133,27 +19255,6 @@
19133
19255
  "default": null,
19134
19256
  "doc": "Data Platform for parent"
19135
19257
  },
19136
- {
19137
- "Searchable": {
19138
- "/*": {
19139
- "addToFilters": true,
19140
- "fieldType": "URN",
19141
- "hasValuesFieldName": "hasAsserteeContainer"
19142
- }
19143
- },
19144
- "TimeseriesField": {},
19145
- "java": {
19146
- "class": "com.linkedin.pegasus2avro.common.urn.Urn"
19147
- },
19148
- "Urn": "Urn",
19149
- "type": [
19150
- "null",
19151
- "string"
19152
- ],
19153
- "name": "asserteeContainer",
19154
- "default": null,
19155
- "doc": "The Container attached to the entity's parent Asset"
19156
- },
19157
19258
  {
19158
19259
  "Searchable": {
19159
19260
  "addToFilters": true,
@@ -20845,31 +20946,6 @@
20845
20946
  "name": "description",
20846
20947
  "default": null,
20847
20948
  "doc": "An optional human-readable description of the assertion"
20848
- },
20849
- {
20850
- "type": [
20851
- "null",
20852
- {
20853
- "type": "record",
20854
- "name": "AssertionNote",
20855
- "namespace": "com.linkedin.pegasus2avro.assertion",
20856
- "fields": [
20857
- {
20858
- "type": "string",
20859
- "name": "content",
20860
- "doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
20861
- },
20862
- {
20863
- "type": "com.linkedin.pegasus2avro.common.AuditStamp",
20864
- "name": "lastModified",
20865
- "doc": "The time at which the note was last modified."
20866
- }
20867
- ]
20868
- }
20869
- ],
20870
- "name": "note",
20871
- "default": null,
20872
- "doc": "An optional note to give technical owners more context about the assertion, and how to troubleshoot it.\nThe UI will render this in markdown format."
20873
20949
  }
20874
20950
  ],
20875
20951
  "doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
@@ -23984,24 +24060,6 @@
23984
24060
  "name": "version",
23985
24061
  "default": null,
23986
24062
  "doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
23987
- },
23988
- {
23989
- "type": [
23990
- "null",
23991
- "com.linkedin.pegasus2avro.common.AuditStamp"
23992
- ],
23993
- "name": "aspectCreated",
23994
- "default": null,
23995
- "doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
23996
- },
23997
- {
23998
- "type": [
23999
- "null",
24000
- "com.linkedin.pegasus2avro.common.AuditStamp"
24001
- ],
24002
- "name": "aspectModified",
24003
- "default": null,
24004
- "doc": "When the aspect was last modified and the actor that performed the modification"
24005
24063
  }
24006
24064
  ],
24007
24065
  "doc": "Metadata associated with each metadata change that is processed by the system"
@@ -25596,84 +25654,587 @@
25596
25654
  {
25597
25655
  "type": "record",
25598
25656
  "Aspect": {
25599
- "name": "dataHubIngestionSourceInfo"
25657
+ "name": "actionWorkflowInfo"
25600
25658
  },
25601
- "name": "DataHubIngestionSourceInfo",
25602
- "namespace": "com.linkedin.pegasus2avro.ingestion",
25659
+ "name": "ActionWorkflowInfo",
25660
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25603
25661
  "fields": [
25604
25662
  {
25605
- "Searchable": {
25606
- "fieldType": "TEXT_PARTIAL"
25607
- },
25663
+ "Searchable": {},
25608
25664
  "type": "string",
25609
25665
  "name": "name",
25610
- "doc": "The display name of the ingestion source"
25666
+ "doc": "Display name of the workflow"
25611
25667
  },
25612
25668
  {
25613
- "Searchable": {
25614
- "fieldType": "KEYWORD",
25615
- "queryByDefault": false
25616
- },
25617
- "type": "string",
25618
- "name": "type",
25619
- "doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
25669
+ "Searchable": {},
25670
+ "type": "com.linkedin.pegasus2avro.actionworkflow.ActionWorkflowCategory",
25671
+ "name": "category",
25672
+ "doc": "Top-level category of the workflow, e.g. ACCESS"
25620
25673
  },
25621
25674
  {
25622
- "java": {
25623
- "class": "com.linkedin.pegasus2avro.common.urn.Urn"
25624
- },
25625
- "Urn": "Urn",
25675
+ "Searchable": {},
25626
25676
  "type": [
25627
25677
  "null",
25628
25678
  "string"
25629
25679
  ],
25630
- "name": "platform",
25680
+ "name": "customCategory",
25631
25681
  "default": null,
25632
- "doc": "Data Platform URN associated with the source"
25682
+ "doc": "Custom category for the workflow, if applicable.\n\nThis is used to group workflows that are not part of the standard types.\nShould be provided when the type is CUSTOM."
25633
25683
  },
25634
25684
  {
25635
25685
  "type": [
25636
25686
  "null",
25637
- {
25638
- "type": "record",
25639
- "name": "DataHubIngestionSourceSchedule",
25640
- "namespace": "com.linkedin.pegasus2avro.ingestion",
25641
- "fields": [
25642
- {
25643
- "type": "string",
25644
- "name": "interval",
25645
- "doc": "A cron-formatted execution interval, as a cron string, e.g. * * * * *"
25646
- },
25647
- {
25648
- "type": "string",
25649
- "name": "timezone",
25650
- "doc": "Timezone in which the cron interval applies, e.g. America/Los Angeles"
25651
- }
25652
- ],
25653
- "doc": "The schedule associated with an ingestion source."
25654
- }
25687
+ "string"
25655
25688
  ],
25656
- "name": "schedule",
25689
+ "name": "description",
25657
25690
  "default": null,
25658
- "doc": "The schedule on which the ingestion source is executed"
25691
+ "doc": "Description of the workflow. \nIf this is based on a Form trigger, this will be displayed to users when completing the form. "
25659
25692
  },
25660
25693
  {
25661
25694
  "type": {
25662
25695
  "type": "record",
25663
- "name": "DataHubIngestionSourceConfig",
25664
- "namespace": "com.linkedin.pegasus2avro.ingestion",
25696
+ "name": "ActionWorkflowTrigger",
25697
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25665
25698
  "fields": [
25666
25699
  {
25667
- "type": "string",
25668
- "name": "recipe",
25669
- "doc": "The JSON recipe to use for ingestion"
25700
+ "Searchable": {
25701
+ "fieldName": "triggerType"
25702
+ },
25703
+ "type": {
25704
+ "type": "enum",
25705
+ "symbolDocs": {
25706
+ "FORM_SUBMITTED": "The only trigger type currently supported - a workflow request form is submitted successfully. \nThis enables admins to create forms and display them on various entrypoints. \nThe form is also captured in the field \"form\" below. "
25707
+ },
25708
+ "name": "ActionWorkflowTriggerType",
25709
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25710
+ "symbols": [
25711
+ "FORM_SUBMITTED"
25712
+ ]
25713
+ },
25714
+ "name": "type",
25715
+ "doc": "A type of step / task / node in the Action Workflow. "
25670
25716
  },
25671
25717
  {
25672
25718
  "type": [
25673
25719
  "null",
25674
- "string"
25675
- ],
25676
- "name": "version",
25720
+ {
25721
+ "type": "record",
25722
+ "name": "ActionWorkflowForm",
25723
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25724
+ "fields": [
25725
+ {
25726
+ "type": {
25727
+ "type": "array",
25728
+ "items": {
25729
+ "type": "record",
25730
+ "name": "ActionWorkflowEntrypoint",
25731
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25732
+ "fields": [
25733
+ {
25734
+ "Searchable": {
25735
+ "fieldName": "entrypointType"
25736
+ },
25737
+ "type": {
25738
+ "type": "enum",
25739
+ "symbolDocs": {
25740
+ "ENTITY_PROFILE": " Visible on the entity profile page. For all valid entity types specified in the parent object. ",
25741
+ "HOME": " Visible on the home page to all users. "
25742
+ },
25743
+ "name": "ActionWorkflowEntrypointType",
25744
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25745
+ "symbols": [
25746
+ "HOME",
25747
+ "ENTITY_PROFILE"
25748
+ ]
25749
+ },
25750
+ "name": "type",
25751
+ "doc": "The type of entry point for the action request workflow.\nThis determines where the action request workflow will be displayed."
25752
+ },
25753
+ {
25754
+ "type": "string",
25755
+ "name": "label",
25756
+ "doc": "The label for the entry point, which is displayed to users.\nThis should be a user-friendly name that describes the action request."
25757
+ },
25758
+ {
25759
+ "type": [
25760
+ "null",
25761
+ "com.linkedin.pegasus2avro.metadata.query.filter.Filter"
25762
+ ],
25763
+ "name": "filter",
25764
+ "default": null,
25765
+ "doc": "Additional filter criteria to determine when the entry point should be displayed.\n\nNot yet supported (but will be in the future)."
25766
+ }
25767
+ ],
25768
+ "doc": "The entry point arguments for the action request workflowform.\nIn the future, we may extend this model to support more granular entry point filters."
25769
+ }
25770
+ },
25771
+ "name": "entrypoints",
25772
+ "doc": "Entrypoints for form submission."
25773
+ },
25774
+ {
25775
+ "Searchable": {
25776
+ "/*": {
25777
+ "fieldName": "entityTypes",
25778
+ "fieldType": "URN"
25779
+ }
25780
+ },
25781
+ "Urn": "Urn",
25782
+ "urn_is_array": true,
25783
+ "type": [
25784
+ "null",
25785
+ {
25786
+ "type": "array",
25787
+ "items": "string"
25788
+ }
25789
+ ],
25790
+ "name": "entityTypes",
25791
+ "default": null,
25792
+ "doc": "The valid entity type URNs that can be associated with a Workflow Form.\nIf provided, this will require that an entity of one of the provided types is specified when completing the form.\n\nIf no entity types are provided, the workflow form can be submitted without specifying an entity. In general, this should\nbe populated for workflows of type ACCESS to enable users to request access to a specific entity!\n\nIf specified, the associated action requests for this workflow will contain an URN of the corresponding type inside of\nthe `resource` field.\n\nNote that associating multiple entities with a single Action Request is not yet supported."
25793
+ },
25794
+ {
25795
+ "type": {
25796
+ "type": "array",
25797
+ "items": {
25798
+ "type": "record",
25799
+ "name": "ActionWorkflowField",
25800
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25801
+ "fields": [
25802
+ {
25803
+ "type": "string",
25804
+ "name": "id",
25805
+ "doc": "Workflow-local id for the field"
25806
+ },
25807
+ {
25808
+ "type": "string",
25809
+ "name": "name",
25810
+ "doc": "The display name or label for the field, for rendering"
25811
+ },
25812
+ {
25813
+ "type": [
25814
+ "null",
25815
+ "string"
25816
+ ],
25817
+ "name": "description",
25818
+ "default": null,
25819
+ "doc": "The description for the field, for rendering"
25820
+ },
25821
+ {
25822
+ "java": {
25823
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
25824
+ },
25825
+ "Urn": "Urn",
25826
+ "type": "string",
25827
+ "name": "valueType",
25828
+ "doc": "The urn of the value type for the values - reused from structured properties.\nAlso, used for rendering"
25829
+ },
25830
+ {
25831
+ "Urn": "Urn",
25832
+ "urn_is_array": true,
25833
+ "type": [
25834
+ "null",
25835
+ {
25836
+ "type": "array",
25837
+ "items": "string"
25838
+ }
25839
+ ],
25840
+ "name": "allowedEntityTypes",
25841
+ "default": null,
25842
+ "doc": "The urns for allowed entity types."
25843
+ },
25844
+ {
25845
+ "type": [
25846
+ "null",
25847
+ {
25848
+ "type": "array",
25849
+ "items": {
25850
+ "type": "record",
25851
+ "name": "PropertyValue",
25852
+ "namespace": "com.linkedin.pegasus2avro.structured",
25853
+ "fields": [
25854
+ {
25855
+ "type": [
25856
+ "string",
25857
+ "double"
25858
+ ],
25859
+ "name": "value"
25860
+ },
25861
+ {
25862
+ "type": [
25863
+ "null",
25864
+ "string"
25865
+ ],
25866
+ "name": "description",
25867
+ "default": null,
25868
+ "doc": "Optional description of the property value"
25869
+ }
25870
+ ]
25871
+ }
25872
+ }
25873
+ ],
25874
+ "name": "allowedValues",
25875
+ "default": null,
25876
+ "doc": "A list of allowed values that the property is allowed to take.\nIf this is not specified, then the property can take any value of given type."
25877
+ },
25878
+ {
25879
+ "type": {
25880
+ "type": "enum",
25881
+ "name": "PropertyCardinality",
25882
+ "namespace": "com.linkedin.pegasus2avro.structured",
25883
+ "symbols": [
25884
+ "SINGLE",
25885
+ "MULTIPLE"
25886
+ ]
25887
+ },
25888
+ "name": "cardinality",
25889
+ "doc": "Whether or not multiple values are allowed."
25890
+ },
25891
+ {
25892
+ "type": "boolean",
25893
+ "name": "required",
25894
+ "default": false,
25895
+ "doc": "Whether the field is required or not."
25896
+ },
25897
+ {
25898
+ "type": [
25899
+ "null",
25900
+ {
25901
+ "type": "record",
25902
+ "name": "ActionWorkflowFieldCondition",
25903
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25904
+ "fields": [
25905
+ {
25906
+ "type": {
25907
+ "type": "enum",
25908
+ "symbolDocs": {
25909
+ "SINGLE_FIELD_VALUE": "The field should be shown if the value of a previously completed field matches the specified value."
25910
+ },
25911
+ "name": "ActionWorkflowFieldConditionType",
25912
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25913
+ "symbols": [
25914
+ "SINGLE_FIELD_VALUE"
25915
+ ]
25916
+ },
25917
+ "name": "type",
25918
+ "doc": "The type of field condition"
25919
+ },
25920
+ {
25921
+ "type": [
25922
+ "null",
25923
+ {
25924
+ "type": "record",
25925
+ "name": "ActionWorkflowSingleFieldValueCondition",
25926
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25927
+ "fields": [
25928
+ {
25929
+ "type": "string",
25930
+ "name": "field",
25931
+ "doc": "The id / name of the field that the criterion refers to"
25932
+ },
25933
+ {
25934
+ "type": {
25935
+ "type": "array",
25936
+ "items": "string"
25937
+ },
25938
+ "name": "values",
25939
+ "default": [],
25940
+ "doc": "Values. one of which the intended field should match\nNote, if values is set, the above \"value\" field will be ignored"
25941
+ },
25942
+ {
25943
+ "type": "com.linkedin.pegasus2avro.metadata.query.filter.Condition",
25944
+ "name": "condition",
25945
+ "default": "EQUAL",
25946
+ "doc": "The condition for the criterion, e.g. EQUAL, START_WITH"
25947
+ },
25948
+ {
25949
+ "type": "boolean",
25950
+ "name": "negated",
25951
+ "default": false,
25952
+ "doc": "Whether the condition should be negated"
25953
+ }
25954
+ ],
25955
+ "doc": "A specific type of field condition that checks whether a field should be shown based on the value of a previously completed field."
25956
+ }
25957
+ ],
25958
+ "name": "singleFieldValueCondition",
25959
+ "default": null,
25960
+ "doc": "A field value condition. Present if type is FIELD_VALUE."
25961
+ }
25962
+ ],
25963
+ "doc": "A condition that determines whether a form field should be shown in the action workflow.\nThis may evolve in the future to have additional condition types."
25964
+ }
25965
+ ],
25966
+ "name": "condition",
25967
+ "default": null,
25968
+ "doc": "A dynamic condition that determines whether the field should be shown or not."
25969
+ }
25970
+ ],
25971
+ "doc": "A field inside an Action Workflow Form."
25972
+ }
25973
+ },
25974
+ "name": "fields",
25975
+ "doc": "Fields comprising the workflow request. These are the inputs / arguments required to trigger the workflow."
25976
+ }
25977
+ ]
25978
+ }
25979
+ ],
25980
+ "name": "form",
25981
+ "default": null,
25982
+ "doc": "The form definition that will trigger the action workflow when submitted. "
25983
+ }
25984
+ ],
25985
+ "doc": "Defines the conditions on which the action workflow is triggered. \n\nCurrently we have only one trigger type, but we expect this to extend e.g. in the case that change events, proposals,\nor other actions can trigger workflows. \n\nCurrently, the workflow must have exactly 1 trigger condition. We don't expect this to change. "
25986
+ },
25987
+ "name": "trigger",
25988
+ "doc": "The action or event that triggers the workflow. This MUST be stored here, because there is no other\nplace to capture dynamic form state like this. "
25989
+ },
25990
+ {
25991
+ "type": {
25992
+ "type": "array",
25993
+ "items": {
25994
+ "type": "record",
25995
+ "name": "ActionWorkflowStep",
25996
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25997
+ "fields": [
25998
+ {
25999
+ "type": "string",
26000
+ "name": "id",
26001
+ "doc": "A unique identifier for this step within the workflow.\nThis ID must be unique within the workflow and is used to match values during workflow execution."
26002
+ },
26003
+ {
26004
+ "type": {
26005
+ "type": "enum",
26006
+ "symbolDocs": {
26007
+ "APPROVAL": "The only step type currently supported - a human review step. \nThis step type requires that an assigned user reviews an action request associated with this workflow. \nreviews the request, approving or denying it (currently the actions supported, may extend later). "
26008
+ },
26009
+ "name": "ActionWorkflowStepType",
26010
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
26011
+ "symbols": [
26012
+ "APPROVAL"
26013
+ ]
26014
+ },
26015
+ "name": "type",
26016
+ "doc": "A type of step / task / node in the Action Workflow. "
26017
+ },
26018
+ {
26019
+ "type": [
26020
+ "null",
26021
+ "string"
26022
+ ],
26023
+ "name": "description",
26024
+ "default": null,
26025
+ "doc": "Optional description shown alongside the step to explain its purpose."
26026
+ },
26027
+ {
26028
+ "type": [
26029
+ "null",
26030
+ {
26031
+ "type": "record",
26032
+ "name": "ActionWorkflowStepActors",
26033
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
26034
+ "fields": [
26035
+ {
26036
+ "Urn": "Urn",
26037
+ "urn_is_array": true,
26038
+ "type": {
26039
+ "type": "array",
26040
+ "items": "string"
26041
+ },
26042
+ "name": "users",
26043
+ "doc": "Users statically assigned to perform the review step."
26044
+ },
26045
+ {
26046
+ "Urn": "Urn",
26047
+ "urn_is_array": true,
26048
+ "type": {
26049
+ "type": "array",
26050
+ "items": "string"
26051
+ },
26052
+ "name": "groups",
26053
+ "doc": "Groups statically assigned to perform the review step."
26054
+ },
26055
+ {
26056
+ "Urn": "Urn",
26057
+ "urn_is_array": true,
26058
+ "type": {
26059
+ "type": "array",
26060
+ "items": "string"
26061
+ },
26062
+ "name": "roles",
26063
+ "doc": "Roles statically assigned to perform the review step."
26064
+ },
26065
+ {
26066
+ "type": [
26067
+ "null",
26068
+ {
26069
+ "type": "record",
26070
+ "name": "ActionWorkflowStepDynamicAssignment",
26071
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
26072
+ "fields": [
26073
+ {
26074
+ "type": {
26075
+ "type": "enum",
26076
+ "symbolDocs": {
26077
+ "ENTITY_DATA_PRODUCT_OWNERS": "Assign the entity data product owners.",
26078
+ "ENTITY_DOMAIN_OWNERS": "Assign the entity domain owners.",
26079
+ "ENTITY_OWNERS": "Assign the entity owners."
26080
+ },
26081
+ "name": "ActionWorkflowStepDynamicAssignmentType",
26082
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
26083
+ "symbols": [
26084
+ "ENTITY_OWNERS",
26085
+ "ENTITY_DOMAIN_OWNERS",
26086
+ "ENTITY_DATA_PRODUCT_OWNERS"
26087
+ ]
26088
+ },
26089
+ "name": "type",
26090
+ "doc": "A standardized policy for resolving actors dynamically for an access request."
26091
+ },
26092
+ {
26093
+ "Urn": "Urn",
26094
+ "urn_is_array": true,
26095
+ "type": [
26096
+ "null",
26097
+ {
26098
+ "type": "array",
26099
+ "items": "string"
26100
+ }
26101
+ ],
26102
+ "name": "ownershipTypeUrns",
26103
+ "default": null,
26104
+ "doc": "Optional: A well defined set of ownership type urns to including in routing."
26105
+ }
26106
+ ]
26107
+ }
26108
+ ],
26109
+ "name": "dynamicAssignment",
26110
+ "default": null,
26111
+ "doc": "Dynamic assignment type for the review step."
26112
+ }
26113
+ ],
26114
+ "doc": "A definition of the actors required to review."
26115
+ }
26116
+ ],
26117
+ "name": "actors",
26118
+ "default": null,
26119
+ "doc": "A definition of the actors required to execute the step, if there are any.\n\nFor steps of type REQUEST_REVIEW, this field MUST be provided! "
26120
+ }
26121
+ ],
26122
+ "doc": "Defines a single review step in a workflow.\n\nToday, steps are simple. They execute in sequence after the trigger event. \n\nIn the future, we may extend steps to include \"depends on steps\" to form a DAG structure across\nsteps. For now, steps execute in linear sequence after the trigger event -- however the expectation\nis that they COULD run in parallel after the trigger event without a problem in the future.\n\nIf necessary, we'll extend this to represent conditional branching nodes as a step / node in the Workflow, e.g. Conditional Step, Notification Step, Review Step\n\nToday, step state is reflected via a single entity representing the workflow instance: the ActionRequest entity.\nIn the future we'll explore modeling individual step states separately if required."
26123
+ }
26124
+ },
26125
+ "name": "steps",
26126
+ "doc": "Definition of the steps / tasks / nodes comprising the workflow definition. This is the part we can aim \nto be able to convert / transform into serialized XML BPMN Format. For now, we model it strongly here. \nIf we can successfully use BPMN for step state, we can deprecate this field in place of the XML serialization. \n\nThis is the part we'll try to build a transpiler to BPMN for execution for. Ultimately, we do need \na representation we can easily convert into the frontend framework for display. This represents the set of \nwell known workflow step types - across tasks, conditionals, notifications, etc - that are officially supported today.\n\nIf necessary, we'll extend this to represent conditional branching nodes as a step / node in the Workflow, e.g. Conditional Step, Notification Step, Review Step"
26127
+ },
26128
+ {
26129
+ "Searchable": {
26130
+ "/actor": {
26131
+ "fieldName": "createdBy",
26132
+ "fieldType": "URN"
26133
+ },
26134
+ "/time": {
26135
+ "fieldName": "createdAt",
26136
+ "fieldType": "DATETIME"
26137
+ }
26138
+ },
26139
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
26140
+ "name": "created",
26141
+ "doc": "Audit stamp capturing the time and actor who created the workflow."
26142
+ },
26143
+ {
26144
+ "Searchable": {
26145
+ "/time": {
26146
+ "fieldName": "lastModifiedAt",
26147
+ "fieldType": "DATETIME"
26148
+ }
26149
+ },
26150
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
26151
+ "name": "lastModified",
26152
+ "doc": "Audit stamp capturing the time and actor who last modified the workflow."
26153
+ }
26154
+ ],
26155
+ "doc": "The ActionWorkflowInfo record captures the metadata and configuration of a workflow.\nTODO: In the future, we may store the serialized camunda / flowable workflow instance ID inside.\nWe'll likely also need to add the \"steps\" into here since we'll need that to inform state transitions."
26156
+ },
26157
+ {
26158
+ "type": "record",
26159
+ "Aspect": {
26160
+ "name": "dataHubIngestionSourceInfo"
26161
+ },
26162
+ "name": "DataHubIngestionSourceInfo",
26163
+ "namespace": "com.linkedin.pegasus2avro.ingestion",
26164
+ "fields": [
26165
+ {
26166
+ "Searchable": {
26167
+ "fieldType": "TEXT_PARTIAL"
26168
+ },
26169
+ "type": "string",
26170
+ "name": "name",
26171
+ "doc": "The display name of the ingestion source"
26172
+ },
26173
+ {
26174
+ "Searchable": {
26175
+ "fieldType": "KEYWORD",
26176
+ "queryByDefault": false
26177
+ },
26178
+ "type": "string",
26179
+ "name": "type",
26180
+ "doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
26181
+ },
26182
+ {
26183
+ "java": {
26184
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
26185
+ },
26186
+ "Urn": "Urn",
26187
+ "type": [
26188
+ "null",
26189
+ "string"
26190
+ ],
26191
+ "name": "platform",
26192
+ "default": null,
26193
+ "doc": "Data Platform URN associated with the source"
26194
+ },
26195
+ {
26196
+ "type": [
26197
+ "null",
26198
+ {
26199
+ "type": "record",
26200
+ "name": "DataHubIngestionSourceSchedule",
26201
+ "namespace": "com.linkedin.pegasus2avro.ingestion",
26202
+ "fields": [
26203
+ {
26204
+ "type": "string",
26205
+ "name": "interval",
26206
+ "doc": "A cron-formatted execution interval, as a cron string, e.g. * * * * *"
26207
+ },
26208
+ {
26209
+ "type": "string",
26210
+ "name": "timezone",
26211
+ "doc": "Timezone in which the cron interval applies, e.g. America/Los Angeles"
26212
+ }
26213
+ ],
26214
+ "doc": "The schedule associated with an ingestion source."
26215
+ }
26216
+ ],
26217
+ "name": "schedule",
26218
+ "default": null,
26219
+ "doc": "The schedule on which the ingestion source is executed"
26220
+ },
26221
+ {
26222
+ "type": {
26223
+ "type": "record",
26224
+ "name": "DataHubIngestionSourceConfig",
26225
+ "namespace": "com.linkedin.pegasus2avro.ingestion",
26226
+ "fields": [
26227
+ {
26228
+ "type": "string",
26229
+ "name": "recipe",
26230
+ "doc": "The JSON recipe to use for ingestion"
26231
+ },
26232
+ {
26233
+ "type": [
26234
+ "null",
26235
+ "string"
26236
+ ],
26237
+ "name": "version",
25677
26238
  "default": null,
25678
26239
  "doc": "The PyPI version of the datahub CLI to use when executing a recipe"
25679
26240
  },
@@ -28685,29 +29246,7 @@
28685
29246
  "null",
28686
29247
  {
28687
29248
  "type": "array",
28688
- "items": {
28689
- "type": "record",
28690
- "name": "PropertyValue",
28691
- "namespace": "com.linkedin.pegasus2avro.structured",
28692
- "fields": [
28693
- {
28694
- "type": [
28695
- "string",
28696
- "double"
28697
- ],
28698
- "name": "value"
28699
- },
28700
- {
28701
- "type": [
28702
- "null",
28703
- "string"
28704
- ],
28705
- "name": "description",
28706
- "default": null,
28707
- "doc": "Optional description of the property value"
28708
- }
28709
- ]
28710
- }
29249
+ "items": "com.linkedin.pegasus2avro.structured.PropertyValue"
28711
29250
  }
28712
29251
  ],
28713
29252
  "name": "allowedValues",
@@ -28716,15 +29255,7 @@
28716
29255
  },
28717
29256
  {
28718
29257
  "type": [
28719
- {
28720
- "type": "enum",
28721
- "name": "PropertyCardinality",
28722
- "namespace": "com.linkedin.pegasus2avro.structured",
28723
- "symbols": [
28724
- "SINGLE",
28725
- "MULTIPLE"
28726
- ]
28727
- },
29258
+ "com.linkedin.pegasus2avro.structured.PropertyCardinality",
28728
29259
  "null"
28729
29260
  ],
28730
29261
  "name": "cardinality",
@@ -29011,8 +29542,7 @@
29011
29542
  "HIERARCHY": "A module displaying a hierarchy to navigate",
29012
29543
  "LINK": "Link type module",
29013
29544
  "OWNED_ASSETS": "Module displaying assets owned by a user",
29014
- "RICH_TEXT": "Module containing rich text to be rendered",
29015
- "SUBSCRIBED_ASSETS": "Module displaying assets subscribed to by a given user"
29545
+ "RICH_TEXT": "Module containing rich text to be rendered"
29016
29546
  },
29017
29547
  "name": "DataHubPageModuleType",
29018
29548
  "namespace": "com.linkedin.pegasus2avro.module",
@@ -29022,8 +29552,7 @@
29022
29552
  "ASSET_COLLECTION",
29023
29553
  "HIERARCHY",
29024
29554
  "OWNED_ASSETS",
29025
- "DOMAINS",
29026
- "SUBSCRIBED_ASSETS"
29555
+ "DOMAINS"
29027
29556
  ],
29028
29557
  "doc": "Enum containing the types of page modules that there are"
29029
29558
  },
@@ -29077,24 +29606,12 @@
29077
29606
  "namespace": "com.linkedin.pegasus2avro.module",
29078
29607
  "fields": [
29079
29608
  {
29609
+ "java": {
29610
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
29611
+ },
29612
+ "Urn": "Urn",
29080
29613
  "type": "string",
29081
- "name": "linkUrl"
29082
- },
29083
- {
29084
- "type": [
29085
- "null",
29086
- "string"
29087
- ],
29088
- "name": "imageUrl",
29089
- "default": null
29090
- },
29091
- {
29092
- "type": [
29093
- "null",
29094
- "string"
29095
- ],
29096
- "name": "description",
29097
- "default": null
29614
+ "name": "linkUrn"
29098
29615
  }
29099
29616
  ]
29100
29617
  }
@@ -29121,73 +29638,6 @@
29121
29638
  "name": "richTextParams",
29122
29639
  "default": null,
29123
29640
  "doc": "The params required if the module is type RICH_TEXT"
29124
- },
29125
- {
29126
- "type": [
29127
- "null",
29128
- {
29129
- "type": "record",
29130
- "name": "AssetCollectionModuleParams",
29131
- "namespace": "com.linkedin.pegasus2avro.module",
29132
- "fields": [
29133
- {
29134
- "Urn": "Urn",
29135
- "urn_is_array": true,
29136
- "type": {
29137
- "type": "array",
29138
- "items": "string"
29139
- },
29140
- "name": "assetUrns"
29141
- }
29142
- ],
29143
- "doc": "The params required if the module is type ASSET_COLLECTION"
29144
- }
29145
- ],
29146
- "name": "assetCollectionParams",
29147
- "default": null,
29148
- "doc": "The params required if the module is type ASSET_COLLECTION"
29149
- },
29150
- {
29151
- "type": [
29152
- "null",
29153
- {
29154
- "type": "record",
29155
- "name": "HierarchyModuleParams",
29156
- "namespace": "com.linkedin.pegasus2avro.module",
29157
- "fields": [
29158
- {
29159
- "Urn": "Urn",
29160
- "urn_is_array": true,
29161
- "type": [
29162
- "null",
29163
- {
29164
- "type": "array",
29165
- "items": "string"
29166
- }
29167
- ],
29168
- "name": "assetUrns",
29169
- "default": null
29170
- },
29171
- {
29172
- "type": "boolean",
29173
- "name": "showRelatedEntities"
29174
- },
29175
- {
29176
- "type": [
29177
- "null",
29178
- "string"
29179
- ],
29180
- "name": "relatedEntitiesFilterJson",
29181
- "default": null,
29182
- "doc": "Optional filters to filter relatedEntities (assetUrns) out\n\nThe stringified json representing the logical predicate built in the UI to select assets.\nThis predicate is turned into orFilters to send through graphql since graphql doesn't support\narbitrary nesting. This string is used to restore the UI for this logical predicate."
29183
- }
29184
- ],
29185
- "doc": "The params required if the module is type HIERARCHY_VIEW"
29186
- }
29187
- ],
29188
- "name": "hierarchyViewParams",
29189
- "default": null,
29190
- "doc": "The params required if the module is type HIERARCHY_VIEW"
29191
29641
  }
29192
29642
  ],
29193
29643
  "doc": "The specific parameters stored for a module"
@@ -29595,19 +30045,10 @@
29595
30045
  "namespace": "com.linkedin.pegasus2avro.identity",
29596
30046
  "fields": [
29597
30047
  {
29598
- "Relationship": {
29599
- "entityTypes": [
29600
- "dataHubPageTemplate"
29601
- ],
29602
- "name": "HasPersonalPageTemplate"
29603
- },
29604
30048
  "java": {
29605
30049
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
29606
30050
  },
29607
30051
  "Urn": "Urn",
29608
- "entityTypes": [
29609
- "dataHubPageTemplate"
29610
- ],
29611
30052
  "type": [
29612
30053
  "null",
29613
30054
  "string"