/** Code identifying the type of insurance policy within a specific insurance program (X12 008020 Element 1336) */ export declare const InsuranceTypeCode: { /** * Short Term Insurance */ readonly C01: "01"; /** * Medicare Secondary Working Aged Beneficiary or Spouse with Employer Group Health Plan */ readonly C12: "12"; /** * Medicare Secondary End-Stage Renal Disease Beneficiary in the Mandated Coordination Period with an Employer's Group Health Plan */ readonly C13: "13"; /** * Medicare Secondary, No-fault Insurance including Auto is Primary */ readonly C14: "14"; /** * Medicare Secondary Worker's Compensation */ readonly C15: "15"; /** * Medicare Secondary Public Health Service (PHS) or Other Federal Agency */ readonly C16: "16"; /** * Dental */ readonly C17: "17"; /** * Vision */ readonly C18: "18"; /** * Prescription Drugs */ readonly C19: "19"; /** * Medicare Secondary Black Lung */ readonly C41: "41"; /** * Medicare Secondary Veteran's Administration */ readonly C42: "42"; /** * Medicare Secondary Disabled Beneficiary Under Age 65 with Large Group Health Plan (LGHP) */ readonly C43: "43"; /** * Medicare Secondary, Other Liability Insurance is Primary */ readonly C47: "47"; /** * Auto Insurance Policy */ readonly Cap: "AP"; /** * Commercial */ readonly Cc1: "C1"; /** * Consolidated Omnibus Budget Reconciliation Act (COBRA) */ readonly Cco: "CO"; /** * Medicare Conditionally Primary */ readonly Ccp: "CP"; /** * Disability - Provides periodic payments to replace income when an insured person is unable to work as a result of illness, injury or disease */ readonly Cd: "D"; /** * Disability Benefits */ readonly Cdb: "DB"; /** * Medicare - Point of Service (POS) */ readonly Ce: "E"; /** * Exclusive Provider Organization - Gives subscriber a choice of providers from an approved/contracted payer list; there are fixed dollar co-payments for most covered services in return for using plan providers */ readonly Cep: "EP"; /** * Family or Friends */ readonly Cff: "FF"; /** * Group Policy - Two or more people who are part of complete unit who enter into an insurance contract with an insurance company */ readonly Cgp: "GP"; /** * Health Insurance Exchange (HIX) Silver */ readonly Cha: "HA"; /** * Health Insurance Exchange (HIX) Bronze */ readonly Chb: "HB"; /** * High Deductible Health Plan */ readonly Chd: "HD"; /** * Health Insurance Exchange (HIX) Gold */ readonly Chg: "HG"; /** * Health Maintenance Organization (HMO) */ readonly Chm: "HM"; /** * Health Maintenance Organization (HMO) - Medicare Risk */ readonly Chn: "HN"; /** * Health Insurance Exchange (HIX) Platinum */ readonly Chp: "HP"; /** * Special Low Income Medicare Beneficiary - An individual eligible for Medicare for whom Medicaid pays only Medicare premiums */ readonly Chs: "HS"; /** * Indemnity - Gives a subscriber the choice to select any provider. Payment is fixed percentage of the cost for covered care after satisfying an annual deductible */ readonly Cin: "IN"; /** * Individual Policy */ readonly Cip: "IP"; /** * Long Term Care - Coverage designed to help pay for some or all long term care costs, reducing the risk that a policy-holder would need to deplete all of his or her assets to pay for long term care */ readonly Clc: "LC"; /** * Long Term Policy */ readonly Cld: "LD"; /** * Life Insurance */ readonly Cli: "LI"; /** * Litigation */ readonly Clt: "LT"; /** * Medicare Advantage Point of Service (POS) Plan that excludes Part D coverage */ readonly Cm: "M"; /** * Medicare Part A */ readonly Cma: "MA"; /** * Medicare Part B */ readonly Cmb: "MB"; /** * Medicaid - Program of health care services made available to medically indigent and other needy persons, regardless of age, under terms of a 1965 amendment to the U.S. Social Security Act */ readonly Cmc: "MC"; /** * Medicare Part D */ readonly Cmd: "MD"; /** * Medicare Advantage Preferred Provider Organization (PPO) Plan that excludes Part D Coverage */ readonly Cme: "ME"; /** * Medicare Advantage Private Fee for Service */ readonly Cmf: "MF"; /** * Medigap Part A - Health insurance policy intended to cover the non-covered portion of expenses eligible for Medicare Part A reimbursement which must be paid by a Medicare beneficiary for health care services and/or supplies received */ readonly Cmh: "MH"; /** * Medigap Part B - Health insurance policy intended to cover the non-covered portion of expenses eligible for Medicare Part B reimbursement which must be paid by a Medicare beneficiary for health care services and/or supplies received */ readonly Cmi: "MI"; /** * Medicare Advantage Health Maintenance Organization (HMO) Plan that includes Part D Coverage */ readonly Cmj: "MJ"; /** * Medicare Advantage Health Maintenance Organization (HMO) Risk Plan that includes Part D Coverage */ readonly Cmk: "MK"; /** * Medicare Advantage Indemnity Plan that includes Part D Coverage */ readonly Cml: "ML"; /** * Medicare Advantage Preferred Provider Organization (PPO) Plan that includes Part D Coverage */ readonly Cmm: "MM"; /** * Medicare Advantage Indemnity Plan that excludes Part D coverage */ readonly Cmn: "MN"; /** * Medicare Advantage Point of Service (POS) Plan that includes Part D Coverage */ readonly Cmo: "MO"; /** * Medicare Primary - Medicare has the primary responsibility to pay for health care services and/or supplies received by a covered beneficiary (a person entitled to Medicare benefits) */ readonly Cmp: "MP"; /** * Medicare Advantage Health Maintenance Organization (HMO) Risk Plan that excludes Part D coverage */ readonly Cmr: "MR"; /** * Medicare Advantage Health Maintenance Organization (HMO) Plan that excludes Part D coverage */ readonly Cmt: "MT"; /** * Medicare Advantage */ readonly Cmv: "MV"; /** * Open Access Point of Service Plan */ readonly Coa: "OA"; /** * Other */ readonly Cot: "OT"; /** * Property Insurance - Personal */ readonly Cpe: "PE"; /** * Personal */ readonly Cpl: "PL"; /** * Personal Payment (Cash - No Insurance) */ readonly Cpp: "PP"; /** * Preferred Provider Organization (PPO) */ readonly Cpr: "PR"; /** * Point of Service (POS) */ readonly Cps: "PS"; /** * Qualified Medicare Beneficiary - Coverage for a Medicare eligible individual for whom Medicaid pays only for Medicare premiums, co-insurance, and deductibles */ readonly Cqm: "QM"; /** * Property Insurance - Real */ readonly Crp: "RP"; /** * Supplemental Policy - An insurance policy intended to cover non-covered charges of another insurance policy */ readonly Csp: "SP"; /** * Tax Equity Fiscal Responsibility Act (TEFRA) */ readonly Ctf: "TF"; /** * Multiple Options Health Plan */ readonly Cu: "U"; /** * Workers Compensation - Coverage provides medical treatment, rehabilitation, lost wages and related expenses arising from a job related injury or disease */ readonly Cwc: "WC"; /** * Wrap Up Policy - A Workers Compensation Policy written for a specific job site, which will include or cover more than one insured */ readonly Cwu: "WU"; }; export type InsuranceTypeCode = (typeof InsuranceTypeCode)[keyof typeof InsuranceTypeCode];