Skip to content
Novus Examples

Supply chain

Software supply-chain tooling reads a small family of documents very carefully, and getting a realistic one to test against usually means scanning a real product. This category ships them outright: CycloneDX and SPDX SBOMs in JSON, XML, and tag-value form, describing the same fictional component tree so format converters can be diffed. Lockfiles cover the major ecosystems with pinned versions and integrity hashes. Provenance and attestation fixtures follow the in-toto and SLSA shapes, VEX and OSV documents carry advisory data for invented packages, and dependency-audit reports show the output a scanner would produce. Every package name, version, hash, and advisory ID is fabricated — realistic in shape, and traceable to nothing real.

Filter supply chain on Browse · 116 files · 5 subcategories

116 of 116 files

Graphs

Preview of cargo tree Output
txt
511 B
Actual file preview for cargo tree Output

cargo tree Output

Cargo's tree output, which writes versions with a leading `v` and marks already-shown subtrees with `(*)` — close enough to npm's tree to fool a parser, different enough to break one. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of Dependency Graph (GraphML)
graphml
3.8 KB
Actual file preview for Dependency Graph (GraphML)

Dependency Graph (GraphML)

The dependency graph in GraphML, with typed attribute keys for node version, licence and depth and for edge range — the interchange format graph databases and analysis tools import. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
GRAPHML · Graphs
Use case
Graph dataConversion testing+1· Conversion set
Preview of Dependency Graph (Mermaid Flowchart)
mmd
1.1 KB
Actual file preview for Dependency Graph (Mermaid Flowchart)

Dependency Graph (Mermaid Flowchart)

The dependency graph as Mermaid, for embedding in Markdown documentation — labelled edges carry the declared range and a classDef highlights the two diamond joins. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
MMD · Graphs
Use case
Graph dataConversion testing+1· Conversion set
Preview of Dependency Graph With a Cycle (Graphviz DOT)
dot
740 B
Actual file preview for Dependency Graph With a Cycle (Graphviz DOT)

Dependency Graph With a Cycle (Graphviz DOT)

The cyclic plugin graph as DOT, with the three cycle edges highlighted. Graphviz renders it happily, which is exactly why a topological sort must be the thing that rejects it. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
DOT · Graphs
Use case
Graph dataError handling+1· Paired fixture
Preview of Dependency Graph With a Cycle (JSON)
json
1.5 KB
Actual file preview for Dependency Graph With a Cycle (JSON)

Dependency Graph With a Cycle (JSON)

A dependency graph containing a genuine three-node cycle between fictional plugins — the fixture that makes a naive recursive walker hang or blow the stack, with the cycle path stated so the expected answer is unambiguous. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Graphs
Use case
JSON parsingGraph data+1· Paired fixture
Preview of Dependency Graph With Diamond Dependencies (JSON)
json
4.8 KB
Actual file preview for Dependency Graph With Diamond Dependencies (JSON)

Dependency Graph With Diamond Dependencies (JSON)

An explicit node/edge dependency graph with in-degree, out-degree and depth precomputed, plus a diamonds array naming the two shared nodes and their parents — the reference answer for any graph builder run against the SBOMs and lockfiles here. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Graphs
Use case
JSON parsingGraph data+1· Paired fixture
Preview of Dependency Graph With Diamonds (Graphviz DOT)
dot
1.9 KB
Actual file preview for Dependency Graph With Diamonds (Graphviz DOT)

Dependency Graph With Diamonds (Graphviz DOT)

The same diamond graph as Graphviz DOT, with edge labels carrying the declared semver range and the two diamond joins filled — renderable to SVG and diffable against the JSON twin. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
DOT · Graphs
Use case
Graph dataConversion testing+1· Paired fixture
Preview of go mod graph Edge List
txt
703 B
Actual file preview for go mod graph Edge List

go mod graph Edge List

`go mod graph` output: a flat edge list, one `parent@version child@version` pair per line with no indentation at all — the simplest graph serialisation in this category and the easiest to diff. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of Gradle dependencies Report Output
txt
801 B
Actual file preview for Gradle dependencies Report Output

Gradle dependencies Report Output

Gradle's dependency report, which marks repeat subtrees with `(*)` and explains the marker in a footer — so a parser has to resolve those references back to their first occurrence. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of Maven dependency:tree Output
txt
971 B
Actual file preview for Maven dependency:tree Output

Maven dependency:tree Output

Maven's dependency tree, complete with the [INFO] log prefix that has to be stripped before the tree can be read and the five-part coordinate form Maven uses. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of npm ls Dependency Tree (JSON)
json
2.7 KB
Actual file preview for npm ls Dependency Tree (JSON)

npm ls Dependency Tree (JSON)

The nested tree `npm ls --json` prints, where a shared dependency is REPEATED under every parent rather than deduplicated — so counting objects gives a larger number than the graph has nodes. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Graphs
Use case
JSON parsingGraph data+1· Conversion set
Preview of npm ls Dependency Tree (Text)
txt
507 B
Actual file preview for npm ls Dependency Tree (Text)

npm ls Dependency Tree (Text)

The console tree with box-drawing characters and `deduped` markers on repeat visits — the output people paste into issues, and a genuine test of whether a scraper handles non-ASCII tree glyphs. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs · UTF-8
Use case
Log parsingGraph data+1· Conversion set
Preview of pipdeptree JSON Output
json
2.6 KB
Actual file preview for pipdeptree JSON Output

pipdeptree JSON Output

pipdeptree output, whose top level is an ARRAY rather than an object — the shape that breaks a loader written against npm's tree — with both installed and required versions on every edge. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Graphs
Use case
JSON parsingGraph data+1· Conversion set
Preview of Transitive Dependency Closure (CSV)
csv
777 B
Actual file preview for Transitive Dependency Closure (CSV)

Transitive Dependency Closure (CSV)

