Module Values.AutomatedReasoningPolicySourceDocumentSource

Represents a source document that was processed during a build workflow. Contains the document content, metadata, and a hash for verification.

Sourcetype nonrec t = {
  1. document : AutomatedReasoningPolicyBuildDocumentBlob.t option;
    (*

    The raw content of the source document as a binary blob.

    *)
  2. documentContentType : AutomatedReasoningPolicyBuildDocumentContentType.t option;
    (*

    The MIME type of the document (e.g., application/pdf, text/plain).

    *)
  3. documentName : AutomatedReasoningPolicyBuildDocumentName.t option;
    (*

    The name of the source document for identification purposes.

    *)
  4. documentDescription : AutomatedReasoningPolicyBuildDocumentDescription.t option;
    (*

    An optional description providing context about the document's content and purpose.

    *)
  5. documentHash : AutomatedReasoningPolicyDocumentSha256.t option;
    (*

    A SHA-256 hash of the document content, used for verification and integrity checking.

    *)
}
Sourceval make : ?document:??? -> ?documentContentType:??? -> ?documentName:??? -> ?documentDescription:??? -> ?documentHash:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of AutomatedReasoningPolicyBuildDocumentBlob.t | `Enum of string | `String of AutomatedReasoningPolicyBuildDocumentName.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