NAME

SBOM::CycloneDX::Enum::PatentAssertionType - Assertion Type

SYNOPSIS

use SBOM::CycloneDX::Enum qw(PATENT_ASSERTION_TYPE);

say PATENT_ASSERTION_TYPE->THIRD_PARTY_CLAIM;


use SBOM::CycloneDX::Enum::PatentAssertionType;

say SBOM::CycloneDX::Enum::PatentAssertionType->EXCLUSIVE_RIGHTS;


use SBOM::CycloneDX::Enum::PatentAssertionType qw(:all);

say RESEARCH_OR_EVALUATION;

DESCRIPTION

SBOM::CycloneDX::Enum::PatentAssertionType is ENUM package used by SBOM::CycloneDX::PatentAssertion.

The type of assertion being made about the patent or patent family. Examples include ownership, licensing, and standards inclusion.

CONSTANTS

  • OWNERSHIP, The manufacturer asserts ownership of the patent or patent family.

  • LICENSE, The manufacturer asserts they have a license to use the patent or patent family.

  • THIRD_PARTY_CLAIM, A third party has asserted a claim or potential infringement against the manufacturer’s component or service.

  • STANDARDS_INCLUSION, The patent is part of a standard essential patent (SEP) portfolio relevant to the component or service.

  • PRIOR_ART, The manufacturer asserts the patent or patent family as prior art that invalidates another patent or claim.

  • EXCLUSIVE_RIGHTS, The manufacturer asserts exclusive rights granted through a licensing agreement.

  • NON_ASSERTION, The manufacturer asserts they will not enforce the patent or patent family against certain uses or users.

  • RESEARCH_OR_EVALUATION, The patent or patent family is being used under a research or evaluation license.

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.