Skip to content

Identity ledger schema design

← All revisions

61207e21 · PointSav Digital Systems ·

Phase C A1a: split security/ + ai/ out of architecture/ (23 articles, 46 EN+ES files); category frontmatter fixed; redirects.yaml 301s; new _index.md landings

View the full record as of this revision →

@@ -0,0 +1,145 @@
---
schema: foundry-doc-v1
type: topic
content_type: topic
slug: identity-ledger-schema-design
title: "Identity ledger schema design"
short_description: "The identity ledger defines three record types — Person, Anchor, and Claim — that together represent who is known to the system, how that identity was observed, and what attributes have been recorded, all persisted through WORM discipline with no AI involvement at any stage."
audience: vendor-public
bcsc_class: current-fact
language: en
paired_with: identity-ledger-schema-design.es.md
category: security
status: active
quality: complete
last_edited: 2026-06-23
---

The identity ledger is the deterministic identity primitive at the centre of Ring 1 data ingest. It defines three record types — Person, Anchor, and Claim — that together represent who is known to the system, how that identity was observed, and what attributes have been recorded about it. All three write through `service-fs`, producing an immutable, append-only audit trail with no AI involvement at any stage. See also [[worm-ledger-design|the WORM ledger design]], [[three-ring-architecture]], and [[machine-based-auth|machine-based authorization]].

## Key Takeaways

- Identity resolution is fully deterministic. The primary identifier is a UUIDv5 derived from the lowercase-normalised primary email address — the same email always produces the same UUID on any machine, at any time, with no AI or probabilistic matching. This satisfies SYS-ADR-07's requirement that Ring 1 extraction bypass inference.
- Identity records follow [[worm-ledger-architecture|WORM discipline]]. All three record types are written through `service-fs` as an append-only audit trail. Records cannot be deleted or modified after the fact.
- A single Person record is the authoritative source for a known identity. Downstream services resolve identity from this record — they do not derive or cache their own.
- Ambiguous or conflicting identities are surfaced to the system operator rather than silently merged. Deterministic extraction at Ring 1; human resolution for exceptions. No probabilistic model makes silent merges at ingest.

## 1. The Identity Primitive

Every identity in Ring 1 is a UUID version 5 derived from a lowercase-normalised email address:

```
id = UUIDv5(NAMESPACE_DNS, lowercase(primary_email))
```

This derivation is deterministic: the same email address always produces the same UUID on any machine, in any language, at any time. There is no random seed, no AI classification, no lookup against an external service. Two systems that independently ingest the same email address will arrive at the same UUID.

This property is the foundation of the identity primitive's composability guarantee: a UUID produced by `service-people` can be referenced by `service-email`, `service-input`, or any Ring 2 component without a shared identity registry. The derivation is the registry.

## 2. The Person Record

The Person record is the primary identity object. It is created by the `identity.append` MCP tool and stored in the `service-people` in-process `PeopleStore`, then written through to `service-fs`.

```
Person {
    id:              UUIDv5(NAMESPACE_DNS, lowercase(primary_email))
    name:            String
    primary_email:   String  // always lowercase-normalised
    email_aliases:   Vec<String>
    organisation:    Option<String>
    created_at:      DateTime<UTC>  // RFC3339
    updated_at:      DateTime<UTC>  // RFC3339
}
```

The `id` field is always derived; it is never assigned by the caller. The `primary_email` field is always stored in lowercase regardless of how it was supplied. These invariants are enforced in `Person::new()` — there is no constructor that bypasses them.

## 3. The Anchor Record

An Anchor is an immutable observation that an email address was seen in a specific context. It is produced automatically by the `identity.scan_text` MCP tool when an email regex match is found in a block of text.

```
Anchor {
    target_uuid:   String  // UUIDv5(NAMESPACE_DNS, lowercase(email))
    anchor_source: String  // the email address as observed
    timestamp:     String  // RFC3339
}
```

An Anchor does not assert that the email belongs to a named individual. It records the observation of an email address and derives the UUID that would correspond to that address. Anchors are strictly append-only: the system never modifies or retracts an Anchor once written.

## 4. The Claim Record

A Claim is an attribute observation with provenance. It is produced by `identity.scan_text` alongside each Anchor and records what attribute was inferred and from what source.

```
Claim {
    claim_id:         String  // UUIDv4 — unique per invocation
    target_uuid:      String  // the identity being annotated
    attribute:        String  // e.g. "email"
    value:            String  // the observed value
    confidence_score: f32     // 1.0 for regex-verified; <1.0 reserved for future
    source_id:        String  // caller-supplied provenance identifier
    timestamp:        String  // RFC3339
}
```

The `claim_id` is a UUIDv4 (random, not derived) — it is unique per Claim invocation. The `confidence_score` is `1.0` for all Claims produced by the current implementation because the only extraction method in use is a deterministic regular expression. A score below `1.0` is reserved for future extraction methods operating under SYS-ADR-07 constraints.

## 5. Conflict Detection

When a Person record is appended to `PeopleStore`, the store checks whether any email in the record (primary or alias) is already bound to a different UUID. If so, the store returns a `ConflictingIdentity` error rather than silently merging or overwriting.

