Sarif.ToolComponent
module Contents : sig ... end
type t = {
guid : string; |
name : string; |
organization : string; |
product : string; |
productSuite : string; |
shortDescription : MultiformatMessageString.t; |
fullDescription : MultiformatMessageString.t; |
fullName : string; |
version : string; |
semanticVersion : string; |
dottedQuadFileVersion : string; |
releaseDateUtc : string; |
downloadUri : string; |
informationUri : string; |
globalMessageStrings : MultiformatMessageStringDictionary.t; |
notifications : ReportingDescriptor.t list; |
rules : ReportingDescriptor.t list; |
taxa : ReportingDescriptor.t list; |
locations : ArtifactLocation.t list; |
language : string; |
contents : Contents.t list; |
isComprehensive : bool; |
localizedDataSemanticVersion : string; |
minimumRequiredLocalizedDataSemanticVersion : string; |
associateComponent : ToolComponentReference.t; |
translationMetadata : TranslationMetadata.t; |
supportedTaxonomies : ToolComponentReference.t list; |
properties : Properties.t; |
}
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val create :
?guid:string ->
name:string ->
?organization:string ->
?product:string ->
?productSuite:string ->
?shortDescription:MultiformatMessageString.t ->
?fullDescription:MultiformatMessageString.t ->
?fullName:string ->
?version:string ->
?semanticVersion:string ->
?dottedQuadFileVersion:string ->
?releaseDateUtc:string ->
?downloadUri:string ->
?informationUri:string ->
?globalMessageStrings:MultiformatMessageStringDictionary.t ->
?notifications:ReportingDescriptor.t list ->
?rules:ReportingDescriptor.t list ->
?taxa:ReportingDescriptor.t list ->
?locations:ArtifactLocation.t list ->
?language:string ->
?contents:Contents.t list ->
?isComprehensive:bool ->
?localizedDataSemanticVersion:string ->
?minimumRequiredLocalizedDataSemanticVersion:string ->
?associateComponent:ToolComponentReference.t ->
?translationMetadata:TranslationMetadata.t ->
?supportedTaxonomies:ToolComponentReference.t list ->
?properties:Properties.t ->
unit ->
t
val default : t