blob: 8d70d00e4b375b28710a48146b0220852973b2cf [file] [log] [blame] [edit]
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
package v2_1
// Review is a Review section of an SPDX Document for version 2.1 of the spec.
// DEPRECATED in version 2.0 of spec; retained here for compatibility.
type Review struct {
// DEPRECATED in version 2.0 of spec
// 9.1: Reviewer
// Cardinality: optional, one
Reviewer string
// including AnnotatorType: one of "Person", "Organization" or "Tool"
ReviewerType string
// DEPRECATED in version 2.0 of spec
// 9.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
// 9.3: Review Comment
// Cardinality: optional, one
ReviewComment string
}