Skip to content

Commit 925f5f9

Browse files
feat: Add support for TLP marking in metadata (fixes CycloneDX#595)
Signed-off-by: anthonyharrison <[email protected]>
1 parent 1962322 commit 925f5f9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

schema/bom-1.7.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ enum Tlp {
685685
// Limited distribution but can be shared within an organization and with clients
686686
AMBER = 2;
687687
// Limited distribution but can be shared within an organization.
688-
AMBER+STRICT = 3;
688+
AMBER_AND_STRICT = 3;
689689
// Restricted distribution to individual recipients and must not be shared.
690690
RED = 4;
691691
}

schema/bom-1.7.schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -726,14 +726,14 @@
726726
"description": "The Traffic Light Protocol (TLP) classification for the component that the BOM describes. TLP is a classification system for identifying the potential risk associated with artefact, including whether it is subject to certain types of legal, financial, or technical threats. Refer to [https://www.first.org/tlp/](https://www.first.org/tlp/) for further information. The default classification is CLEAR",
727727
"enum": [
728728
"AMBER",
729-
"AMBER+STRICT",
729+
"AMBER_AND_STRICT",
730730
"GREEN",
731731
"RED",
732732
"CLEAR"
733733
],
734734
"meta:enum": {
735735
"AMBER": "The BOM is subject to limited disclosure, and recipients can only share the BOM on a need-to-know basis within their organization and with clients.",
736-
"AMBER+STRICT": "The BOM is subject to limited disclosure, and recipients can only share the BOM on a need-to-know basis within their organization.",
736+
"AMBER_AND_STRICT": "The BOM is subject to limited disclosure, and recipients can only share the BOM on a need-to-know basis within their organization.",
737737
"GREEN": "The BOM is subject to limited disclosure, and recipients can share the BOM within their community but not via publicly accessible channels.",
738738
"RED": "The BOM is subject to restricted distribution to individual recipients only and must not be shared.",
739739
"CLEAR": "The BOM is not subject to any restrictions as regards the sharing of the information within the BOM."

schema/bom-1.7.xsd

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ limitations under the License.
421421
</xs:documentation>
422422
</xs:annotation>
423423
</xs:enumeration>
424-
<xs:enumeration value="AMBER+STRICT">
424+
<xs:enumeration value="AMBER_AND_STRICT">
425425
<xs:annotation>
426426
<xs:documentation>
427427
The BOM is subject to limited disclosure, and recipients can only share the BOM on a need-to-know

0 commit comments

Comments
 (0)