Skip to main content

SBOM

Introduction

The SBOM Schema (Software Bill of Materials) is a JSON schema designed to describe and standardise the components, tools, and metadata associated with a software project within the Trusted AI BOM (TAIBOM) ecosystem. This schema provides a comprehensive overview of a project's dependencies, tools used, and key details for ensuring traceability and security.

Description

This schema captures essential metadata for an SBOM, including:

  • BOM Format: The format of the SBOM (e.g., CycloneDX).
  • Specification Version: The version of the SBOM specification used.
  • Serial Number: A unique identifier for the SBOM instance.
  • Version: The version number of the SBOM itself.
  • Metadata: Details about the SBOM generation process, including timestamps, tools, and component information.
  • Components: A detailed list of all components in the SBOM, including their type, name, version, and identifiers (e.g., CPE, PURL).

Use Case

The SBOM Schema is primarily used within the TAIBOM framework to:

  1. Document Software Components: Provide a standardised record of all dependencies and components used in a software project.
  2. Enhance Security: Facilitate vulnerability management by offering detailed metadata, including CPEs and PURLs for components.
  3. Support Software Lifecycle Management: Enable effective tracking of tools and processes involved in the software's creation and maintenance.

By adopting this schema, organisations can create detailed and reliable SBOMs, ensuring transparency, traceability, and security throughout the software development lifecycle.


Schemas

$id: https://github.com/nqminds/Trusted-AI-BOM/blob/main/packages/schemas/src/taibom-schemas/30-sbom.v1.0.0.schema.yaml
$schema: https://json-schema.org/draft/2019-09/schema
title: SBOM
description: A software bill of materials (SBOM) generated for the project.
type: object
properties:
bomFormat:
type: string
description: Format of the SBOM.
specVersion:
type: string
description: Version of the SBOM specification.
serialNumber:
type: string
description: Unique serial number for the SBOM.
version:
type: integer
description: Version number of the SBOM.
metadata:
type: object
description: Metadata related to the SBOM generation.
properties:
timestamp:
type: string
format: date-time
description: Timestamp when the SBOM was generated.
tools:
type: object
description: Tools used to generate the SBOM.
properties:
components:
type: array
description: List of tools and their metadata.
items:
type: object
properties:
type:
type: string
description: Type of tool (e.g., application).
author:
type: string
description: Author of the tool.
name:
type: string
description: Name of the tool.
version:
type: string
description: Version of the tool.
component:
type: object
description: Component information of the project.
properties:
bom-ref:
type: string
description: Unique reference for the component.
type:
type: string
description: Type of the component (e.g., file, library).
name:
type: string
description: Name of the component.
components:
type: array
description: List of components in the SBOM.
items:
type: object
properties:
bom-ref:
type: string
description: Unique reference for the component.
type:
type: string
description: Type of the component (e.g., library).
name:
type: string
description: Name of the component.
version:
type: string
description: Version of the component.
cpe:
type: string
description: Common Platform Enumeration (CPE) for the component.
purl:
type: string
description: Package URL (PURL) for the component.
properties:
type: array
description: Additional metadata for the component.
items:
type: object
properties:
name:
type: string
description: Property name.
value:
type: string
description: Property value.
required:
- bomFormat
- specVersion
- serialNumber
- version
- metadata
- components

Examples

bom Formatspec Versionserial Numberversionmetadatacomponents
CycloneDX1.6urn:uuid:e865fb76-fb02-4554-bad7-7a92344317fe1[object Object][object Object]
Edit this schema here