acryl-datahub-cloud 0.3.11rc0__py3-none-any.whl → 0.3.16.1rc0__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 (238) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/acryl_cs_issues/models.py +5 -3
  3. acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
  4. acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
  5. acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +569 -0
  6. acryl_datahub_cloud/datahub_forms_notifications/get_feature_flag.gql +7 -0
  7. acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
  8. acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
  9. acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
  10. acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
  11. acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +37 -13
  12. acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +55 -24
  13. acryl_datahub_cloud/datahub_reporting/extract_graph.py +4 -3
  14. acryl_datahub_cloud/datahub_reporting/extract_sql.py +242 -51
  15. acryl_datahub_cloud/datahub_reporting/forms.py +1 -1
  16. acryl_datahub_cloud/datahub_reporting/forms_config.py +3 -2
  17. acryl_datahub_cloud/datahub_restore/source.py +3 -2
  18. acryl_datahub_cloud/datahub_usage_reporting/excluded.py +94 -0
  19. acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
  20. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +518 -77
  21. acryl_datahub_cloud/elasticsearch/graph_service.py +76 -14
  22. acryl_datahub_cloud/graphql_utils.py +64 -0
  23. acryl_datahub_cloud/lineage_features/source.py +555 -49
  24. acryl_datahub_cloud/metadata/_urns/urn_defs.py +2296 -1900
  25. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
  26. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -0
  27. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
  28. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +4 -2
  29. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +6 -0
  30. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/conversation/__init__.py +29 -0
  31. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +2 -0
  32. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/execution/__init__.py +2 -0
  33. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/file/__init__.py +19 -0
  34. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
  35. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +8 -0
  36. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/knowledge/__init__.py +33 -0
  37. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  38. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +12 -0
  39. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +2 -0
  40. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
  41. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
  42. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +4 -0
  43. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/role/__init__.py +2 -0
  44. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/asset/__init__.py +19 -0
  45. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
  46. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +31 -0
  47. acryl_datahub_cloud/metadata/schema.avsc +25091 -20557
  48. acryl_datahub_cloud/metadata/schema_classes.py +29269 -23863
  49. acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +235 -2
  50. acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
  51. acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
  52. acryl_datahub_cloud/metadata/schemas/Actors.avsc +38 -1
  53. acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
  54. acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +75 -0
  55. acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
  56. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +353 -215
  57. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +147 -20
  58. acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
  59. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +166 -21
  60. acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +15 -2
  61. acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +54 -0
  62. acryl_datahub_cloud/metadata/schemas/AssetSettings.avsc +63 -0
  63. acryl_datahub_cloud/metadata/schemas/BusinessAttributeInfo.avsc +7 -3
  64. acryl_datahub_cloud/metadata/schemas/ChartInfo.avsc +20 -6
  65. acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
  66. acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
  67. acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
  68. acryl_datahub_cloud/metadata/schemas/ContainerProperties.avsc +16 -5
  69. acryl_datahub_cloud/metadata/schemas/CorpGroupEditableInfo.avsc +2 -1
  70. acryl_datahub_cloud/metadata/schemas/CorpGroupInfo.avsc +7 -3
  71. acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
  72. acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +127 -2
  73. acryl_datahub_cloud/metadata/schemas/CorpUserEditableInfo.avsc +1 -1
  74. acryl_datahub_cloud/metadata/schemas/CorpUserInfo.avsc +18 -2
  75. acryl_datahub_cloud/metadata/schemas/CorpUserInvitationStatus.avsc +106 -0
  76. acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +4 -1
  77. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +304 -2
  78. acryl_datahub_cloud/metadata/schemas/CorpUserUsageFeatures.avsc +86 -0
  79. acryl_datahub_cloud/metadata/schemas/DashboardInfo.avsc +11 -5
  80. acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
  81. acryl_datahub_cloud/metadata/schemas/DataFlowInfo.avsc +15 -5
  82. acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
  83. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationInfo.avsc +256 -0
  84. acryl_datahub_cloud/metadata/schemas/DataHubAiConversationKey.avsc +22 -0
  85. acryl_datahub_cloud/metadata/schemas/DataHubFileInfo.avsc +234 -0
  86. acryl_datahub_cloud/metadata/schemas/DataHubFileKey.avsc +22 -0
  87. acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
  88. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  89. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +308 -0
  90. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  91. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +251 -0
  92. acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
  93. acryl_datahub_cloud/metadata/schemas/DataJobInfo.avsc +13 -4
  94. acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
  95. acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
  96. acryl_datahub_cloud/metadata/schemas/DataPlatformInfo.avsc +3 -1
  97. acryl_datahub_cloud/metadata/schemas/DataPlatformInstanceProperties.avsc +5 -2
  98. acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +4 -0
  99. acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +2 -0
  100. acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +6 -3
  101. acryl_datahub_cloud/metadata/schemas/DataTypeInfo.avsc +5 -0
  102. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +10 -2
  103. acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc +12 -5
  104. acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc +8 -0
  105. acryl_datahub_cloud/metadata/schemas/DocumentInfo.avsc +407 -0
  106. acryl_datahub_cloud/metadata/schemas/DocumentKey.avsc +35 -0
  107. acryl_datahub_cloud/metadata/schemas/DocumentSettings.avsc +79 -0
  108. acryl_datahub_cloud/metadata/schemas/DomainKey.avsc +2 -0
  109. acryl_datahub_cloud/metadata/schemas/DomainProperties.avsc +7 -3
  110. acryl_datahub_cloud/metadata/schemas/EditableContainerProperties.avsc +2 -1
  111. acryl_datahub_cloud/metadata/schemas/EditableDashboardProperties.avsc +2 -1
  112. acryl_datahub_cloud/metadata/schemas/EditableDataFlowProperties.avsc +2 -1
  113. acryl_datahub_cloud/metadata/schemas/EditableDataJobProperties.avsc +2 -1
  114. acryl_datahub_cloud/metadata/schemas/EditableDatasetProperties.avsc +2 -1
  115. acryl_datahub_cloud/metadata/schemas/EditableERModelRelationshipProperties.avsc +2 -1
  116. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureProperties.avsc +2 -1
  117. acryl_datahub_cloud/metadata/schemas/EditableMLFeatureTableProperties.avsc +2 -1
  118. acryl_datahub_cloud/metadata/schemas/EditableMLModelGroupProperties.avsc +2 -1
  119. acryl_datahub_cloud/metadata/schemas/EditableMLModelProperties.avsc +2 -1
  120. acryl_datahub_cloud/metadata/schemas/EditableNotebookProperties.avsc +2 -1
  121. acryl_datahub_cloud/metadata/schemas/EditableSchemaMetadata.avsc +4 -2
  122. acryl_datahub_cloud/metadata/schemas/EntityTypeInfo.avsc +5 -0
  123. acryl_datahub_cloud/metadata/schemas/ExecutionRequestArtifactsLocation.avsc +16 -0
  124. acryl_datahub_cloud/metadata/schemas/ExecutionRequestKey.avsc +2 -1
  125. acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
  126. acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
  127. acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
  128. acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
  129. acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
  130. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +416 -0
  131. acryl_datahub_cloud/metadata/schemas/GlobalTags.avsc +2 -1
  132. acryl_datahub_cloud/metadata/schemas/GlossaryNodeInfo.avsc +3 -1
  133. acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
  134. acryl_datahub_cloud/metadata/schemas/GlossaryTermInfo.avsc +3 -1
  135. acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +2 -0
  136. acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc +4 -0
  137. acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
  138. acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
  139. acryl_datahub_cloud/metadata/schemas/InferredMetadata.avsc +71 -1
  140. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +2 -1
  141. acryl_datahub_cloud/metadata/schemas/InviteToken.avsc +26 -0
  142. acryl_datahub_cloud/metadata/schemas/LineageFeatures.avsc +67 -42
  143. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +145 -0
  144. acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +4 -1
  145. acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +4 -1
  146. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +7 -1
  147. acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +9 -1
  148. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +9 -1
  149. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +4 -2
  150. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +4 -1
  151. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +418 -97
  152. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
  153. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
  154. acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +54 -9
  155. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +163 -23
  156. acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +9 -1
  157. acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +128 -3
  158. acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc +5 -2
  159. acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
  160. acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +91 -4
  161. acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
  162. acryl_datahub_cloud/metadata/schemas/Ownership.avsc +71 -1
  163. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +2 -13
  164. acryl_datahub_cloud/metadata/schemas/RelationshipChangeEvent.avsc +215 -0
  165. acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc +3 -1
  166. acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc +3 -1
  167. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +3 -0
  168. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +2 -1
  169. acryl_datahub_cloud/metadata/schemas/SemanticContent.avsc +123 -0
  170. acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc +69 -0
  171. acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +15 -4
  172. acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +9 -0
  173. acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +136 -5
  174. acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc +2 -1
  175. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
  176. acryl_datahub_cloud/metadata/schemas/TagProperties.avsc +3 -1
  177. acryl_datahub_cloud/metadata/schemas/TestInfo.avsc +2 -1
  178. acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
  179. acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc +10 -0
  180. acryl_datahub_cloud/notifications/__init__.py +0 -0
  181. acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
  182. acryl_datahub_cloud/sdk/__init__.py +69 -0
  183. acryl_datahub_cloud/sdk/assertion/__init__.py +58 -0
  184. acryl_datahub_cloud/sdk/assertion/assertion_base.py +779 -0
  185. acryl_datahub_cloud/sdk/assertion/column_metric_assertion.py +191 -0
  186. acryl_datahub_cloud/sdk/assertion/column_value_assertion.py +431 -0
  187. acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
  188. acryl_datahub_cloud/sdk/assertion/schema_assertion.py +268 -0
  189. acryl_datahub_cloud/sdk/assertion/smart_column_metric_assertion.py +212 -0
  190. acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
  191. acryl_datahub_cloud/sdk/assertion/smart_sql_assertion.py +156 -0
  192. acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
  193. acryl_datahub_cloud/sdk/assertion/sql_assertion.py +273 -0
  194. acryl_datahub_cloud/sdk/assertion/types.py +20 -0
  195. acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
  196. acryl_datahub_cloud/sdk/assertion_client/__init__.py +0 -0
  197. acryl_datahub_cloud/sdk/assertion_client/column_metric.py +545 -0
  198. acryl_datahub_cloud/sdk/assertion_client/column_value.py +617 -0
  199. acryl_datahub_cloud/sdk/assertion_client/freshness.py +371 -0
  200. acryl_datahub_cloud/sdk/assertion_client/helpers.py +166 -0
  201. acryl_datahub_cloud/sdk/assertion_client/schema.py +358 -0
  202. acryl_datahub_cloud/sdk/assertion_client/smart_column_metric.py +540 -0
  203. acryl_datahub_cloud/sdk/assertion_client/smart_freshness.py +373 -0
  204. acryl_datahub_cloud/sdk/assertion_client/smart_sql.py +411 -0
  205. acryl_datahub_cloud/sdk/assertion_client/smart_volume.py +380 -0
  206. acryl_datahub_cloud/sdk/assertion_client/sql.py +410 -0
  207. acryl_datahub_cloud/sdk/assertion_client/volume.py +446 -0
  208. acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
  209. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +1470 -0
  210. acryl_datahub_cloud/sdk/assertion_input/column_assertion_constants.py +114 -0
  211. acryl_datahub_cloud/sdk/assertion_input/column_assertion_utils.py +284 -0
  212. acryl_datahub_cloud/sdk/assertion_input/column_metric_assertion_input.py +759 -0
  213. acryl_datahub_cloud/sdk/assertion_input/column_metric_constants.py +109 -0
  214. acryl_datahub_cloud/sdk/assertion_input/column_value_assertion_input.py +810 -0
  215. acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +305 -0
  216. acryl_datahub_cloud/sdk/assertion_input/schema_assertion_input.py +413 -0
  217. acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +793 -0
  218. acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +218 -0
  219. acryl_datahub_cloud/sdk/assertion_input/smart_sql_assertion_input.py +181 -0
  220. acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +189 -0
  221. acryl_datahub_cloud/sdk/assertion_input/sql_assertion_input.py +320 -0
  222. acryl_datahub_cloud/sdk/assertion_input/volume_assertion_input.py +635 -0
  223. acryl_datahub_cloud/sdk/assertions_client.py +1074 -0
  224. acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
  225. acryl_datahub_cloud/sdk/entities/assertion.py +439 -0
  226. acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
  227. acryl_datahub_cloud/sdk/entities/subscription.py +100 -0
  228. acryl_datahub_cloud/sdk/errors.py +34 -0
  229. acryl_datahub_cloud/sdk/resolver_client.py +42 -0
  230. acryl_datahub_cloud/sdk/subscription_client.py +737 -0
  231. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/METADATA +55 -49
  232. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/RECORD +235 -142
  233. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/WHEEL +1 -1
  234. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/entry_points.txt +1 -0
  235. acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
  236. acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
  237. acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
  238. {acryl_datahub_cloud-0.3.11rc0.dist-info → acryl_datahub_cloud-0.3.16.1rc0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,683 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "actionWorkflowInfo"
5
+ },
6
+ "name": "ActionWorkflowInfo",
7
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
8
+ "fields": [
9
+ {
10
+ "Searchable": {},
11
+ "type": "string",
12
+ "name": "name",
13
+ "doc": "Display name of the workflow"
14
+ },
15
+ {
16
+ "Searchable": {},
17
+ "type": {
18
+ "type": "enum",
19
+ "symbolDocs": {
20
+ "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.",
21
+ "CUSTOM": "Custom, non-access related workflow. For example, may be used to model workflows like\nasset creation, asset cleanup or deletion, etc."
22
+ },
23
+ "name": "ActionWorkflowCategory",
24
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
25
+ "symbols": [
26
+ "ACCESS",
27
+ "CUSTOM"
28
+ ]
29
+ },
30
+ "name": "category",
31
+ "doc": "Top-level category of the workflow, e.g. ACCESS"
32
+ },
33
+ {
34
+ "Searchable": {},
35
+ "type": [
36
+ "null",
37
+ "string"
38
+ ],
39
+ "name": "customCategory",
40
+ "default": null,
41
+ "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."
42
+ },
43
+ {
44
+ "type": [
45
+ "null",
46
+ "string"
47
+ ],
48
+ "name": "description",
49
+ "default": null,
50
+ "doc": "Description of the workflow. \nIf this is based on a Form trigger, this will be displayed to users when completing the form. "
51
+ },
52
+ {
53
+ "type": {
54
+ "type": "record",
55
+ "name": "ActionWorkflowTrigger",
56
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
57
+ "fields": [
58
+ {
59
+ "Searchable": {
60
+ "fieldName": "triggerType"
61
+ },
62
+ "type": {
63
+ "type": "enum",
64
+ "symbolDocs": {
65
+ "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. "
66
+ },
67
+ "name": "ActionWorkflowTriggerType",
68
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
69
+ "symbols": [
70
+ "FORM_SUBMITTED"
71
+ ]
72
+ },
73
+ "name": "type",
74
+ "doc": "A type of step / task / node in the Action Workflow. "
75
+ },
76
+ {
77
+ "type": [
78
+ "null",
79
+ {
80
+ "type": "record",
81
+ "name": "ActionWorkflowForm",
82
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
83
+ "fields": [
84
+ {
85
+ "type": {
86
+ "type": "array",
87
+ "items": {
88
+ "type": "record",
89
+ "name": "ActionWorkflowEntrypoint",
90
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
91
+ "fields": [
92
+ {
93
+ "Searchable": {
94
+ "fieldName": "entrypointType"
95
+ },
96
+ "type": {
97
+ "type": "enum",
98
+ "symbolDocs": {
99
+ "ENTITY_PROFILE": " Visible on the entity profile page. For all valid entity types specified in the parent object. ",
100
+ "HOME": " Visible on the home page to all users. "
101
+ },
102
+ "name": "ActionWorkflowEntrypointType",
103
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
104
+ "symbols": [
105
+ "HOME",
106
+ "ENTITY_PROFILE"
107
+ ]
108
+ },
109
+ "name": "type",
110
+ "doc": "The type of entry point for the action request workflow.\nThis determines where the action request workflow will be displayed."
111
+ },
112
+ {
113
+ "type": "string",
114
+ "name": "label",
115
+ "doc": "The label for the entry point, which is displayed to users.\nThis should be a user-friendly name that describes the action request."
116
+ },
117
+ {
118
+ "type": [
119
+ "null",
120
+ {
121
+ "type": "record",
122
+ "name": "Filter",
123
+ "namespace": "com.linkedin.pegasus2avro.metadata.query.filter",
124
+ "fields": [
125
+ {
126
+ "type": [
127
+ "null",
128
+ {
129
+ "type": "array",
130
+ "items": {
131
+ "type": "record",
132
+ "name": "ConjunctiveCriterion",
133
+ "namespace": "com.linkedin.pegasus2avro.metadata.query.filter",
134
+ "fields": [
135
+ {
136
+ "type": {
137
+ "type": "array",
138
+ "items": {
139
+ "type": "record",
140
+ "name": "Criterion",
141
+ "namespace": "com.linkedin.pegasus2avro.metadata.query.filter",
142
+ "fields": [
143
+ {
144
+ "type": "string",
145
+ "name": "field",
146
+ "doc": "The name of the field that the criterion refers to"
147
+ },
148
+ {
149
+ "type": "string",
150
+ "name": "value",
151
+ "doc": "The value of the intended field"
152
+ },
153
+ {
154
+ "type": {
155
+ "type": "array",
156
+ "items": "string"
157
+ },
158
+ "name": "values",
159
+ "default": [],
160
+ "doc": "Values. one of which the intended field should match\nNote, if values is set, the above \"value\" field will be ignored"
161
+ },
162
+ {
163
+ "type": {
164
+ "type": "enum",
165
+ "symbolDocs": {
166
+ "ANCESTORS_INCL": "Represent the relation: URN field matches any nested parent in addition to the given URN",
167
+ "BETWEEN": "Represent the relation within an inclusive range, e.g. 3 <= ownerCount <= 5. Note that the values in Criterion must have two entries for a lower and upper bound.",
168
+ "CONTAIN": "Represent the relation: String field contains value, e.g. name contains Profile",
169
+ "DESCENDANTS_INCL": "Represent the relation: URN field any nested children in addition to the given URN",
170
+ "END_WITH": "Represent the relation: String field ends with value, e.g. name ends with Event",
171
+ "EQUAL": "Represent the relation: field = value, e.g. platform = hdfs",
172
+ "EXISTS": "Represents the relation: field exists and is non-empty, e.g. owners is not null and != [] (empty)",
173
+ "GREATER_THAN": "Represent the relation greater than, e.g. ownerCount > 5",
174
+ "GREATER_THAN_OR_EQUAL_TO": "Represent the relation greater than or equal to, e.g. ownerCount >= 5",
175
+ "IEQUAL": "Represent the relation: field = value and support case insensitive values, e.g. platform = hdfs",
176
+ "IN": "Represent the relation: String field is one of the array values to, e.g. name in [\"Profile\", \"Event\"]",
177
+ "IS_NULL": "Represent the relation: field is null, e.g. platform is null",
178
+ "LESS_THAN": "Represent the relation less than, e.g. ownerCount < 3",
179
+ "LESS_THAN_OR_EQUAL_TO": "Represent the relation less than or equal to, e.g. ownerCount <= 3",
180
+ "RELATED_INCL": "Represent the relation: URN field matches any nested child or parent in addition to the given URN",
181
+ "START_WITH": "Represent the relation: String field starts with value, e.g. name starts with PageView"
182
+ },
183
+ "name": "Condition",
184
+ "namespace": "com.linkedin.pegasus2avro.metadata.query.filter",
185
+ "symbols": [
186
+ "CONTAIN",
187
+ "END_WITH",
188
+ "EQUAL",
189
+ "IEQUAL",
190
+ "IS_NULL",
191
+ "EXISTS",
192
+ "GREATER_THAN",
193
+ "GREATER_THAN_OR_EQUAL_TO",
194
+ "IN",
195
+ "LESS_THAN",
196
+ "LESS_THAN_OR_EQUAL_TO",
197
+ "BETWEEN",
198
+ "START_WITH",
199
+ "DESCENDANTS_INCL",
200
+ "ANCESTORS_INCL",
201
+ "RELATED_INCL"
202
+ ],
203
+ "doc": "The matching condition in a filter criterion"
204
+ },
205
+ "name": "condition",
206
+ "default": "EQUAL",
207
+ "doc": "The condition for the criterion, e.g. EQUAL, START_WITH"
208
+ },
209
+ {
210
+ "type": "boolean",
211
+ "name": "negated",
212
+ "default": false,
213
+ "doc": "Whether the condition should be negated"
214
+ }
215
+ ],
216
+ "doc": "A criterion for matching a field with given value"
217
+ }
218
+ },
219
+ "name": "and",
220
+ "doc": "A list of and criteria the filter applies to the query"
221
+ }
222
+ ],
223
+ "doc": "A list of criterion and'd together."
224
+ }
225
+ }
226
+ ],
227
+ "name": "or",
228
+ "default": null,
229
+ "doc": "A list of disjunctive criterion for the filter. (or operation to combine filters)"
230
+ },
231
+ {
232
+ "type": [
233
+ "null",
234
+ {
235
+ "type": "array",
236
+ "items": "com.linkedin.pegasus2avro.metadata.query.filter.Criterion"
237
+ }
238
+ ],
239
+ "name": "criteria",
240
+ "default": null,
241
+ "doc": "Deprecated! A list of conjunctive criterion for the filter. If \"or\" field is provided, then this field is ignored."
242
+ }
243
+ ],
244
+ "doc": "The filter for finding a record or a collection of records"
245
+ }
246
+ ],
247
+ "name": "filter",
248
+ "default": null,
249
+ "doc": "Additional filter criteria to determine when the entry point should be displayed.\n\nNot yet supported (but will be in the future)."
250
+ }
251
+ ],
252
+ "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."
253
+ }
254
+ },
255
+ "name": "entrypoints",
256
+ "doc": "Entrypoints for form submission."
257
+ },
258
+ {
259
+ "Searchable": {
260
+ "/*": {
261
+ "fieldName": "entityTypes",
262
+ "fieldType": "URN"
263
+ }
264
+ },
265
+ "type": [
266
+ "null",
267
+ {
268
+ "type": "array",
269
+ "items": "string"
270
+ }
271
+ ],
272
+ "name": "entityTypes",
273
+ "default": null,
274
+ "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.",
275
+ "Urn": "Urn",
276
+ "urn_is_array": true
277
+ },
278
+ {
279
+ "type": {
280
+ "type": "array",
281
+ "items": {
282
+ "type": "record",
283
+ "name": "ActionWorkflowField",
284
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
285
+ "fields": [
286
+ {
287
+ "type": "string",
288
+ "name": "id",
289
+ "doc": "Workflow-local id for the field"
290
+ },
291
+ {
292
+ "type": "string",
293
+ "name": "name",
294
+ "doc": "The display name or label for the field, for rendering"
295
+ },
296
+ {
297
+ "type": [
298
+ "null",
299
+ "string"
300
+ ],
301
+ "name": "description",
302
+ "default": null,
303
+ "doc": "The description for the field, for rendering"
304
+ },
305
+ {
306
+ "java": {
307
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
308
+ },
309
+ "type": "string",
310
+ "name": "valueType",
311
+ "doc": "The urn of the value type for the values - reused from structured properties.\nAlso, used for rendering",
312
+ "Urn": "Urn"
313
+ },
314
+ {
315
+ "type": [
316
+ "null",
317
+ {
318
+ "type": "array",
319
+ "items": "string"
320
+ }
321
+ ],
322
+ "name": "allowedEntityTypes",
323
+ "default": null,
324
+ "doc": "The urns for allowed entity types.",
325
+ "Urn": "Urn",
326
+ "urn_is_array": true
327
+ },
328
+ {
329
+ "type": [
330
+ "null",
331
+ {
332
+ "type": "array",
333
+ "items": {
334
+ "type": "record",
335
+ "name": "PropertyValue",
336
+ "namespace": "com.linkedin.pegasus2avro.structured",
337
+ "fields": [
338
+ {
339
+ "type": [
340
+ "string",
341
+ "double"
342
+ ],
343
+ "name": "value"
344
+ },
345
+ {
346
+ "type": [
347
+ "null",
348
+ "string"
349
+ ],
350
+ "name": "description",
351
+ "default": null,
352
+ "doc": "Optional description of the property value"
353
+ }
354
+ ]
355
+ }
356
+ }
357
+ ],
358
+ "name": "allowedValues",
359
+ "default": null,
360
+ "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."
361
+ },
362
+ {
363
+ "type": {
364
+ "type": "enum",
365
+ "name": "PropertyCardinality",
366
+ "namespace": "com.linkedin.pegasus2avro.structured",
367
+ "symbols": [
368
+ "SINGLE",
369
+ "MULTIPLE"
370
+ ]
371
+ },
372
+ "name": "cardinality",
373
+ "doc": "Whether or not multiple values are allowed."
374
+ },
375
+ {
376
+ "type": "boolean",
377
+ "name": "required",
378
+ "default": false,
379
+ "doc": "Whether the field is required or not."
380
+ },
381
+ {
382
+ "type": [
383
+ "null",
384
+ {
385
+ "type": "record",
386
+ "name": "ActionWorkflowFieldCondition",
387
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
388
+ "fields": [
389
+ {
390
+ "type": {
391
+ "type": "enum",
392
+ "symbolDocs": {
393
+ "SINGLE_FIELD_VALUE": "The field should be shown if the value of a previously completed field matches the specified value."
394
+ },
395
+ "name": "ActionWorkflowFieldConditionType",
396
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
397
+ "symbols": [
398
+ "SINGLE_FIELD_VALUE"
399
+ ]
400
+ },
401
+ "name": "type",
402
+ "doc": "The type of field condition"
403
+ },
404
+ {
405
+ "type": [
406
+ "null",
407
+ {
408
+ "type": "record",
409
+ "name": "ActionWorkflowSingleFieldValueCondition",
410
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
411
+ "fields": [
412
+ {
413
+ "type": "string",
414
+ "name": "field",
415
+ "doc": "The id / name of the field that the criterion refers to"
416
+ },
417
+ {
418
+ "type": {
419
+ "type": "array",
420
+ "items": "string"
421
+ },
422
+ "name": "values",
423
+ "default": [],
424
+ "doc": "Values. one of which the intended field should match\nNote, if values is set, the above \"value\" field will be ignored"
425
+ },
426
+ {
427
+ "type": "com.linkedin.pegasus2avro.metadata.query.filter.Condition",
428
+ "name": "condition",
429
+ "default": "EQUAL",
430
+ "doc": "The condition for the criterion, e.g. EQUAL, START_WITH"
431
+ },
432
+ {
433
+ "type": "boolean",
434
+ "name": "negated",
435
+ "default": false,
436
+ "doc": "Whether the condition should be negated"
437
+ }
438
+ ],
439
+ "doc": "A specific type of field condition that checks whether a field should be shown based on the value of a previously completed field."
440
+ }
441
+ ],
442
+ "name": "singleFieldValueCondition",
443
+ "default": null,
444
+ "doc": "A field value condition. Present if type is FIELD_VALUE."
445
+ }
446
+ ],
447
+ "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."
448
+ }
449
+ ],
450
+ "name": "condition",
451
+ "default": null,
452
+ "doc": "A dynamic condition that determines whether the field should be shown or not."
453
+ }
454
+ ],
455
+ "doc": "A field inside an Action Workflow Form."
456
+ }
457
+ },
458
+ "name": "fields",
459
+ "doc": "Fields comprising the workflow request. These are the inputs / arguments required to trigger the workflow."
460
+ }
461
+ ]
462
+ }
463
+ ],
464
+ "name": "form",
465
+ "default": null,
466
+ "doc": "The form definition that will trigger the action workflow when submitted. "
467
+ }
468
+ ],
469
+ "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. "
470
+ },
471
+ "name": "trigger",
472
+ "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. "
473
+ },
474
+ {
475
+ "type": {
476
+ "type": "array",
477
+ "items": {
478
+ "type": "record",
479
+ "name": "ActionWorkflowStep",
480
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
481
+ "fields": [
482
+ {
483
+ "type": "string",
484
+ "name": "id",
485
+ "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."
486
+ },
487
+ {
488
+ "type": {
489
+ "type": "enum",
490
+ "symbolDocs": {
491
+ "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). "
492
+ },
493
+ "name": "ActionWorkflowStepType",
494
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
495
+ "symbols": [
496
+ "APPROVAL"
497
+ ]
498
+ },
499
+ "name": "type",
500
+ "doc": "A type of step / task / node in the Action Workflow. "
501
+ },
502
+ {
503
+ "type": [
504
+ "null",
505
+ "string"
506
+ ],
507
+ "name": "description",
508
+ "default": null,
509
+ "doc": "Optional description shown alongside the step to explain its purpose."
510
+ },
511
+ {
512
+ "type": [
513
+ "null",
514
+ {
515
+ "type": "record",
516
+ "name": "ActionWorkflowStepActors",
517
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
518
+ "fields": [
519
+ {
520
+ "type": {
521
+ "type": "array",
522
+ "items": "string"
523
+ },
524
+ "name": "users",
525
+ "doc": "Users statically assigned to perform the review step.",
526
+ "Urn": "Urn",
527
+ "urn_is_array": true
528
+ },
529
+ {
530
+ "type": {
531
+ "type": "array",
532
+ "items": "string"
533
+ },
534
+ "name": "groups",
535
+ "doc": "Groups statically assigned to perform the review step.",
536
+ "Urn": "Urn",
537
+ "urn_is_array": true
538
+ },
539
+ {
540
+ "type": {
541
+ "type": "array",
542
+ "items": "string"
543
+ },
544
+ "name": "roles",
545
+ "doc": "Roles statically assigned to perform the review step.",
546
+ "Urn": "Urn",
547
+ "urn_is_array": true
548
+ },
549
+ {
550
+ "type": [
551
+ "null",
552
+ {
553
+ "type": "record",
554
+ "name": "ActionWorkflowStepDynamicAssignment",
555
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
556
+ "fields": [
557
+ {
558
+ "type": {
559
+ "type": "enum",
560
+ "symbolDocs": {
561
+ "ENTITY_DATA_PRODUCT_OWNERS": "Assign the entity data product owners.",
562
+ "ENTITY_DOMAIN_OWNERS": "Assign the entity domain owners.",
563
+ "ENTITY_OWNERS": "Assign the entity owners."
564
+ },
565
+ "name": "ActionWorkflowStepDynamicAssignmentType",
566
+ "namespace": "com.linkedin.pegasus2avro.actionworkflow",
567
+ "symbols": [
568
+ "ENTITY_OWNERS",
569
+ "ENTITY_DOMAIN_OWNERS",
570
+ "ENTITY_DATA_PRODUCT_OWNERS"
571
+ ]
572
+ },
573
+ "name": "type",
574
+ "doc": "A standardized policy for resolving actors dynamically for an access request."
575
+ },
576
+ {
577
+ "type": [
578
+ "null",
579
+ {
580
+ "type": "array",
581
+ "items": "string"
582
+ }
583
+ ],
584
+ "name": "ownershipTypeUrns",
585
+ "default": null,
586
+ "doc": "Optional: A well defined set of ownership type urns to including in routing.",
587
+ "Urn": "Urn",
588
+ "urn_is_array": true
589
+ }
590
+ ]
591
+ }
592
+ ],
593
+ "name": "dynamicAssignment",
594
+ "default": null,
595
+ "doc": "Dynamic assignment type for the review step."
596
+ }
597
+ ],
598
+ "doc": "A definition of the actors required to review."
599
+ }
600
+ ],
601
+ "name": "actors",
602
+ "default": null,
603
+ "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! "
604
+ }
605
+ ],
606
+ "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."
607
+ }
608
+ },
609
+ "name": "steps",
610
+ "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"
611
+ },
612
+ {
613
+ "Searchable": {
614
+ "/actor": {
615
+ "fieldName": "createdBy",
616
+ "fieldType": "URN"
617
+ },
618
+ "/time": {
619
+ "fieldName": "createdAt",
620
+ "fieldType": "DATETIME"
621
+ }
622
+ },
623
+ "type": {
624
+ "type": "record",
625
+ "name": "AuditStamp",
626
+ "namespace": "com.linkedin.pegasus2avro.common",
627
+ "fields": [
628
+ {
629
+ "type": "long",
630
+ "name": "time",
631
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
632
+ },
633
+ {
634
+ "java": {
635
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
636
+ },
637
+ "type": "string",
638
+ "name": "actor",
639
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
640
+ "Urn": "Urn"
641
+ },
642
+ {
643
+ "java": {
644
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
645
+ },
646
+ "type": [
647
+ "null",
648
+ "string"
649
+ ],
650
+ "name": "impersonator",
651
+ "default": null,
652
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
653
+ "Urn": "Urn"
654
+ },
655
+ {
656
+ "type": [
657
+ "null",
658
+ "string"
659
+ ],
660
+ "name": "message",
661
+ "default": null,
662
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
663
+ }
664
+ ],
665
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
666
+ },
667
+ "name": "created",
668
+ "doc": "Audit stamp capturing the time and actor who created the workflow."
669
+ },
670
+ {
671
+ "Searchable": {
672
+ "/time": {
673
+ "fieldName": "lastModifiedAt",
674
+ "fieldType": "DATETIME"
675
+ }
676
+ },
677
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
678
+ "name": "lastModified",
679
+ "doc": "Audit stamp capturing the time and actor who last modified the workflow."
680
+ }
681
+ ],
682
+ "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."
683
+ }