Values.FindingSummarySourceContains summary information about a security finding.
type nonrec t = {findingId : String_.t option;The unique identifier of the finding.
*)agentSpaceId : String_.t option;The unique identifier of the agent space associated with the finding.
*)pentestId : String_.t option;The unique identifier of the pentest associated with the finding.
*)pentestJobId : String_.t option;The unique identifier of the pentest job that produced the finding.
*)codeReviewId : String_.t option;The unique identifier of the code review associated with the finding.
*)codeReviewJobId : String_.t option;The unique identifier of the code review job that produced the finding.
*)name : String_.t option;The name of the finding.
*)status : FindingStatus.t option;The current status of the finding.
*)riskType : String_.t option;The type of security risk identified by the finding.
*)riskLevel : RiskLevel.t option;The risk level of the finding.
*)confidence : ConfidenceLevel.t option;The confidence level of the finding.
*)createdAt : SyntheticTimestamp_date_time.t option;The date and time the finding was created, in UTC format.
*)updatedAt : SyntheticTimestamp_date_time.t option;The date and time the finding was last updated, in UTC format.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]