Skip to main content
Version: v0.0.2

Interface: X12StatusCode

One Health Care Claim Status composite (C043, STC-01 / STC-10 / STC-11). Pairs a CSCC (Claim Status Category Code, X12 source 507) with a CSC (Claim Status Code, X12 source 508) and the responsible entity. The verbatim codes are always preserved; descriptions resolve from the bundled snapshots (or undefined outside the subset).

Example

import type { X12StatusCode } from "@cosyte/x12";
declare const c: X12StatusCode;
c.categoryCode; // "A7" (rejected/invalid)
c.statusCode; // "21" (Missing or invalid information)
c.statusDescription; // "Missing or invalid information."
c.entityCode; // "85" (billing provider)

Properties

categoryCode

readonly categoryCode: string


categoryDescription

readonly categoryDescription: string | undefined


entityCode

readonly entityCode: string | undefined


statusCode

readonly statusCode: string


statusDescription

readonly statusDescription: string | undefined