Skip to content

Commit

Permalink
feat: Add support for TLP marking in metadata - fix protobuf enum (fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyharrison committed Feb 23, 2025
1 parent 1fd2561 commit a767891
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions schema/bom-1.7.proto
Original file line number Diff line number Diff line change
Expand Up @@ -679,15 +679,15 @@ message Swid {

enum Tlp {
// Default
CLEAR = 0;
TLP_CLEAR = 0;
// Limited distribution but can be shared within a community.
GREEN = 1;
TLP_GREEN = 1;
// Limited distribution but can be shared within an organization and with clients
AMBER = 2;
TLP_AMBER = 2;
// Limited distribution but can be shared within an organization.
AMBER_AND_STRICT = 3;
TLP_AMBER_AND_STRICT = 3;
// Restricted distribution to individual recipients and must not be shared.
RED = 4;
TLP_RED = 4;
}

// Specifies a tool (manual or automated).
Expand Down

0 comments on commit a767891

Please sign in to comment.