Skip to content

Commit 55425e5

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

schema/bom-1.7.proto

+5-5
Original file line numberDiff line numberDiff line change
@@ -679,15 +679,15 @@ message Swid {
679679

680680
enum Tlp {
681681
// Default
682-
CLEAR = 0;
682+
TLP_CLEAR = 0;
683683
// Limited distribution but can be shared within a community.
684-
GREEN = 1;
684+
TLP_GREEN = 1;
685685
// Limited distribution but can be shared within an organization and with clients
686-
AMBER = 2;
686+
TLP_AMBER = 2;
687687
// Limited distribution but can be shared within an organization.
688-
AMBER_AND_STRICT = 3;
688+
TLP_AMBER_AND_STRICT = 3;
689689
// Restricted distribution to individual recipients and must not be shared.
690-
RED = 4;
690+
TLP_RED = 4;
691691
}
692692

693693
// Specifies a tool (manual or automated).

0 commit comments

Comments
 (0)