Every edge in the fictional dependency graph as one row — parent, child, declared range, resolved version, depth and whether the edge is direct — the form a spreadsheet or SQL import can aggregate. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
CSV · Graphs · 10 rows
Use case
CSV parsingGraph data+1· Conversion set
Preview of Version Conflict and Diamond Report (Markdown)
md
1.7 KB
Actual file preview for Version Conflict and Diamond Report (Markdown)

Version Conflict and Diamond Report (Markdown)

The written explanation of both diamonds in this category — the one that resolves to a single shared node and the peer conflict that forces a nested duplicate — with the four assertions a resolver test should make. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
MD · Graphs
Use case
Editor testingGraph data+1· Conversion set

Lockfiles

Preview of bun.lock (Text Lockfile)
lock
2.2 KB
Actual file preview for bun.lock (Text Lockfile)

bun.lock (Text Lockfile)

Bun's text lockfile, where each package is a positional array of descriptor, dependency map and integrity string rather than an object — a shape that breaks parsers assuming every lock entry is keyed. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
JSON parsingConfig parsing+1· Conversion set
Preview of Cargo.lock (version 3, Legacy)
lock
2.2 KB
Actual file preview for Cargo.lock (version 3, Legacy)

Cargo.lock (version 3, Legacy)

The same fictional Rust tree pinned by a version 3 Cargo.lock, for testing that a reader keys on the declared version rather than assuming the newest format. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of Cargo.lock (version 4)
lock
2.2 KB
Actual file preview for Cargo.lock (version 4)

Cargo.lock (version 4)

A Rust Cargo.lock in the version 4 format — TOML [[package]] tables with a registry source, a sha256-shaped checksum and a name-only dependencies array that resolves against the other tables. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of Cargo.lock, Truncated — Intentionally Corrupt
lock
643 B
Actual file preview for Cargo.lock, Truncated — Intentionally Corrupt

Cargo.lock, Truncated — Intentionally Corrupt

An intentionally corrupt Cargo.lock: a valid version 4 lockfile cut off inside a [[package]] table so the final key/value pair is incomplete. Small on purpose. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Error handlingConfig parsing· Conversion set
Preview of composer.lock (PHP)
lock
5.9 KB
Actual file preview for composer.lock (PHP)

composer.lock (PHP)

A PHP composer.lock in JSON, pinning each fictional package by both a git reference and a dist zip shasum, with a content-hash binding it to composer.json. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
JSON parsingConfig parsing+1· Conversion set
Preview of conda Explicit Environment Lock
txt
1.2 KB
Actual file preview for conda Explicit Environment Lock

conda Explicit Environment Lock

A conda explicit lock: an @EXPLICIT marker followed by one fully-resolved URL per fictional package with an md5 fragment — no solver involved, which is exactly what makes it a lockfile. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of Gemfile.lock (Bundler)
lock
735 B
Actual file preview for Gemfile.lock (Bundler)

Gemfile.lock (Bundler)

A Bundler lockfile in its indentation-significant block format — specs nested under GEM, transitive requirements nested one level deeper, and the BUNDLED WITH version on its own indented line. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of go.mod Module Manifest (as .txt)
txt
581 B
Actual file preview for go.mod Module Manifest (as .txt)

go.mod Module Manifest (as .txt)

A Go module manifest with separate direct and // indirect require blocks for the fictional tree. Served with a .txt extension because go.mod has no registered media type; the content is verbatim go.mod syntax. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of go.sum Checksum Lines (as .txt)
txt
1.4 KB
Actual file preview for go.sum Checksum Lines (as .txt)

go.sum Checksum Lines (as .txt)

go.sum content: two h1: lines per fictional module — one for the module zip and one for its go.mod — which is the pairing a verifier must require. Served as .txt because go.sum has no registered media type. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of Gradle Dependency Lockfile
lock
1 KB
Actual file preview for Gradle Dependency Lockfile

Gradle Dependency Lockfile

A Gradle dependency lockfile: one `group:artifact:version=configurations` line per fictional module plus the `empty=` line that records configurations resolving to nothing. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of Lockfile Pin Summary (CSV)
csv
677 B
Actual file preview for Lockfile Pin Summary (CSV)

Lockfile Pin Summary (CSV)

Declared range against resolved version for every fictional package pinned by the lockfiles in this category — the table a review needs to see which pins drifted from their manifest ranges. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
CSV · Lockfiles · 9 rows
Use case
CSV parsingData import+1· Conversion set
Preview of mix.lock (Elixir)
lock
1.7 KB
Actual file preview for mix.lock (Elixir)

mix.lock (Elixir)

An Elixir mix.lock: a literal Elixir map whose values are tuples of atoms, strings and lists. It is neither JSON nor TOML, so a generic lockfile reader has to special-case it. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of npm Lockfile With a Peer Conflict and Nested Duplicate
json
4.2 KB
Actual file preview for npm Lockfile With a Peer Conflict and Nested Duplicate

npm Lockfile With a Peer Conflict and Nested Duplicate

An npm lockfile where the fictional example-cache pins a peer of example-logger@2.9.0 while the rest of the tree resolves 3.4.1, forcing a nested node_modules duplicate — the shape a deduplication report must detect. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingGraph data+1· Conversion set
Preview of npm Lockfile With Integrity Mismatch — Intentionally Invalid
json
3.7 KB
Actual file preview for npm Lockfile With Integrity Mismatch — Intentionally Invalid

npm Lockfile With Integrity Mismatch — Intentionally Invalid

An intentionally invalid npm lockfile: two fictional packages carry sha512 integrity strings that cannot match their resolved tarballs — one derived from the wrong version, one a padded placeholder. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
Error handlingJSON parsing+1· Conversion set
Preview of npm package-lock.json (lockfileVersion 1, Legacy)
json
3 KB
Actual file preview for npm package-lock.json (lockfileVersion 1, Legacy)

npm package-lock.json (lockfileVersion 1, Legacy)

