UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

85 lines (84 loc) 1.35 kB
import Hl7Fields from '../../../model/Hl7Fields'; import Hl7Field from '../../../model/Hl7Field'; export default class PID_Fields extends Hl7Fields { /** * Set id - patient id */ PID_1: Hl7Field; /** * Patient id external */ PID_2: Hl7Field; /** * Patient id internal */ PID_3: Hl7Field; /** * Alternate patient id */ PID_4: Hl7Field; /** * Patient name */ PID_5: Hl7Field; /** * Mothers maiden name */ PID_6: Hl7Field; /** * Date of birth */ PID_7: Hl7Field; /** * Sex */ PID_8: Hl7Field; /** * Patient alias */ PID_9: Hl7Field; /** * Ethnic group */ PID_10: Hl7Field; /** * Patient address */ PID_11: Hl7Field; /** * County code */ PID_12: Hl7Field; /** * Phone number - home */ PID_13: Hl7Field; /** * Phone number - business */ PID_14: Hl7Field; /** * Language - patient */ PID_15: Hl7Field; /** * Marital status */ PID_16: Hl7Field; /** * Religion */ PID_17: Hl7Field; /** * Patient account number */ PID_18: Hl7Field; /** * Ssn number - patient */ PID_19: Hl7Field; /** * Drivers lic num - patient */ PID_20: Hl7Field; }