Module Values.AutomatedReasoningPolicyVariableReportSource

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

Sourcetype nonrec t = {
  1. policyVariable : AutomatedReasoningPolicyDefinitionVariableName.t option;
    (*

    The name of the policy variable 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 variable.

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

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

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

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

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

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

    *)
}
Sourceval make : ?policyVariable:??? -> ?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 AutomatedReasoningPolicyDefinitionVariableName.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