Section 5
Broker-dealer export.
Most broker-dealer supervision platforms expect .eml for
email and a structured JSON manifest for everything else. WealthNavigator
emits both, plus a per-conversation rendered PDF for non-email channels
so the message looks the same in your supervision review queue as it did
to the recipient.
Email
EML (RFC 5322)
Original wire format. Headers, body parts, attachments preserved
byte-for-byte. Compatible with Smarsh, Global Relay, Proofpoint, and
any tool that reads .eml archives.
LinkedIn DMs & scheduling
JSON + PDF bundle
One JSON file per conversation thread with full message metadata, plus
a PDF rendering of the thread as it was last seen. Bundled into a zip
per export window.
Whole-firm audit
Manifest + chain proof
Single JSON manifest indexes every record in the export window, with
the Merkle chain proof at the bottom for end-to-end tamper-evidence
verification.
Sample export manifest
Abbreviated for the page. Full JSON Schema is published at schemas.wealthnavigator.com/archive-export/v1. The chain_proof block is what an auditor verifies against the
daily transparency log.
{
"schema_version": "1.0",
"tenant_id": "wn_acme_advisors",
"exported_at": "2026-04-26T14:22:00Z",
"exported_by": "auditor:cco@acme.com",
"range": {
"from": "2026-01-01T00:00:00Z",
"to": "2026-03-31T23:59:59Z"
},
"records": [
{
"id": "rec_01HX9...",
"seq": 142,
"channel": "linkedin.dm",
"direction": "outbound",
"advisor_id": "adv_42",
"counterparty": { "linkedin_urn": "urn:li:person:..." },
"captured_at": "2026-01-04T15:18:32Z",
"stored_at": "2026-01-04T15:18:33Z",
"retention_until": "2033-01-04T15:18:33Z",
"body_ref": "blob/rec_01HX9.../body.txt",
"rendered_pdf": "blob/rec_01HX9.../thread.pdf",
"attachments": [],
"prev_hash": "0000000000000000000000000000000000000000000000000000000000000000",
"sha256": "a3f8b2...c91d",
"merkle_root": "9b4cf1...20ab"
}
],
"chain_proof": {
"head_seq": 144,
"head_hash": "e2105a...8ff2",
"merkle_root": "9b4cf1...20ab",
"published_at": "2026-04-26T00:00:00Z",
"published_to": "transparency.wealthnavigator.com/log/2026-04-26"
}
}