Retrieve a single claim for a person by person ID and claim ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the person.
The ID of the claim.
OK
Identity claim response (first/last name, date of birth).
Unique resource identifier.
ID of the person this claim belongs to.
The status of the claim (pending or verified). A verified claim whose superseded_at is non-null is historical -- a newer verified claim of the same type has taken over. A pending claim whose archived_at is non-null is historical -- a newer pending of the same type has replaced it.
pending, verified Derived role of this row within its (person, claim_type) group, computed from status, archived_at, and superseded_at. active is a verified row with superseded_at IS NULL. in_flight is a pending row with archived_at IS NULL. historical covers archived pendings and superseded verifieds kept for audit. Prefer reading the raw columns directly if you already know which case you care about; this field exists so consumers can keep a single discriminator across the three column values.
active, in_flight, historical