The original npm v1 lockfile layout — a nested dependencies object with requires maps and no packages section — still found in long-lived repositories and needed by any migration path. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingConversion testing· Conversion set
Preview of npm package-lock.json (lockfileVersion 2, Dual Layout)
json
6.6 KB
Actual file preview for npm package-lock.json (lockfileVersion 2, Dual Layout)

npm package-lock.json (lockfileVersion 2, Dual Layout)

The transitional npm v2 lockfile, which carries BOTH the v3 packages map and the legacy nested dependencies tree describing the same fictional install — the case where a parser must not double-count. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingConversion testing+1· Conversion set
Preview of npm package-lock.json (lockfileVersion 3)
json
3.7 KB
Actual file preview for npm package-lock.json (lockfileVersion 3)

npm package-lock.json (lockfileVersion 3)

An npm lockfile in the modern v3 layout: a flat packages map keyed by node_modules path, with resolved tarball URLs and sha512 subresource integrity for nine fictional dependencies. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingConversion testing+1· Conversion set
Preview of npm-shrinkwrap.json (Publishable Lock)
json
3.7 KB
Actual file preview for npm-shrinkwrap.json (Publishable Lock)

npm-shrinkwrap.json (Publishable Lock)

The shrinkwrap variant of an npm lockfile — identical in structure to package-lock.json but published inside the package tarball, so tooling that keys on the filename must handle both. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingConversion testing· Conversion set
Preview of packages.lock.json (NuGet)
json
2.5 KB
Actual file preview for packages.lock.json (NuGet)

packages.lock.json (NuGet)

A NuGet lockfile keyed by target framework, distinguishing Direct from Transitive entries and recording a base64 contentHash for each fictional package. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Lockfiles
Use case
JSON parsingConfig parsing+1· Conversion set
Preview of pip constraints.txt
txt
439 B
Actual file preview for pip constraints.txt

pip constraints.txt

A pip constraints file pinning the same nine fictional packages. Constraints bound a resolution without adding dependencies, so a tool that treats this like requirements.txt installs nine packages too many. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of pip requirements.txt With Pinned Hashes
txt
1.9 KB
Actual file preview for pip requirements.txt With Pinned Hashes

pip requirements.txt With Pinned Hashes

A hash-pinned pip requirements file with two sha256 hashes per fictional package (wheel and sdist) and line continuations — the form `--require-hashes` installs demand. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of pip-compile Annotated requirements.txt
txt
852 B
Actual file preview for pip-compile Annotated requirements.txt

pip-compile Annotated requirements.txt

A pip-compile output where every pin carries a `# via` annotation naming the requirement that pulled it in — the only place the transitive graph survives in a pip workflow. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingGraph data+1· Conversion set
Preview of Pipfile.lock (Pipenv)
lock
2.1 KB
Actual file preview for Pipfile.lock (Pipenv)

Pipfile.lock (Pipenv)

A Pipenv lockfile in JSON, with the _meta hash that ties it to its Pipfile, a named index source and nine fictional pinned packages in the default section. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
JSON parsingConfig parsing+1· Conversion set
Preview of pnpm-lock.yaml (lockfileVersion 9)
yaml
2.9 KB
Actual file preview for pnpm-lock.yaml (lockfileVersion 9)

pnpm-lock.yaml (lockfileVersion 9)

A pnpm v9 lockfile with its three-section layout — importers for declared specifiers, packages for resolution metadata and snapshots for the resolved edges — pinning the same fictional tree. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
YAML · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of Podfile.lock (CocoaPods)
lock
1.4 KB
Actual file preview for Podfile.lock (CocoaPods)

Podfile.lock (CocoaPods)

A CocoaPods lockfile: a YAML-subset document listing pods with their nested requirements, a SPEC CHECKSUMS block of SHA-1 values and the CocoaPods version that produced it. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of poetry.lock (TOML)
lock
4.5 KB
Actual file preview for poetry.lock (TOML)

poetry.lock (TOML)

A Poetry lockfile: TOML array-of-tables entries with per-artifact sha256 hashes, a [package.dependencies] table per package and the content-hash that binds the lock to pyproject.toml. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of pubspec.lock (Dart/Flutter)
lock
2.4 KB
Actual file preview for pubspec.lock (Dart/Flutter)

pubspec.lock (Dart/Flutter)

A Dart pubspec.lock in YAML, labelling each fictional package as direct main or transitive and recording a sha256 in its description block along with the SDK constraint. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of uv.lock (TOML)
lock
4.5 KB
Actual file preview for uv.lock (TOML)

uv.lock (TOML)

A uv lockfile in TOML, recording an sdist and a wheel per fictional package with inline tables carrying url, hash and byte size — a newer layout than poetry.lock and a useful contrast for parser tests. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of yarn.lock (Berry, __metadata version 8)
lock
3.1 KB
Actual file preview for yarn.lock (Berry, __metadata version 8)

yarn.lock (Berry, __metadata version 8)

A modern Yarn Berry lockfile: YAML-shaped with an __metadata header, npm: protocol resolutions and cache-key-prefixed checksums — deliberately different from the Classic file in the same family. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of yarn.lock (Classic v1)
lock
3 KB
Actual file preview for yarn.lock (Classic v1)

yarn.lock (Classic v1)

A Yarn 1 lockfile in its own line-oriented grammar — quoted descriptor headers, two-space indented fields, resolved URLs with a SHA-1 fragment — which looks like YAML but is not. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set

Provenance

Preview of Attestation Verification Policy (YAML)
yaml
849 B
Actual file preview for Attestation Verification Policy (YAML)

Attestation Verification Policy (YAML)

The policy an admission controller evaluates before an artifact is allowed through: required predicate types, an allowed-builder list, a minimum SLSA level, a transparency-log requirement and one dated exception. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
YAML · Provenance
Use case
Config parsingConfig testing+1· Conversion set
Preview of Attestation With a Full SPDX Predicate
json
12.1 KB
Actual file preview for Attestation With a Full SPDX Predicate

