mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
13 lines
426 B
Go
13 lines
426 B
Go
package model
|
|
|
|
type Element struct {
|
|
SPDXID string `json:"SPDXID"`
|
|
// Identify name of this SpdxElement.
|
|
Name string `json:"name,omitempty"`
|
|
// Relationships referenced in the SPDX document
|
|
Relationships []Relationship `json:"relationships,omitempty"`
|
|
// Provide additional information about an SpdxElement.
|
|
Annotations []Annotation `json:"annotations,omitempty"`
|
|
Comment string `json:"comment,omitempty"`
|
|
}
|