Module Values_0.MetricBasedObservationSource

Describes the metric based observation generated based on evaluated data quality metrics.

Sourcetype nonrec t = {
  1. metricName : NameString.t option;
    (*

    The name of the data quality metric used for generating the observation.

    *)
  2. statisticId : HashString.t option;
    (*

    The Statistic ID.

    *)
  3. metricValues : DataQualityMetricValues.t option;
    (*

    An object of type DataQualityMetricValues representing the analysis of the data quality metric value.

    *)
  4. newRules : NewRules.t option;
    (*

    A list of new data quality rules generated as part of the observation based on the data quality metric value.

    *)
}
Sourceval make : ?metricName:??? -> ?statisticId:??? -> ?metricValues:??? -> ?newRules:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NameString.t ] list | `String of NameString.t | `Structure of (string * [> `Double of NullableDouble.t ]) list ]) 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