Glossary/AIBOM (AI Bill of Materials)

What is an AIBOM (AI Bill of Materials)?

An AIBOM (AI Bill of Materials) is a structured, machine-readable inventory of every AI component in a system: foundation models, fine-tuned variants, LoRA adapters, training datasets, embedding models, retrieval indexes, evaluation datasets, and the relationships between them. It is the AI-supply-chain analog of SBOM (Software Bill of Materials) — same purpose (provenance, vulnerability tracking, license compliance), different artifact (models and data, not packages and binaries).

What goes in an AIBOM

A useful AIBOM captures:

Several emerging standards aim to formalize this:

Why AIBOM matters

Three concrete use cases:

  1. Supply-chain incident response. When a vulnerability is disclosed in a foundation model or training dataset, the AIBOM tells you which downstream applications are affected. Without it, the question "are we exposed to this?" requires a manual hunt across the org.

  2. Distillation and provenance tracking. When a model is trained on outputs from another model (knowledge distillation), the AIBOM records the lineage. If the upstream model has a safety regression, the distilled descendants inherit it — and the AIBOM tells you which.

  3. Regulatory compliance. ISO 42001, the EU AI Act, and emerging US AI executive orders all require demonstrable inventory of AI systems and their components. AIBOM is the artifact that satisfies the inventory requirement.

AIBOM vs. SBOM vs. DBOM

These three are complementary, not overlapping:

ArtifactTracks
SBOMSoftware components — packages, libraries, binaries
AIBOMAI/ML components — models, datasets, adapters, evaluation results
DBOM (Data Bill of Materials)Data lineage — sources, transformations, classifications

A modern AI application typically needs all three to fully describe its supply chain.

What goes wrong when AIBOM is absent