Module Values.AutomatedReasoningPolicyAnnotatedChunkSource

Represents a portion of a source document with line number annotations. Chunks help organize document content for easier navigation and reference.

Sourcetype nonrec t = {
  1. pageNumber : Integer.t option;
    (*

    The page number where this chunk begins, if the document is divided into pages.

    *)
  2. content : AutomatedReasoningPolicyAnnotatedContentList.t option;
    (*

    The lines of text contained within this chunk, each annotated with its line number.

    *)
}
Sourceval make : ?pageNumber:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Structure of (string * [> `Integer of Integer.t | `String of AutomatedReasoningPolicyLineText.t ]) list ]) list ] 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