Module Values.AutomatedReasoningPolicyAnnotationSource

Contains the various operations that can be performed on an Automated Reasoning policy, including adding, updating, and deleting rules, variables, and types.

Sourcetype nonrec t = {
  1. addType : AutomatedReasoningPolicyAddTypeAnnotation.t option;
    (*

    An operation to add a new custom type to the policy, defining a set of possible values for policy variables.

    *)
  2. updateType : AutomatedReasoningPolicyUpdateTypeAnnotation.t option;
    (*

    An operation to modify an existing custom type in the policy, such as changing its name, description, or allowed values.

    *)
  3. deleteType : AutomatedReasoningPolicyDeleteTypeAnnotation.t option;
    (*

    An operation to remove a custom type from the policy. The type must not be referenced by any variables or rules.

    *)
  4. addVariable : AutomatedReasoningPolicyAddVariableAnnotation.t option;
    (*

    An operation to add a new variable to the policy, which can be used in rule expressions to represent dynamic values.

    *)
  5. updateVariable : AutomatedReasoningPolicyUpdateVariableAnnotation.t option;
    (*

    An operation to modify an existing variable in the policy, such as changing its name, type, or description.

    *)
  6. deleteVariable : AutomatedReasoningPolicyDeleteVariableAnnotation.t option;
    (*

    An operation to remove a variable from the policy. The variable must not be referenced by any rules.

    *)
  7. addRule : AutomatedReasoningPolicyAddRuleAnnotation.t option;
    (*

    An operation to add a new logical rule to the policy using formal mathematical expressions.

    *)
  8. updateRule : AutomatedReasoningPolicyUpdateRuleAnnotation.t option;
    (*

    An operation to modify an existing rule in the policy, such as changing its logical expression or conditions.

    *)
  9. deleteRule : AutomatedReasoningPolicyDeleteRuleAnnotation.t option;
    (*

    An operation to remove a rule from the policy.

    *)
  10. addRuleFromNaturalLanguage : AutomatedReasoningPolicyAddRuleFromNaturalLanguageAnnotation.t option;
    (*

    An operation to add a new rule by converting natural language descriptions into formal logical expressions.

    *)
  11. updateFromRulesFeedback : AutomatedReasoningPolicyUpdateFromRuleFeedbackAnnotation.t option;
    (*

    An operation to update the policy based on feedback about how specific rules performed during testing or validation.

    *)
  12. updateFromScenarioFeedback : AutomatedReasoningPolicyUpdateFromScenarioFeedbackAnnotation.t option;
    (*

    An operation to update the policy based on feedback about how it performed on specific test scenarios.

    *)
  13. ingestContent : AutomatedReasoningPolicyIngestContentAnnotation.t option;
    (*

    An operation to process and incorporate new content into the policy, extracting additional rules and concepts.

    *)
}
Sourceval make : ?addType:??? -> ?updateType:??? -> ?deleteType:??? -> ?addVariable:??? -> ?updateVariable:??? -> ?deleteVariable:??? -> ?addRule:??? -> ?updateRule:??? -> ?deleteRule:??? -> ?addRuleFromNaturalLanguage:??? -> ?updateFromRulesFeedback:??? -> ?updateFromScenarioFeedback:??? -> ?ingestContent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of AutomatedReasoningPolicyDefinitionRuleId.t | `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeValueName.t | `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeValueName.t ]) list ]) list ] list | `String of AutomatedReasoningPolicyDefinitionTypeName.t ]) 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