Module Values.AutomatedReasoningPolicyStatementReferenceSource

References a specific atomic statement within a source document, used to link policy elements back to their source material.

Sourcetype nonrec t = {
  1. documentId : AutomatedReasoningPolicyDocumentId.t option;
    (*

    The unique identifier of the document containing the referenced statement.

    *)
  2. statementId : AutomatedReasoningPolicyStatementId.t option;
    (*

    The unique identifier of the specific atomic statement being referenced.

    *)
}
Sourceval make : ?documentId:??? -> ?statementId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AutomatedReasoningPolicyDocumentId.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