SpecialLocations

@JsonClass(generateAdapter = true)
data class SpecialLocations(@Json(name = "displayBase") val displayBase: ArtifactLocation? = null, @Json(name = "properties") val properties: PropertyBag? = null)

A specialLocations object that defines locations of special significance to SARIF consumers.

Defines locations of special significance to SARIF consumers.

Constructors

Link copied to clipboard
fun SpecialLocations(@Json(name = "displayBase") displayBase: ArtifactLocation? = null, @Json(name = "properties") properties: PropertyBag? = null)

Properties

Link copied to clipboard
val displayBase: ArtifactLocation? = null

Provides a suggestion to SARIF consumers to display file paths relative to the specified location.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the special locations.

Sources

Link copied to clipboard