Module Values.FindingSummarySource

Contains summary information about a security finding.

Sourcetype nonrec t = {
  1. findingId : String_.t option;
    (*

    The unique identifier of the finding.

    *)
  2. agentSpaceId : String_.t option;
    (*

    The unique identifier of the agent space associated with the finding.

    *)
  3. pentestId : String_.t option;
    (*

    The unique identifier of the pentest associated with the finding.

    *)
  4. pentestJobId : String_.t option;
    (*

    The unique identifier of the pentest job that produced the finding.

    *)
  5. codeReviewId : String_.t option;
    (*

    The unique identifier of the code review associated with the finding.

    *)
  6. codeReviewJobId : String_.t option;
    (*

    The unique identifier of the code review job that produced the finding.

    *)
  7. name : String_.t option;
    (*

    The name of the finding.

    *)
  8. status : FindingStatus.t option;
    (*

    The current status of the finding.

    *)
  9. riskType : String_.t option;
    (*

    The type of security risk identified by the finding.

    *)
  10. riskLevel : RiskLevel.t option;
    (*

    The risk level of the finding.

    *)
  11. confidence : ConfidenceLevel.t option;
    (*

    The confidence level of the finding.

    *)
  12. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the finding was created, in UTC format.

    *)
  13. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the finding was last updated, in UTC format.

    *)
}
Sourceval make : ?findingId:??? -> ?agentSpaceId:??? -> ?pentestId:??? -> ?pentestJobId:??? -> ?codeReviewId:??? -> ?codeReviewJobId:??? -> ?name:??? -> ?status:??? -> ?riskType:??? -> ?riskLevel:??? -> ?confidence:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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