Read-Only Raw Evidence Archive¶
Immutable archive — instantiates Capture-Latency Evidence Stratification
An immutable, write-once store that preserves the earliest raw evidence read-only, so correction and synthesis can never overwrite the original trace.
A Read-Only Raw Evidence Archive exists to guarantee one invariant of the archetype: the earliest evidence layer must remain recoverable, forever, exactly as first captured. Its defining property is immutability — once raw evidence lands here it can be read but never altered or deleted, so no later correction, summary, or reconstruction can reach back and overwrite it. It does not capture evidence live, interpret it, or decide when it may be used; its single job is preservation. Where a contemporaneous log writes the first trace, this archive freezes it. The archive is the physical embodiment of "you can always get back to what was originally there," which is what makes every downstream layer safe to add — because the original can never be lost to them.
Example¶
A national seismic network records ground motion from hundreds of stations. The raw waveform streams — the sensor's unprocessed output — are written once into a read-only archive the moment they arrive, each with the station, channel, and receipt time, and each recorded stream's presence (or expected-but-absent status) logged. Analysts then produce all sorts of derived products: filtered traces, magnitude estimates, corrected catalogs, revised event locations. Those live in working stores and get revised for years.
When a magnitude estimate for a decade-old earthquake is later disputed, a researcher can pull the original raw waveforms from the archive — untouched by any of the later processing — and recompute from scratch. If a station that should have been recording shows no data for that interval, the archive's absence register tells them the silence was expected-but-missing, not a true quiet. The corrected catalog may be better science, but the archive guarantees the raw ground truth it was built on is still there, unaltered, to check against. Overwriting it would have been irreversible; the archive makes that impossible.
How it works¶
- Write-once, read-many. Raw evidence is committed immutably on arrival; the store physically or cryptographically prevents later modification or deletion.
- Raw only. It holds the primary, unprocessed layer — not derived, corrected, or synthesized versions, which belong in mutable working stores.
- Origin stamped. Each object records where it came from and when it was received, seeding the provenance trail, so the archived original is self-identifying.
- Absence logged. Expected-but-absent inputs are registered as such, so a gap in the raw record is recoverable as a known gap rather than a silent hole.
Tuning parameters¶
- Immutability strength — from policy-enforced read-only to hardware WORM or cryptographic hashing. Stronger guarantees resist insider tampering at higher cost and rigidity.
- Retention horizon — how long raw evidence is kept before it may be aged out. Longer retention preserves more recoverability but grows storage without bound.
- Rawness cutoff — how minimally processed "raw" must be to qualify (true sensor output vs. lightly normalized). Truer rawness maximizes recoverability but is bulkier and harder to use directly.
- Absence-logging scope — whether every expected input's presence/absence is tracked or only the data that arrived. Tracking absence catches silent gaps but requires knowing what to expect.
When it helps, and when it misleads¶
Its strength is that it removes the single most destructive failure mode of layered records — raw-layer destruction, where a correction overwrites the first evidence and the original is gone for good. By making the original physically unreachable to overwriting, it guarantees that reconstruction and correction remain additive. This is the logic of write-once-read-many (WORM) storage, adopted in regulated recordkeeping precisely so that original records cannot be silently altered after the fact.[1]
Its failure mode is that immutability preserves whatever was captured, errors and all — a garbage raw reading is now permanently, authoritatively garbage, and its very immutability can lend it undue weight ("it's the original, so it's true"). A misuse is treating the archive as sufficient on its own: preserving raw evidence does nothing if no one marks the later layers as later, or if the archive quietly omits inputs it never received. The guarding discipline is to pair immutable preservation with an absence register (so missing inputs are known) and with the marking mechanisms that keep derived layers labeled — the archive protects the original but cannot, by itself, keep the reconstruction honest.
How it implements the components¶
primary_observation_layer— it preserves the earliest raw trace read-only, guaranteeing the primary layer remains recoverable no matter what is built on it.provenance_and_custody_trace— each archived object records its origin and receipt, anchoring the start of its lineage.silence_or_absence_register— it logs expected-but-absent inputs so gaps in the raw record are known gaps, not silent ones.
It does not implement automated_timestamp_capture or capture_latency_window — creating the live, timestamped trace at near-zero latency is Contemporaneous Event Log, its nearest twin; the log makes the primary trace, while this archive freezes an already-captured one so it cannot be overwritten.
Related¶
- Instantiates: Capture-Latency Evidence Stratification — the immutable floor that keeps the earliest evidence layer permanently recoverable.
- Consumes: Contemporaneous Event Log — the live-captured primary trace it ingests and freezes.
- Sibling mechanisms: Contemporaneous Event Log · Provenance and Chain-of-Custody Log · Late-Entry and Backfill Protocol · Reconstruction Workspace or Replay Table
Editorial Notes¶
Form Classification¶
Form family: Record, Log & Register
Rationale: Read-Only Raw Evidence Archive operates as a persistent ledger, log, register, or case record that preserves history and traceability because it an immutable, write-once store that preserves the earliest raw evidence read-only, so correction and synthesis can never overwrite the original trace.
Independent corroboration: The frozen evidence defines Read-Only Raw Evidence Archive as 'An immutable, write-once store that preserves the earliest raw evidence read-only, so correction and synthesis can never overwrite the original trace', so its operative form is Record, Log & Register.
Review outcome: Independent reviewer agreement; high confidence.
Origin Attribution¶
Primary origin: Library & Information Science
Origin pattern: Convergent development
Present-day reach: Multi-domain
Rationale: Archival science established preservation of immutable original records with provenance.
Related originating lineages:
- Accounting & Auditing — Audit practice materially shaped write-once evidentiary trails and source retention.
- Criminology & Forensic Studies — Forensics independently developed chain-of-custody protection for raw evidence.
Review resolution: Both blind reviewers agree that library_information_science is the primary origin. Explicit reconciliation of alternate origin disagreement, origin mode disagreement adopts reviewer_a's classification because archival science established preservation of immutable original records with provenance. The resulting lineage records alternates=accounting_auditing, criminology_forensic, origin_mode=convergent, and domain_reach=multi_domain; these describe formative provenance separately from later applicability.
Encyclopedia synthesis: The exact catalogued form synthesizes established practice rather than reproducing a single standard historical label.
Review outcome: Reconciled after independent review; high confidence.
References¶
[1] U.S. Securities and Exchange Commission. "Electronic Storage of Broker-Dealer Records". Exchange Act Release No. 34-47806 (2003). Requires regulated broker-dealer electronic records to remain non-rewriteable and non-erasable throughout their retention period. registry ↩