Attestation With a Full SPDX Predicate

An in-toto statement whose predicate is an entire SPDX 2.3 document — the nesting that makes attestation payloads large and that a size-limited verifier has to cope with. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Build Metadata Manifest (JSON)
json
1.2 KB
Actual file preview for Build Metadata Manifest (JSON)

Build Metadata Manifest (JSON)

The plain build record a CI job writes next to its artifacts — source ref and commit, builder identity, timings, toolchain versions and output digests — from which a provenance statement can be generated. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingMetadata testing+1· Conversion set
Preview of Detached Signature, ASCII Armor — SAMPLE Shape
txt
564 B
Actual file preview for Detached Signature, ASCII Armor — SAMPLE Shape

Detached Signature, ASCII Armor — SAMPLE Shape

An ASCII-armored detached signature block of the shape that accompanies a SHA256SUMS file. It is a SAMPLE placeholder, not a valid OpenPGP signature — armor detectors will find it, verifiers must reject it. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
TXT · Provenance
Use case
Config parsingCertificate & key testing+1· Conversion set
Preview of DSSE Envelope With Undecodable Payload — Intentionally Corrupt
json
398 B
Actual file preview for DSSE Envelope With Undecodable Payload — Intentionally Corrupt

DSSE Envelope With Undecodable Payload — Intentionally Corrupt

An intentionally corrupt DSSE envelope: the JSON parses and the signature block looks complete, but the payload is truncated and contains characters outside the base64 alphabet. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
Error handlingJSON parsing· Conversion set
Preview of DSSE Envelope Wrapping a Provenance Statement
json
2.5 KB
Actual file preview for DSSE Envelope Wrapping a Provenance Statement

DSSE Envelope Wrapping a Provenance Statement

A DSSE envelope whose base64 payload decodes to the SLSA v1 statement in this family — the wrapper attestation tooling actually transports. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingJWT / JWKS testing+1· Conversion set
Preview of in-toto Layout (Supply-Chain Policy)
json
2.4 KB
Actual file preview for in-toto Layout (Supply-Chain Policy)

in-toto Layout (Supply-Chain Policy)

The policy half of in-toto: a layout declaring which steps must run, which keys may sign them, and the MATCH/CREATE/DISALLOW artifact rules that bind each step's products to the next step's materials. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingConfig testing+1· Conversion set
Preview of in-toto Link Metadata
json
1 KB
Actual file preview for in-toto Link Metadata

in-toto Link Metadata

An in-toto link file recording one build step: the materials that went in, the products that came out and their sha256 digests, wrapped in the signed/signatures envelope in-toto uses. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set
Preview of in-toto Statement With SLSA Provenance v0.2
json
1.8 KB
Actual file preview for in-toto Statement With SLSA Provenance v0.2

in-toto Statement With SLSA Provenance v0.2

The predecessor predicate: SLSA v0.2 uses invocation/materials/buildConfig where v1 uses buildDefinition/runDetails, so this file is the migration test for any verifier that must accept both. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingConversion testing+1· Conversion set
Preview of in-toto Statement With SLSA Provenance v1
json
2.3 KB
Actual file preview for in-toto Statement With SLSA Provenance v1

in-toto Statement With SLSA Provenance v1

An unsigned in-toto Statement carrying a SLSA v1 provenance predicate for a fictional release: build definition, external parameters, resolved dependencies with digests, and run details naming an invented builder. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Provenance Verification Runbook (Markdown)
md
2.3 KB
Actual file preview for Provenance Verification Runbook (Markdown)

Provenance Verification Runbook (Markdown)

The five checks a verifier must perform against the attestation fixtures in this category, and the exact result each one should produce — including the two that are meant to fail. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
MD · Provenance
Use case
Editor testingConversion testing· Conversion set
Preview of Rekor Transparency-Log Entry
json
1.6 KB
Actual file preview for Rekor Transparency-Log Entry

Rekor Transparency-Log Entry

A transparency-log entry keyed by its own UUID at the top level — a shape that breaks parsers expecting a fixed root key — with a base64 body that decodes to a dsse record. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Release SHA256SUMS Manifest
txt
1 KB
Actual file preview for Release SHA256SUMS Manifest

Release SHA256SUMS Manifest

The oldest supply-chain artifact there is: a sha256sum manifest with the exact two-space separator the tool emits, listing a fictional release tarball and its nine dependency archives. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Provenance
Use case
Config parsingConversion testing+1· Conversion set
Preview of Reproducible Build Comparison Report
json
1.2 KB
Actual file preview for Reproducible Build Comparison Report

Reproducible Build Comparison Report

Two independent builds of the same fictional artifact on different architectures, both producing one digest — the evidence a rebuilder publishes, with SOURCE_DATE_EPOCH recorded as the thing that made it possible. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingVisual diff / regression+1· Conversion set
Preview of SBOM Attestation Envelope (cosign Shape)
json
1.1 KB
Actual file preview for SBOM Attestation Envelope (cosign Shape)

SBOM Attestation Envelope (cosign Shape)

An attestation that binds an SBOM to an artifact digest rather than shipping the SBOM loose — the pattern keyless signing produces, complete with the empty keyid that identity-based signing leaves behind. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Sigstore Bundle (v0.3 Shape)
json
4 KB
Actual file preview for Sigstore Bundle (v0.3 Shape)

Sigstore Bundle (v0.3 Shape)

A Sigstore bundle in the shape verifiers read: a SAMPLE certificate, a transparency-log entry with an inclusion proof and checkpoint, and the DSSE envelope carrying the provenance. Signatures, key ids and certificates here are SAMPLE placeholders — the base64 decodes to the words 'SAMPLE SIGNATURE', so verification must fail. Nothing here is cryptographically valid and no key material is real.

