Module Values_0.SbomValidationResultSummarySource

A summary of the validation results for a specific software bill of materials (SBOM) attached to a software package version.

Sourcetype nonrec t = {
  1. fileName : FileName.t option;
    (*

    The name of the SBOM file.

    *)
  2. validationResult : SbomValidationResult.t option;
    (*

    The end result of the SBOM validation.

    *)
  3. errorCode : SbomValidationErrorCode.t option;
    (*

    The errorCode representing the validation failure error if the SBOM validation failed.

    *)
  4. errorMessage__lc1 : SbomValidationErrorMessage.t option;
    (*

    The errorMessage representing the validation failure error if the SBOM validation failed.

    *)
}
Sourceval make : ?fileName:??? -> ?validationResult:??? -> ?errorCode:??? -> ?errorMessage__lc1:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FileName.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