Module Values_0.DataQualityResultSource

Describes a data quality result.

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

    A unique result ID for the data quality result.

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

    The Profile ID for the data quality result.

    *)
  3. score : GenericBoundedDouble.t option;
    (*

    An aggregate data quality score. Represents the ratio of rules that passed to the total number of rules.

    *)
  4. dataSource : DataSource.t option;
    (*

    The table associated with the data quality result, if any.

    *)
  5. rulesetName : NameString.t option;
    (*

    The name of the ruleset associated with the data quality result.

    *)
  6. evaluationContext : GenericString.t option;
    (*

    In the context of a job in Glue Studio, each node in the canvas is typically assigned some sort of name and data quality nodes will have names. In the case of multiple nodes, the evaluationContext can differentiate the nodes.

    *)
  7. startedOn : Timestamp.t option;
    (*

    The date and time when this data quality run started.

    *)
  8. completedOn : Timestamp.t option;
    (*

    The date and time when this data quality run completed.

    *)
  9. jobName : NameString.t option;
    (*

    The job name associated with the data quality result, if any.

    *)
  10. jobRunId : HashString.t option;
    (*

    The job run ID associated with the data quality result, if any.

    *)
  11. rulesetEvaluationRunId : HashString.t option;
    (*

    The unique run ID for the ruleset evaluation for this data quality result.

    *)
  12. ruleResults : DataQualityRuleResults.t option;
    (*

    A list of DataQualityRuleResult objects representing the results for each rule.

    *)
  13. analyzerResults : DataQualityAnalyzerResults.t option;
    (*

    A list of DataQualityAnalyzerResult objects representing the results for each analyzer.

    *)
  14. observations : DataQualityObservations.t option;
    (*

    A list of DataQualityObservation objects representing the observations generated after evaluating the rules and analyzers.

    *)
  15. aggregatedMetrics : DataQualityAggregatedMetrics.t option;
    (*

    A summary of DataQualityAggregatedMetrics objects showing the total counts of processed rows and rules, including their pass/fail statistics based on row-level results.

    *)
}
Sourceval make : ?resultId:??? -> ?profileId:??? -> ?score:??? -> ?dataSource:??? -> ?rulesetName:??? -> ?evaluationContext:??? -> ?startedOn:??? -> ?completedOn:??? -> ?jobName:??? -> ?jobRunId:??? -> ?rulesetEvaluationRunId:??? -> ?ruleResults:??? -> ?analyzerResults:??? -> ?observations:??? -> ?aggregatedMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of GenericBoundedDouble.t | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of NameString.t ] * [> `Double of NullableDouble.t | `String of NameString.t ]) list | `String of NameString.t | `Structure of (string * [> `List of [> `String of NameString.t ] list | `String of NameString.t | `Structure of (string * [> `Double of NullableDouble.t ]) list ]) list ]) list ] list | `String of HashString.t | `Structure of (string * [> `Double of NullableDouble.t | `Structure of (string * [> `Map of ([> `String of NameString.t ] * [> `String of DescriptionString.t ]) list | `String of NameString.t ]) list ]) list | `Timestamp of 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