26 lines
733 B
Go
26 lines
733 B
Go
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
|
|
package v2_2
|
|
|
|
// Review is a Review section of an SPDX Document for version 2.2 of the spec.
|
|
// DEPRECATED in version 2.0 of spec; retained here for compatibility.
|
|
type Review struct {
|
|
|
|
// DEPRECATED in version 2.0 of spec
|
|
// 13.1: Reviewer
|
|
// Cardinality: optional, one
|
|
Reviewer string
|
|
// including AnnotatorType: one of "Person", "Organization" or "Tool"
|
|
ReviewerType string
|
|
|
|
// DEPRECATED in version 2.0 of spec
|
|
// 13.2: Review Date: YYYY-MM-DDThh:mm:ssZ
|
|
// Cardinality: conditional (mandatory, one) if there is a Reviewer
|
|
ReviewDate string
|
|
|
|
// DEPRECATED in version 2.0 of spec
|
|
// 13.3: Review Comment
|
|
// Cardinality: optional, one
|
|
ReviewComment string
|
|
}
|