NAME
SBOM::CycloneDX::Enum::TlpClassification - Traffic Light Protocol (TLP) Classification
SYNOPSIS
use SBOM::CycloneDX::Enum qw(TLP_CLASSIFICATION);
say TLP_CLASSIFICATION->GREEN;
use SBOM::CycloneDX::Enum::TlpClassification qw(:all);
say AMBER_AND_STRICT;
DESCRIPTION
SBOM::CycloneDX::Enum::TlpClassification is ENUM package used by SBOM::CycloneDX.
Traffic Light Protocol (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/ for further information.
The default classification is CLEAR.
CONSTANTS
CLEAR, The information is not subject to any restrictions as regards the sharing.GREEN, The information is subject to limited disclosure, and recipients can share it within their community but not via publicly accessible channels.AMBER, The information is subject to limited disclosure, and recipients can only share it on a need-to-know basis within their organization and with clients.AMBER_AND_STRICT, The information is subject to limited disclosure, and recipients can only share it on a need-to-know basis within their organization.RED, The information is subject to restricted distribution to individual recipients only and must not be shared.
SUPPORT
Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-SBOM-CycloneDX/issues. You will be notified automatically of any progress on your issue.
Source Code
This is open source software. The code repository is available for public review and contribution under the terms of the license.
https://github.com/giterlizzi/perl-SBOM-CycloneDX
git clone https://github.com/giterlizzi/perl-SBOM-CycloneDX.git
AUTHOR
Giuseppe Di Terlizzi <gdt@cpan.org>
LICENSE AND COPYRIGHT
This software is copyright (c) 2025-2026 by Giuseppe Di Terlizzi.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.