File
JSON · Provenance
Use case
JSON parsingCertificate & key testing+1· Conversion set
Preview of SLSA Build Level Matrix (CSV)
csv
283 B
Actual file preview for SLSA Build Level Matrix (CSV)

SLSA Build Level Matrix (CSV)

How the nine fictional dependencies distribute across SLSA build levels, with the policy outcome for each band — the table that turns the VSA's dependencyLevels object into something reviewable. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
CSV · Provenance · 4 rows
Use case
CSV parsingData import+1· Conversion set
Preview of SLSA Verification Summary Attestation (VSA)
json
1.3 KB
Actual file preview for SLSA Verification Summary Attestation (VSA)

SLSA Verification Summary Attestation (VSA)

A VSA — the attestation a verifier issues so downstream consumers do not have to re-verify the whole chain — recording a PASSED result against a fictional SLSA L3 policy and the level distribution of dependencies. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Provenance
Use case
JSON parsingSchema validation+1· Conversion set

Sbom

Preview of CycloneDX 1.4 Application SBOM (XML)
xml
6 KB
Actual file preview for CycloneDX 1.4 Application SBOM (XML)

CycloneDX 1.4 Application SBOM (XML)

A CycloneDX 1.4 XML SBOM of the same fictional tree — the version most long-lived tooling emitted first, kept for backwards-compatibility tests against the 1.5 and 1.6 documents in this family. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
XML · Sbom
Use case
Conversion testingSchema validation· Conversion set
Preview of CycloneDX 1.5 Application SBOM (JSON)
json
8.3 KB
Actual file preview for CycloneDX 1.5 Application SBOM (JSON)

CycloneDX 1.5 Application SBOM (JSON)

A CycloneDX 1.5 SBOM of the same fictional tree, useful for spec-version migration tests: 1.5 introduced the object form of metadata.tools and this file uses it, while dropping the 1.6-only external references. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingConversion testing+1· Conversion set
Preview of CycloneDX 1.6 Application SBOM (JSON)
json
11.2 KB
Actual file preview for CycloneDX 1.6 Application SBOM (JSON)

CycloneDX 1.6 Application SBOM (JSON)

A complete CycloneDX 1.6 SBOM in JSON for a fictional application and its nine dependencies, with purls, SHA-256 hashes, supplier records, external references and an explicit dependency graph. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingConversion testing+2· Paired fixture
Preview of CycloneDX 1.6 Application SBOM (XML)
xml
6 KB
Actual file preview for CycloneDX 1.6 Application SBOM (XML)

CycloneDX 1.6 Application SBOM (XML)

The same fictional CycloneDX 1.6 SBOM serialised as XML against the cyclonedx.org/schema/bom/1.6 namespace — the JSON twin of this file carries identical components and edges, so a converter can be diffed exactly. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
XML · Sbom
Use case
Conversion testingSchema validation+1· Paired fixture
Preview of CycloneDX 1.6 Minimal SBOM (One Component)
json
2.6 KB
Actual file preview for CycloneDX 1.6 Minimal SBOM (One Component)

CycloneDX 1.6 Minimal SBOM (One Component)

The smallest CycloneDX document that is still valid: required metadata, one fictional component, and no dependencies array — for testing that a reader handles an SBOM with nothing optional present. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingSchema validation+1· Conversion set
Preview of CycloneDX Container Image SBOM
json
5.6 KB
Actual file preview for CycloneDX Container Image SBOM

CycloneDX Container Image SBOM

A CycloneDX SBOM whose root component is an OCI container image rather than an application, mixing a fictional operating-system package with language packages — the shape an image scanner emits. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingConversion testing+1· Conversion set
Preview of CycloneDX SBOM With Diamond Dependency Graph
json
11.8 KB
Actual file preview for CycloneDX SBOM With Diamond Dependency Graph

CycloneDX SBOM With Diamond Dependency Graph

A CycloneDX 1.6 SBOM whose dependencies array contains two diamonds: the fictional example-logger is reached through three parents and example-json-path through two, both resolving to a single node. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingGraph data+1· Conversion set
Preview of CycloneDX SBOM With Embedded SAMPLE Vulnerabilities
json
16 KB
Actual file preview for CycloneDX SBOM With Embedded SAMPLE Vulnerabilities

CycloneDX SBOM With Embedded SAMPLE Vulnerabilities

A CycloneDX 1.6 SBOM that carries its own vulnerabilities array — four clearly-marked SAMPLE advisories in the invented NOVUS-SAMPLE namespace, with CVSS v3.1 vectors, CWE classes and affected version ranges. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingSchema validation+1· Conversion set
Preview of CycloneDX SBOM With External References and Multi-Algorithm Hashes
json
17.1 KB
Actual file preview for CycloneDX SBOM With External References and Multi-Algorithm Hashes

CycloneDX SBOM With External References and Multi-Algorithm Hashes

Every fictional component in this CycloneDX SBOM carries three hash algorithms and five external-reference types (distribution, vcs, issue-tracker, documentation, build-system). Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingMetadata testing+1· Conversion set
Preview of CycloneDX SBOM With Schema Violations — Intentionally Invalid
json
11.3 KB
Actual file preview for CycloneDX SBOM With Schema Violations — Intentionally Invalid

CycloneDX SBOM With Schema Violations — Intentionally Invalid

An intentionally invalid CycloneDX SBOM: the JSON parses, but bomFormat is missing, one component has no name, and a dependency references a bom-ref that no component declares. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
Schema validationError handling+1· Conversion set
Preview of CycloneDX SBOM With Services and Compositions
json
12.5 KB
Actual file preview for CycloneDX SBOM With Services and Compositions

CycloneDX SBOM With Services and Compositions

A CycloneDX SBOM that declares external services and composition completeness alongside components — the sections tools most often skip. Both services are fictional endpoints on the .example domain. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingSchema validation+1· Conversion set
Preview of CycloneDX SBOM With SPDX Licence Expressions
json
11.2 KB
Actual file preview for CycloneDX SBOM With SPDX Licence Expressions

