Module Values_1.DataQualityResultDescriptionSource

Describes a data quality result.

Sourcetype nonrec t = {
  1. resultId : Values_0.HashString.t option;
    (*

    The unique result ID for this data quality result.

    *)
  2. dataSource : Values_0.DataSource.t option;
    (*

    The table name associated with the data quality result.

    *)
  3. jobName : Values_0.NameString.t option;
    (*

    The job name associated with the data quality result.

    *)
  4. jobRunId : Values_0.HashString.t option;
    (*

    The job run ID associated with the data quality result.

    *)
  5. startedOn : Values_0.Timestamp.t option;
    (*

    The time that the run started for this data quality result.

    *)
}
Sourceval make : ?resultId:??? -> ?dataSource:??? -> ?jobName:??? -> ?jobRunId:??? -> ?startedOn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.HashString.t | `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) list ]) list | `Timestamp of Values_0.Timestamp.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