Module Values.AutomatedReasoningPolicyBuildWorkflowDocumentSource

Represents a source document used in the policy build workflow, containing the content and metadata needed for policy generation.

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

    The actual content of the source document that will be analyzed to extract policy rules and concepts.

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

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

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

    A descriptive name for the document that helps identify its purpose and content.

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

    A detailed description of the document's content and how it should be used in the policy generation process.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentDescription:??? -> document:AutomatedReasoningPolicyBuildDocumentBlob.t -> documentContentType:AutomatedReasoningPolicyBuildDocumentContentType.t -> documentName:AutomatedReasoningPolicyBuildDocumentName.t -> 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