CycloneDX SBOM With SPDX Licence Expressions

A CycloneDX SBOM that uses compound SPDX licence expressions — AND, OR, WITH and a LicenseRef — instead of plain licence ids, for testing compliance scanners that must evaluate the expression grammar. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingSchema validation+1· Conversion set
Preview of CycloneDX SBOM With Unicode Metadata (Edge Case)
json
11.6 KB
Actual file preview for CycloneDX SBOM With Unicode Metadata (Edge Case)

CycloneDX SBOM With Unicode Metadata (Edge Case)

A CycloneDX SBOM whose author names and properties contain accented Latin, CJK, right-to-left Hebrew, emoji and a deliberately long property value — for testing encoding handling and field-width assumptions. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom · UTF-8 (no BOM)
Use case
JSON parsingEncoding detection+1· Conversion set
Preview of CycloneDX SBOM, Truncated — Intentionally Corrupt
json
1.2 KB
Actual file preview for CycloneDX SBOM, Truncated — Intentionally Corrupt

CycloneDX SBOM, Truncated — Intentionally Corrupt

An intentionally corrupt CycloneDX SBOM: a valid 1.6 document cut off mid-object so the JSON never closes. Small on purpose — it exists to check that a reader fails cleanly instead of half-loading a component list. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
Error handlingJSON parsing· Conversion set
Preview of SBOM Component Inventory (CSV)
csv
958 B
Actual file preview for SBOM Component Inventory (CSV)

SBOM Component Inventory (CSV)

The same fictional component tree flattened to a spreadsheet-friendly CSV — name, version, licence, depth, purl and a SHA-256 prefix — for testing the export path SBOM tools offer alongside JSON. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
CSV · Sbom · 10 rows
Use case
CSV parsingData import+1· Conversion set
Preview of SBOM Format Crosswalk (CycloneDX to SPDX)
md
2.1 KB
Actual file preview for SBOM Format Crosswalk (CycloneDX to SPDX)

SBOM Format Crosswalk (CycloneDX to SPDX)

The field-by-field map between the CycloneDX 1.6 and SPDX 2.3 documents in this category, plus the five invariants a correct conversion preserves and the three things it legitimately loses. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
MD · Sbom
Use case
Conversion testingEditor testing· Conversion set
Preview of SPDX 2.2 Legacy SBOM (Tag-Value)
spdx
7.4 KB
Actual file preview for SPDX 2.2 Legacy SBOM (Tag-Value)

SPDX 2.2 Legacy SBOM (Tag-Value)

The same fictional tree as an SPDX 2.2 tag-value document — the version still produced by older toolchains — for upgrade and compatibility tests against the 2.3 twin in this family. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingConversion testing+1· Conversion set
Preview of SPDX 2.3 Application SBOM (JSON)
json
11 KB
Actual file preview for SPDX 2.3 Application SBOM (JSON)

SPDX 2.3 Application SBOM (JSON)

An SPDX 2.3 SBOM in JSON describing the same fictional tree as the CycloneDX documents in this category, with SPDXIDs, purl external references, SHA-256 checksums and DESCRIBES/DEPENDS_ON relationships. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingConversion testing+2· Paired fixture
Preview of SPDX 2.3 Application SBOM (Tag-Value)
spdx
7.4 KB
Actual file preview for SPDX 2.3 Application SBOM (Tag-Value)

SPDX 2.3 Application SBOM (Tag-Value)

The same SPDX 2.3 SBOM in the specification's plain-text tag-value form — the serialisation many licence-compliance tools still read first, and the exact twin of the JSON document in this family. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Conversion testingConfig parsing+1· Paired fixture
Preview of SPDX 2.3 Application SBOM (YAML)
yaml
9 KB
Actual file preview for SPDX 2.3 Application SBOM (YAML)

SPDX 2.3 Application SBOM (YAML)

The SPDX 2.3 SBOM in its YAML serialisation — the third form the specification defines alongside JSON and tag-value, and the one most often hand-edited in a repository. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
YAML · Sbom
Use case
Conversion testingConfig parsing+1· Conversion set
Preview of SPDX 2.3 Minimal SBOM (Tag-Value)
spdx
1.2 KB
Actual file preview for SPDX 2.3 Minimal SBOM (Tag-Value)

SPDX 2.3 Minimal SBOM (Tag-Value)

An SPDX 2.3 tag-value document with only the mandatory document header and a single fictional package — no relationships, no files — for testing that a parser accepts a document with every optional block absent. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingSchema validation+1· Conversion set
Preview of SPDX 2.3 SBOM Relationship Graph (Tag-Value)
spdx
7.4 KB
Actual file preview for SPDX 2.3 SBOM Relationship Graph (Tag-Value)

SPDX 2.3 SBOM Relationship Graph (Tag-Value)

An SPDX tag-value SBOM emphasising its relationship block: one DESCRIBES edge and ten DEPENDS_ON edges that form the same two diamonds as the CycloneDX graph fixture. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingGraph data+1· Conversion set
Preview of SPDX 2.3 SBOM With File-Level Records
spdx
4 KB
Actual file preview for SPDX 2.3 SBOM With File-Level Records

SPDX 2.3 SBOM With File-Level Records

An SPDX 2.3 tag-value SBOM that descends to file level: two fictional build outputs with SHA-1 and SHA-256 checksums, per-file licence findings, and CONTAINS relationships back to their package. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingConversion testing+1· Conversion set
Preview of SPDX 2.3 SBOM With LicenseRef and Compound Expressions
spdx
7.8 KB
Actual file preview for SPDX 2.3 SBOM With LicenseRef and Compound Expressions

SPDX 2.3 SBOM With LicenseRef and Compound Expressions

