Skip to main content
Version: v0.0.2

Interface: X12RemitPerson

Decoded NM1 person - patient, subscriber, or corrected patient. The idQualifier distinguishes member ID (MI), Social Security (34 - rare, regulated), payer ID, etc. PHI surface: every field on a person model carries PHI.

Example

import type { X12RemitPerson } from "@cosyte/x12";
declare const p: X12RemitPerson;
p.entityIdentifierCode; // "QC" patient / "IL" insured / "74" corrected patient
p.lastName; // verbatim
p.idQualifier; // "MI"
p.idCode; // "MEMBER123"

Properties

entityIdentifierCode

readonly entityIdentifierCode: string


firstName

readonly firstName: string | undefined


idCode

readonly idCode: string | undefined


idQualifier

readonly idQualifier: string | undefined


lastName

readonly lastName: string | undefined


middleName

readonly middleName: string | undefined


suffix

readonly suffix: string | undefined