NAME

SBOM::CycloneDX::Schema - JSON Schema Validator

SYNOPSIS

use SBOM::CycloneDX::Schema;

my $validator = SBOM::CycloneDX::Schema->new(sbom => $sbom);

my @errors = $validator->validate;

say $_ for @errors;

DESCRIPTION

Validate CycloneDX objects using JSON Schema.

METHODS

SBOM::CycloneDX::Schema->new(object => $object)
$schema->bom

SBOM::CycloneDX instance or HASH.

$schema->validator

Return JSON::Validator object.

$schema->validate

Validate and return the JSON::Validator errors.

FUNCTIONS

schema_dir

Return the CycloneDX schema path.

schema_file ($json_schema_file)

Return the CycloneDX schema file path.

schema_file('bom-1.6.schema.json'); # ../SBOM/CycloneDX/schema/bom-1.6.schema.json

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 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.