Module Values.AutomatedReasoningPolicyRuleReportSource

Provides detailed fidelity analysis for a specific policy rule, including which source document statements support it and how accurate the rule is.

Sourcetype nonrec t = {
  1. rule : AutomatedReasoningPolicyDefinitionRuleId.t option;
    (*

    The identifier of the policy rule being analyzed in this report.

    *)
  2. groundingStatements : AutomatedReasoningPolicyStatementReferenceList.t option;
    (*

    References to statements from the source documents that provide the basis or justification for this rule.

    *)
  3. groundingJustifications : AutomatedReasoningPolicyJustificationList.t option;
    (*

    Explanations describing how the source statements support and justify this specific rule.

    *)
  4. accuracyScore : AutomatedReasoningPolicyAccuracyScore.t option;
    (*

    A score from 0.0 to 1.0 indicating how accurately this rule represents the source material.

    *)
  5. accuracyJustification : AutomatedReasoningPolicyJustificationText.t option;
    (*

    A textual explanation of the accuracy score, describing why the rule received this particular accuracy rating.

    *)
}
Sourceval make : ?rule:??? -> ?groundingStatements:??? -> ?groundingJustifications:??? -> ?accuracyScore:??? -> ?accuracyJustification:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of AutomatedReasoningPolicyAccuracyScore.t | `List of [> `String of AutomatedReasoningPolicyJustificationText.t | `Structure of (string * [> `String of AutomatedReasoningPolicyDocumentId.t ]) list ] list | `String of AutomatedReasoningPolicyDefinitionRuleId.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