An SPDX tag-value SBOM that declares a non-standard LicenseRef with its extracted text and uses it inside compound expressions — the case that breaks compliance tools which assume every licence is an SPDX id. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingSchema validation+1· Conversion set
Preview of SPDX 2.3 SBOM With Snippet Ranges
json
12.2 KB
Actual file preview for SPDX 2.3 SBOM With Snippet Ranges

SPDX 2.3 SBOM With Snippet Ranges

An SPDX 2.3 JSON SBOM that uses the snippet section to attribute a fictional vendored fragment inside a file to a different licence, with both byte-offset and line-number ranges. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingSchema validation+1· Conversion set
Preview of SPDX 3.0 Application SBOM (JSON-LD)
json
9.3 KB
Actual file preview for SPDX 3.0 Application SBOM (JSON-LD)

SPDX 3.0 Application SBOM (JSON-LD)

An SPDX 3.0 SBOM in JSON-LD — the element-graph model that replaced the 2.x document layout — describing the same fictional tree with software_Package elements and typed Relationship nodes. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
JSON · Sbom
Use case
JSON parsingConversion testing+2· Conversion set
Preview of SPDX Container Image SBOM (Tag-Value)
spdx
3.9 KB
Actual file preview for SPDX Container Image SBOM (Tag-Value)

SPDX Container Image SBOM (Tag-Value)

An SPDX tag-value SBOM whose document name is a fictional container image digest rather than an application version — the naming convention image scanners use, and the SPDX counterpart of the CycloneDX container fixture. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Config parsingConversion testing· Conversion set
Preview of SPDX Tag-Value SBOM, Truncated — Intentionally Corrupt
spdx
1.5 KB
Actual file preview for SPDX Tag-Value SBOM, Truncated — Intentionally Corrupt

SPDX Tag-Value SBOM, Truncated — Intentionally Corrupt

An intentionally corrupt SPDX tag-value document, cut off part-way through a tag name so the final line has no colon or value. Kept small on purpose. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
SPDX · Sbom
Use case
Error handlingConfig parsing· Conversion set

Vulnerability

Preview of cargo-audit Report (JSON)
json
4 KB
Actual file preview for cargo-audit Report (JSON)

cargo-audit Report (JSON)

A cargo-audit report that shows three findings while a fourth is on the ignore list, plus an unmaintained-crate warning — so a gate must decide whether warnings count against it. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingConversion testing+1· Conversion set
Preview of CSAF 2.0 VEX Document
json
4.9 KB
Actual file preview for CSAF 2.0 VEX Document

CSAF 2.0 VEX Document

A CSAF 2.0 VEX advisory with the nested product tree that CSAF requires — vendor, product name, product version — and product_status buckets rather than a per-statement status field. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of CycloneDX VEX Document
json
4.5 KB
Actual file preview for CycloneDX VEX Document

CycloneDX VEX Document

A CycloneDX VEX document asserting a different analysis state for each of the four SAMPLE advisories, so a suppression pipeline can be tested against every branch at once. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Dependency Alerts Feed (JSON)
json
5.3 KB
Actual file preview for Dependency Alerts Feed (JSON)

Dependency Alerts Feed (JSON)

The shape a hosted dependency-alert API returns: alerts with lifecycle state, a nested advisory, a patched-version pointer and an explicitly null dismissed_reason on the alerts that were not dismissed. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingAPI testing+1· Conversion set
Preview of Grype Scan Report (JSON)
json
8.4 KB
Actual file preview for Grype Scan Report (JSON)

Grype Scan Report (JSON)

A Grype-shaped report of the same four SAMPLE advisories, with the match detail block that explains WHY each package matched — the field that makes false positives diagnosable. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Grype Table Console Output
txt
434 B
Actual file preview for Grype Table Console Output

Grype Table Console Output

The console table a scanner prints, in fixed-width columns — the output people actually paste into tickets, and the one a log scraper has to parse without a delimiter. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
TXT · Vulnerability · 4 rows
Use case
Log parsingConversion testing+1· Conversion set
Preview of npm audit Report (auditReportVersion 2)
json
4.5 KB
Actual file preview for npm audit Report (auditReportVersion 2)

npm audit Report (auditReportVersion 2)

An npm audit v2 report keyed by package name, with the via chain, the effects list showing which fictional parents are impacted, and npm's own severity vocabulary where MEDIUM is spelled 'moderate'. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of npm audit Report (v1, Legacy Shape)
json
4.5 KB
Actual file preview for npm audit Report (v1, Legacy Shape)

npm audit Report (v1, Legacy Shape)

The legacy npm audit shape — numeric advisory ids, a separate actions array and dependency paths written with '>' — which tools built for the v2 report silently read as zero findings. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingConversion testing+1· Conversion set
Preview of OpenVEX Statement Document
json
2.8 KB
Actual file preview for OpenVEX Statement Document

OpenVEX Statement Document

An OpenVEX document covering all four status values, with the justification and impact statement OpenVEX requires alongside not_affected and the action statement it requires alongside affected. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of OSV Record With Schema Violations — Intentionally Invalid
json
1.5 KB
Actual file preview for OSV Record With Schema Violations — Intentionally Invalid

OSV Record With Schema Violations — Intentionally Invalid

An intentionally invalid OSV record: the JSON parses, but the required id is missing, modified is not an RFC 3339 timestamp, the SEMVER range has a fixed event with no introduced event, and severity.score is a number where the schema demands a CVSS vector string. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
Schema validationError handling+1· Conversion set
Preview of OSV Vulnerability Record (JSON)
json
1.7 KB
Actual file preview for OSV Vulnerability Record (JSON)

OSV Vulnerability Record (JSON)

A single OSV-schema advisory record for a fictional package, with a SEMVER range expressed as introduced/fixed events rather than as a version string — the part naive parsers get wrong. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of OSV Vulnerability Records (JSON Lines)
jsonl
5 KB
Actual file preview for OSV Vulnerability Records (JSON Lines)

