ClaimMedical


Description

Medical claims managing healthcare service claims for billing and reimbursement processing. This core billing table stores detailed claim information including service dates, procedures, diagnoses, and amounts for submission to insurance companies and government payers.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
claimID int identity 4 null

Primary key - Unique identifier for the medical claim

caseID int 4 null
PatientAdministration.AdmitID FK__ClaimMedi__Admit__46C859D2 C

Case foreign key - Links to the patient case this claim belongs to

patientID int 4 null

Patient foreign key - Links to the patient who received the services

DOSFrom datetime 16,3 null

Date of service from - Start date of the service period for this claim

DOSEnd datetime 16,3 null

Date of service to - End date of the service period for this claim

StatusID int 4 null

Status identifier - Current status of the claim referencing iCS2.dbo.StatusType for centralized status management (Pending, Submitted, Paid, Denied, etc.)

POS int 4 null

Place of service - Code indicating where the service was provided (Office, Home, School, etc.)

ServiceTypeID int 4 null
ServiceType.serviceTypeid FK__ClaimMedi__Servi__47BC7E0B C

Service type foreign key - Links to iCS2.dbo.ServiceType for centralized service type definitions and standardized service codes

ProcedureID int 4 null
procedures.ProcedureID FK__ClaimMedi__Proce__48B0A244 C

Procedure foreign key - Links to the procedure code (CPT, HCPCS) for the service

ModifierID int 4 null
Modifier.ModifierID FK__ClaimMedi__Modif__49A4C67D C

Modifier foreign key - Links to iCS2.dbo.Modifier for centralized billing modifier definitions and standardized modifier codes

DiagnosisID nvarchar 20 null

Diagnosis identifier - Primary diagnosis code (ICD-10) justifying the service

AmountCharged money 21,4 null

Amount charged - Total amount charged for the service

AmountPaid money 21,4 null

Amount paid - Amount paid by insurance or other payer

Unit int 4 null

Service units - Number of units of service provided (hours, sessions, etc.)

EPSDT int 4 null

EPSDT flag - Early and Periodic Screening, Diagnostic and Treatment indicator

COB int 4 null

Coordination of benefits - Flag indicating coordination of benefits with other insurance

EMG int 4 null

Emergency flag - Indicates if service was provided as emergency care

Location varchar 20 null

Service location - Specific location where service was provided

EnteredBy int 4 null

Entered by user - User ID of the person who entered the claim

UpdateBy int 4 null

Updated by user - User ID of the person who last updated the claim

DateUpdate datetime 16,3 null

Update date - Date when the claim was last modified

DateEntered datetime 16,3 null

Entry date - Date when the claim was entered into the system

DateBilled datetime 16,3 null

Billing date - Date when the claim was submitted for payment

DatePaid datetime 16,3 null

Payment date - Date when payment was received for the claim

ServiceBy int 4 null

Service provider - Foreign key to the healthcare provider who delivered the service

InvoiceID int 4 null

Invoice foreign key - Links to the invoice containing this claim

Indexes

Constraint Name Type Sort Column(s)
PK__ClaimMedical__45D43599 Primary key Asc claimID

Relationships