Module Values.LineageNodeItemSource

The summary and output forms of a LineageNode

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The ID of the domain of the data lineage node.

    *)
  2. name : String_.t option;
    (*

    The name of the data lineage node.

    *)
  3. description : String_.t option;
    (*

    The description of the data lineage node.

    *)
  4. createdAt : CreatedAt.t option;
    (*

    The timestamp at which the data lineage node was created.

    *)
  5. createdBy : CreatedBy.t option;
    (*

    The user who created the data lineage node.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The timestamp at which the data lineage node was updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user who updated the data lineage node.

    *)
  8. id : LineageNodeId.t option;
    (*

    The ID of the data lineage node.

    *)
  9. typeName : String_.t option;
    (*

    The name of the type of the data lineage node.

    *)
  10. typeRevision : Revision.t option;
    (*

    The type of the revision of the data lineage node.

    *)
  11. sourceIdentifier : String_.t option;
    (*

    The alternate ID of the data lineage node.

    *)
  12. eventTimestamp : Timestamp.t option;
    (*

    The event timestamp of the data lineage node.

    *)
  13. formsOutput : FormOutputList.t option;
    (*

    The forms included in the additional attributes of a data lineage node.

    *)
  14. upstreamLineageNodeIds : LineageNodeIds.t option;
    (*

    The IDs of the upstream data lineage nodes.

    *)
  15. downstreamLineageNodeIds : LineageNodeIds.t option;
    (*

    The IDs of the downstream data lineage nodes.

    *)
}
Sourceval make : ?domainId:??? -> ?name:??? -> ?description:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?id:??? -> ?typeName:??? -> ?typeRevision:??? -> ?sourceIdentifier:??? -> ?eventTimestamp:??? -> ?formsOutput:??? -> ?upstreamLineageNodeIds:??? -> ?downstreamLineageNodeIds:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t