Skip to main content
Version: v0.0.2

Variable: HL_LEVEL_CODES

const HL_LEVEL_CODES: Readonly<{ DEPENDENT: "23"; INFORMATION_RECEIVER: "21"; INFORMATION_SOURCE: "20"; SUBSCRIBER: "22"; }>

HL level codes per X12 0736 + 837 TR3 conventions. INFORMATION_SOURCE is the billing provider (top of the tree); SUBSCRIBER is the insurance subscriber; DEPENDENT is a non-subscriber patient.

Example

import { HL_LEVEL_CODES } from "@cosyte/x12";
HL_LEVEL_CODES.INFORMATION_SOURCE; // "20"
HL_LEVEL_CODES.SUBSCRIBER; // "22"
HL_LEVEL_CODES.DEPENDENT; // "23"