Values.LineageNodeItemSourceThe summary and output forms of a LineageNode
type nonrec t = {domainId : DomainId.t option;The ID of the domain of the data lineage node.
*)name : String_.t option;The name of the data lineage node.
*)description : String_.t option;The description of the data lineage node.
*)createdAt : CreatedAt.t option;The timestamp at which the data lineage node was created.
*)createdBy : CreatedBy.t option;The user who created the data lineage node.
*)updatedAt : UpdatedAt.t option;The timestamp at which the data lineage node was updated.
*)updatedBy : UpdatedBy.t option;The user who updated the data lineage node.
*)id : LineageNodeId.t option;The ID of the data lineage node.
*)typeName : String_.t option;The name of the type of the data lineage node.
*)typeRevision : Revision.t option;The type of the revision of the data lineage node.
*)sourceIdentifier : String_.t option;The alternate ID of the data lineage node.
*)eventTimestamp : Timestamp.t option;The event timestamp of the data lineage node.
*)formsOutput : FormOutputList.t option;The forms included in the additional attributes of a data lineage node.
*)upstreamLineageNodeIds : LineageNodeIds.t option;The IDs of the upstream data lineage nodes.
*)downstreamLineageNodeIds : LineageNodeIds.t option;The IDs of the downstream data lineage nodes.
*)}val make :
?domainId:??? ->
?name:??? ->
?description:??? ->
?createdAt:??? ->
?createdBy:??? ->
?updatedAt:??? ->
?updatedBy:??? ->
?id:??? ->
?typeName:??? ->
?typeRevision:??? ->
?sourceIdentifier:??? ->
?eventTimestamp:??? ->
?formsOutput:??? ->
?upstreamLineageNodeIds:??? ->
?downstreamLineageNodeIds:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `String of LineageNodeId.t
| `Structure of (string * [> `String of FormName.t ]) list ]
list
| `String of DomainId.t
| `Timestamp of CreatedAt.t ])
list ]