30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package v2_2
|
|
|
|
import "github.com/spdx/tools-golang/spdx/common"
|
|
|
|
// Annotation is an Annotation section of an SPDX Document for version 2.2 of the spec.
|
|
type Annotation struct {
|
|
// 12.1: Annotator
|
|
// Cardinality: conditional (mandatory, one) if there is an Annotation
|
|
Annotator common.Annotator `json:"annotator"`
|
|
|
|
// 12.2: Annotation Date: YYYY-MM-DDThh:mm:ssZ
|
|
// Cardinality: conditional (mandatory, one) if there is an Annotation
|
|
AnnotationDate string `json:"annotationDate"`
|
|
|
|
// 12.3: Annotation Type: "REVIEW" or "OTHER"
|
|
// Cardinality: conditional (mandatory, one) if there is an Annotation
|
|
AnnotationType string `json:"annotationType"`
|
|
|
|
// 12.4: SPDX Identifier Reference
|
|
// Cardinality: conditional (mandatory, one) if there is an Annotation
|
|
// This field is not used in hierarchical data formats where the referenced element is clear, such as JSON or YAML.
|
|
AnnotationSPDXIdentifier common.DocElementID `json:"-"`
|
|
|
|
// 12.5: Annotation Comment
|
|
// Cardinality: conditional (mandatory, one) if there is an Annotation
|
|
AnnotationComment string `json:"comment"`
|
|
}
|