mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
10 lines
417 B
Go
10 lines
417 B
Go
package model
|
|
|
|
type ExternalDocumentRef struct {
|
|
// externalDocumentId is a string containing letters, numbers, ., - and/or + which uniquely identifies an external document within this document.
|
|
ExternalDocumentID string `json:"externalDocumentId"`
|
|
Checksum Checksum `json:"checksum"`
|
|
// SPDX ID for SpdxDocument. A propoerty containing an SPDX document.
|
|
SpdxDocument string `json:"spdxDocument"`
|
|
}
|