Module Values_0.DataQualityMetricValuesSource

Describes the data quality metric value according to the analysis of historical data.

Sourcetype nonrec t = {
  1. actualValue : NullableDouble.t option;
    (*

    The actual value of the data quality metric.

    *)
  2. expectedValue : NullableDouble.t option;
    (*

    The expected value of the data quality metric according to the analysis of historical data.

    *)
  3. lowerLimit : NullableDouble.t option;
    (*

    The lower limit of the data quality metric value according to the analysis of historical data.

    *)
  4. upperLimit : NullableDouble.t option;
    (*

    The upper limit of the data quality metric value according to the analysis of historical data.

    *)
}
Sourceval make : ?actualValue:??? -> ?expectedValue:??? -> ?lowerLimit:??? -> ?upperLimit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NullableDouble.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