OSV Vulnerability Records (JSON Lines)

All four SAMPLE advisories as newline-delimited OSV records — the bulk shape an advisory database is loaded from, where each line must parse independently. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSONL · Vulnerability · 4 records
Use case
JSON parsingData import+1· Conversion set
Preview of OSV-Scanner Report (JSON)
json
12 KB
Actual file preview for OSV-Scanner Report (JSON)

OSV-Scanner Report (JSON)

An OSV-Scanner report that nests full OSV records under each affected package and adds the groups array that collapses aliases into one finding — the structure de-duplication depends on. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of OWASP Dependency-Check Report (JSON)
json
7 KB
Actual file preview for OWASP Dependency-Check Report (JSON)

OWASP Dependency-Check Report (JSON)

A Dependency-Check-shaped JSON report, including the evidence-collection block that records how a package was identified and the confidence attached to that identification. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Paired fixture
Preview of OWASP Dependency-Check Report (XML)
xml
3.6 KB
Actual file preview for OWASP Dependency-Check Report (XML)

OWASP Dependency-Check Report (XML)

The XML twin of the Dependency-Check report — the form most Maven and Jenkins integrations consume — carrying the same four SAMPLE findings inside a namespaced analysis element. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
XML · Vulnerability
Use case
Conversion testingSchema validation+1· Paired fixture
Preview of pip-audit Report (JSON)
json
1.8 KB
Actual file preview for pip-audit Report (JSON)

pip-audit Report (JSON)

A pip-audit report for the fictional Python packages. It deliberately carries no severity field — pip-audit does not assign one — which is the case a severity gate must handle without defaulting to critical. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingConversion testing+1· Conversion set
Preview of Scanner Report, Truncated — Intentionally Corrupt
json
901 B
Actual file preview for Scanner Report, Truncated — Intentionally Corrupt

Scanner Report, Truncated — Intentionally Corrupt

An intentionally corrupt scanner report: a valid Trivy-shaped JSON document cut off inside the first finding, for testing that a CI gate fails the build rather than reporting zero vulnerabilities. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
Error handlingJSON parsing· Conversion set
Preview of Scanner SARIF 2.1.0 Report
json
6.2 KB
Actual file preview for Scanner SARIF 2.1.0 Report

Scanner SARIF 2.1.0 Report

The same four SAMPLE findings expressed as SARIF 2.1.0 — the format code-scanning dashboards ingest — with a rules array, security-severity properties and physical locations. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Severity Scoring and SLA Matrix (CSV)
csv
241 B
Actual file preview for Severity Scoring and SLA Matrix (CSV)

Severity Scoring and SLA Matrix (CSV)

A severity-band table mapping CVSS ranges to remediation SLAs and gate actions, with the finding count each band has in this fixture set — so a policy engine can be tested end to end. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
CSV · Vulnerability · 5 rows
Use case
CSV parsingConfig testing+1· Conversion set
Preview of Trivy Clean Scan Report (Zero Findings)
json
518 B
Actual file preview for Trivy Clean Scan Report (Zero Findings)

Trivy Clean Scan Report (Zero Findings)

A clean scan report — the case dashboards get wrong. Trivy omits the Vulnerabilities key entirely rather than emitting an empty array, so a reader that assumes the key exists throws on a passing build. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingError handling+1· Conversion set
Preview of Trivy Container Image Scan Report (JSON)
json
7.4 KB
Actual file preview for Trivy Container Image Scan Report (JSON)

Trivy Container Image Scan Report (JSON)

A Trivy-shaped image report with three result blocks — OS packages, language packages and a Dockerfile misconfiguration — so a parser must handle a Results array whose members have different keys. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Trivy Filesystem Scan Report (JSON)
json
6.4 KB
Actual file preview for Trivy Filesystem Scan Report (JSON)

Trivy Filesystem Scan Report (JSON)

A Trivy-shaped filesystem scan report with four SAMPLE findings against a fictional npm lockfile, one per severity band, each with a CVSS v3.1 vector, CWE class and fixed version. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
JSON · Vulnerability
Use case
JSON parsingSchema validation+1· Conversion set
Preview of Vulnerability Summary (CSV)
csv
448 B
Actual file preview for Vulnerability Summary (CSV)

Vulnerability Summary (CSV)

The four SAMPLE advisories flattened to one row each — the export a security review circulates, and the reference answer for any converter run against the Trivy, Grype or OSV reports here. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
CSV · Vulnerability · 4 rows
Use case
CSV parsingData import+1· Conversion set
Preview of Vulnerability Suppression Policy (YAML)
yaml
1.2 KB
Actual file preview for Vulnerability Suppression Policy (YAML)

Vulnerability Suppression Policy (YAML)

A suppression policy that gives every waiver an owner, a reason and an expiry date — the fields that stop a suppression file becoming a permanent blindfold. All four entries are SAMPLE. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
YAML · Vulnerability
Use case
Config parsingConfig testing+1· Conversion set
Preview of Vulnerability Triage Report (Markdown)
md
2.3 KB
Actual file preview for Vulnerability Triage Report (Markdown)

Vulnerability Triage Report (Markdown)

The human-readable end of the pipeline: a triage report that records a decision and a reachability path for each of the four SAMPLE findings, matching the states asserted by the VEX documents here. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
MD · Vulnerability
Use case
Editor testingConversion testing· Conversion set

Frequently asked questions

Which SBOM formats do you ship?

CycloneDX in JSON and XML, and SPDX in both JSON and tag-value form — all describing the same fictional component tree, so format converters can be diffed against a known target.

Are the package names and advisory IDs real?

Never. Components, versions, hashes, licences, and advisory identifiers are fabricated to be realistic in shape while referring to nothing that exists.

Do you include provenance and vulnerability documents?

Yes — in-toto and SLSA-shaped attestations, VEX and OSV documents, dependency-audit reports, and lockfiles with pinned versions and integrity hashes.