```
PeopleStoreError::ConflictingIdentity {
    email:       String  // the email that triggered the conflict
    existing_id: Uuid    // the UUID already bound to that email
    new_id:      Uuid    // the UUID that the new record would assign
}
```

Conflicts are surfaced to the caller — they are never automatically resolved. This implements the F12 requirement (SYS-ADR-10): when deterministic matching surfaces ambiguity, the system surfaces it to the operator rather than resolving it with heuristics or AI inference.

## 6. SYS-ADR-07 Compliance: Zero AI in Ring 1

The identity ledger schema is designed so that every operation is deterministic and verifiable without model state:

- Email extraction uses a single compiled regular expression (`(?i)[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}`).
- UUID derivation uses the UUIDv5 algorithm (SHA-1 with a fixed namespace UUID — deterministic, not learned).
- Confidence scores are assigned by rule (`1.0` for regex match), not by a model.
- Conflict detection compares UUIDs by equality — no fuzzy matching, no embedding similarity, no threshold tuning.

No model weights are present in `service-people`. No network call is made to an inference endpoint during identity ingest. These are hard constraints of SYS-ADR-07, not implementation preferences.

## 7. WORM Persistence

All three record types — Person, Anchor, and Claim — are persisted by writing through to `service-fs` via `FsClient`. The write path uses:

- HTTP POST to `/v1/append` on the service-fs instance
- `X-Foundry-Module-ID` header set to the value of `PEOPLE_MODULE_ID` (environment variable, e.g. `foundry-workspace`)
- JSON-serialised record body

Every identity observation is written to the WORM ledger at the moment it is ingested. The records cannot be deleted or modified after the fact. The append-only guarantee comes from service-fs's D4 atomic-write discipline and linear SHA-256 hash chain.

Three write paths exist:

1. `identity.append` (MCP tool) — writes a Person record
2. `identity.scan_text` (MCP tool) — writes one Anchor and one or more Claims per email address found in the input text
3. No direct write path for Anchor or Claim in isolation — they are always produced as a pair by `scan_text`

## 8. Forward-looking: Ring 2 Identity Extension

The schema described above is the Ring 1 deterministic baseline. Planned Ring 2 extensions include:

- **Cross-tenant identity sharing** — a query interface intended to look up identities across module boundaries, for use by Ring 2 components such as `service-extraction` that need to correlate entities observed in different ingestion contexts.
- **Embedding-based fuzzy matching** — an optional similarity layer, intended to run in Ring 2, that may suggest candidate identity merges for operator review. This is gated by SYS-ADR-07: any inference-based suggestion must surface to the operator for confirmation; it may not write to the Ring 1 WORM ledger without explicit operator action.

These extensions are planned and intended; they are not present in the current implementation.

## See also

- [[machine-based-auth]]
- [[capability-based-security]]
- [[worm-ledger-design]]
- [[cryptographic-ledgers]]
- [[service-people]]
Important Information

Important Information

Corporate structure. PointSav Digital Systems ("PointSav") is a trade name of Woodfine Capital Projects Inc. ("Woodfine"). PointSav does not itself offer, sell, or solicit any security. Any securities offering associated with Woodfine's real-property direct-hold solutions is made exclusively by Woodfine, and only by means of the applicable Private Placement Memorandum.

No investment advice. This wiki's content is provided for engineering, operational, research, and development purposes. Nothing on this wiki constitutes investment advice or a solicitation to invest in any Woodfine partnership or direct-hold solution.

Intellectual property. The PointSav name, trade name, wordmark, and marks, together with all current and future PointSav- and Totebox-branded products, services, and offerings — and the software, source code, documentation, design system, and all related materials — are proprietary to Woodfine and its affiliates, except for components identified as open source. No rights are granted except as expressly set out in a written license or agreement. See TRADEMARK.md in this repository for the full trademark notice.

Open source components. Portions of the platform are made available under permissive open-source licenses identified in the accompanying repository. Use of those components is governed by their respective license terms.

No warranty; informational use. Content on this wiki is provided for general informational purposes only and does not constitute a representation, warranty, or commitment with respect to product functionality, availability, pricing, or roadmap. Some articles describe planned or intended features, capabilities, and milestones — language such as "planned," "intended," "targeted," "may," and "expected" marks this forward-looking content, which is subject to change and does not constitute a commitment regarding future performance.

Confidentiality. Where an article describes an operational or deployment detail that is not intended for public disclosure, that article is not published on this wiki. Content here is general-purpose engineering documentation, not customer-specific configuration.

Jurisdiction. Woodfine Capital Projects Inc. is organized in British Columbia, Canada. References to the Sovereign Data Foundation on this wiki describe a planned or intended initiative only, not a current equity holder or active governance body.

Changes to this notice. PointSav may update this notice from time to time; the version posted on this page governs.

Not a filing system. This wiki is not a securities filing system, an electronic disclosure repository, or a substitute for SEDAR+ or any other regulatory filing system. Formal securities filings are made through the applicable regulatory filing system, not through this wiki.

Full disclaimer. This notice supplements, and does not replace, the full Disclaimers article. In the event of any conflict, the full Disclaimers article governs.

Read the full disclaimer →