1// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 2 3package v2_1 4 5// Review is a Review section of an SPDX Document for version 2.1 of the spec. 6// DEPRECATED in version 2.0 of spec; retained here for compatibility. 7type Review struct { 8 9 // DEPRECATED in version 2.0 of spec 10 // 9.1: Reviewer 11 // Cardinality: optional, one 12 Reviewer string 13 // including AnnotatorType: one of "Person", "Organization" or "Tool" 14 ReviewerType string 15 16 // DEPRECATED in version 2.0 of spec 17 // 9.2: Review Date: YYYY-MM-DDThh:mm:ssZ 18 // Cardinality: conditional (mandatory, one) if there is a Reviewer 19 ReviewDate string 20 21 // DEPRECATED in version 2.0 of spec 22 // 9.3: Review Comment 23 // Cardinality: optional, one 24 ReviewComment string 25} 26