Skip to main content

How to Verify an Evidence Archive

Prove continuous monitoring over a compliance audit period.


Verify a Quarter

stave verify --archive ./evidence/ --period 2026-Q1

Verify a Specific Date Range

stave verify --archive ./evidence/ --period 2026-01-01:2026-03-31

Strict Mode (Zero Gap Tolerance)

stave verify --archive ./evidence/ --period 2026-Q1 --strict

Produce an Attestation Document

# JSON attestation
stave verify --archive ./evidence/ --period 2026-Q1 \
--format json --out attestation.json

# Markdown for audit package
stave verify --archive ./evidence/ --period 2026-Q1 \
--format markdown --out attestation.md

Period Formats

FormatExampleMeaning
Quarter2026-Q1Jan 1 to Mar 31
Month2026-01Jan 1 to Jan 31
Day2026-01-15Single day
Range2026-01-01:2026-03-31Explicit start:end

Exit Codes

CodeMeaning
0PASS — all bundles valid, no gaps
1FAIL — invalid bundles or gaps
2Invalid input