Person
opda:Person Person
A Person is a natural person — an individual human being. Person is the anchor for PII (Personally Identifiable Information) regimes in OPDA: it is where GDPR Article 5–10 lawful-basis discipline lands.
Why it matters
Person identity must persist across every transaction, every title, every role the individual appears in. A naive design that creates a new Person record whenever the data feed changes (a renamed Person; a Person who appears under a slightly different state-issued ID; a Person who has died and whose estate is being administered) shatters the audit trail. OPDA explicitly uses a multi-identifier persistence approach — drawn from FIBO — so a single Person can be carried through name changes, register-of-electors updates, and gender-recognition events without forking.
If you are a data protection officer, an integrator implementing AML/KYC, or a conveyancer reconciling identity across documents, this is the entity whose IC matters most.
Hard cases
- Name change. A Person changes their name (deed-poll, marriage, gender recognition). The Person identity persists; the name change is a reified Name Change Event, not a new Person record.
- Gender recognition. A Gender Recognition Certificate updates the Person’s recorded gender. Same individual, with a provenance-tracked attribute change.
- Death. The Person ceases as a living individual but persists as a record-entity bearing post-mortem properties (estate administration, probate). The IC does not erase the Person at death.
Identity Criterion
Two records refer to the same Person if they describe the same individual via a FIBO-style multi-identifier match — date of birth, state-issued ID (passport, driving licence, NI number), and name (with name changes traced via reified Events). The IC is deliberately tolerant of single-identifier mismatches (a name change on its own does not break the match) but intolerant of date-of-birth + state-ID mismatch. See the Logical tier → for the typed structure.
IC walk-through: multi-identifier match
How the IC tolerates single-identifier mismatches while still rejecting incompatible records:
Person records"]):::cls Q1{"Date of birth
matches?"}:::cls Q2{"State-issued ID
matches
(passport / DL / NINO)?"}:::cls Q3{"Name matches?"}:::cls Q4{"Name change traced
via Name Change Event?"}:::cls Same(["SAME Person"]):::success SameViaEvent(["SAME Person
(name change traced)"]):::success Different(["DIFFERENT Person
(IC rejects)"]):::errorState Inconclusive(["Inconclusive
(needs more data)"]):::warning Start --> Q1 Q1 -->|"Yes"| Q2 Q1 -->|"No"| Different Q2 -->|"Yes"| Q3 Q2 -->|"No"| Different Q3 -->|"Yes"| Same Q3 -->|"No"| Q4 Q4 -->|"Yes"| SameViaEvent Q4 -->|"No"| Inconclusive
Related Kinds
- Organisation — the other party Kind that can bear transactional roles
- Proprietor — the Role a Person bears when registered as legal owner of a Property
- Seller — the Role Mixin a Person (or Organisation) bears when disposing of a Property
- Buyer — the Role Mixin a Person (or Organisation) bears when acquiring a Property
- Name Change Event — records a Person’s name change
Comments