Claim


Description

Individual service claims representing billable healthcare services delivered to patients. This central billing table manages the complete claim lifecycle from service delivery through payment processing, including claim submission, adjudication, payment tracking, and financial reconciliation for medical billing and insurance processing.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
ClaimID int identity 4 null
Claim2.fkClaimID FK_Claim2_Claim R
ClaimArchive.ClaimID FK_ClaimArchive_Claim C
ClaimCPT.fkClaimID FK_ClaimCPT_Claim R
Claimerror.claimid FK_claimerror_Claim C
ClaimICD9.fkClaimID FK_ClaimICD9_Claim R
ClaimNotes.fkClaimID FK_ClaimNotes_Claim R
ClaimServiceRate.Claimid FK_ClaimServiceRate_Claim C
ClaimTransaction.fkClaimid FK_Claim C

Primary key - Unique identifier for each service claim

DateEntered datetime 16,3 (getdate())

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

DateService datetime 16,3 null

Service date - Date when the healthcare service was actually delivered

DateCycle datetime 16,3 null

Billing cycle date - Date associated with the billing cycle for this claim

DateUpdate datetime 16,3 null

Last update date - Timestamp of the most recent claim modification

AmountCharged money 21,4 (0)

Charged amount - Total amount charged for the service

AgencyID int 4 null

Agency reference - Links to iCS2.dbo.Agency for centralized healthcare provider organization management and multi-tenant data segregation

InvoiceID varchar 30 null

Invoice reference - Links to Invoice table if claim is part of an invoice

PatientID int 4 null

Patient reference - Links to Patient table for the client receiving services

ClaimTypeID int 4 null

Claim type - Links to iCS2.dbo.ClaimType for centralized claim type classification (Initial, Corrected, Void, etc.)

SiteID int 4 null

Site reference - Links to AgencySite table for the service delivery location

ICN varchar 50 null

Internal Control Number - Unique claim tracking number for clearinghouse processing

LineNumber varchar 3 null

Line number - Line item number for multi-line claims

Enteredby int 4 null

Entered by user - UserID of the person who entered the claim

StatusID int 4 null

Claim status - Current processing status of the claim referencing iCS2.dbo.StatusType for centralized status management across all healthcare billing processes

AmountPaid money 21,4 (0)

Paid amount - Amount actually paid by insurance or payer

DatePaid datetime 16,3 null

Payment date - Date when payment was received

DateBilled datetime 16,3 null

Billing date - Date when claim was submitted to payer

ActionID int 4 null

Action reference - Links to action taken on the claim

ProcedureID int 4 null

Procedure reference - Links to procedures table for the CPT/HCPCS code

ModifierID int 4 null

Modifier reference - Links to iCS2.dbo.Modifier for centralized billing modifier definitions and standardized modifier codes used across all healthcare billing processes

ServiceTypeID int 4 null

Service type - Links to iCS2.dbo.ServiceType for centralized service type definitions and standardized service codes across the multi-tenant healthcare system

ClearingHouseErrorID int 4 null

Clearinghouse error - Reference to clearinghouse rejection or error codes

RuleError varchar 10 null

Rule error code - Internal business rule validation error code

Comments varchar 500 null

Claim comments - Notes about the claim processing or issues

UpdateBy int 4 null

Updated by user - UserID of the person who last modified the claim

ClaimBy int 4 null

Claimed by user - UserID of the person responsible for the claim

DateAction datetime 16,3 null

Action date - Date when last action was taken on the claim

TransType int 4 null

Transaction type - Type of financial transaction for this claim

PriorAuth varchar 50 null

Prior authorization - Prior authorization number from insurance

RemittIDNumber int 4 null

Remittance ID - Reference to remittance advice document

CheckNumber int 4 null

Check number - Check number for payment received

RA_ID int 4 null

Remittance advice ID - Links to remittance advice record

VoidID int 4 null

Void reference - Reference to void transaction if claim was voided

source varchar 2 null

Data source - Source of claim data entry (manual, import, etc.)

Dateoriginalbilled smalldatetime 16 null

Original billing date - Date when claim was first billed

TransmitType int 4 null

Transmission type - Method of claim transmission (Electronic, Paper, etc.)

ppdID int 4 null

PPD reference - Reference to payment processing document

Borough int 4 null

Borough - Geographic borough for reporting and processing

ActivePayroll int 4 null

Active payroll - Flag indicating if claim affects active payroll

AmountAdjusted money 21,4 null

Adjusted amount - Amount of any adjustments made to the claim

AmountVoid money 21,4 null

Voided amount - Amount voided if claim was cancelled

DateAdjusted datetime 16,3 null

Adjustment date - Date when claim adjustment was made

DateVoid datetime 16,3 null

Void date - Date when claim was voided

fkAdmitID int 4 null
PatientAdministration.AdmitID FK__claim__fkAdmitID__1F44785D R

Case reference - Links to PatientAdministration table for the case

PaySourceID varchar 30 null

Payment source - Identifier for the payment source or payer

AttCode varchar 10 null

Attendance code - Code indicating attendance or participation status

fkAuthID int 4 null

Authorization reference - Links to Authorize table for service authorization

OnHold int 4 (0)

Hold status - Flag indicating if claim is on hold for processing

OrigAmountCharged money 21,4 null

Original charged amount - Original amount before any adjustments

Outstanding money 21,4 null

Outstanding balance - Remaining unpaid amount on the claim

Minutes int 4 null

Service minutes - Duration of service in minutes

importID int 4 null

Import identifier - Reference ID for data migration and import tracking

fkCPID int 4 null

Care plan reference - Links to care plan identifier

StartTime varchar 20 null

Service start time - Time when service began

EndTime varchar 20 null

Service end time - Time when service ended

BillingUnit decimal 6,2 null

Billing units - Number of billable units for the service

deptID int 4 null

Department reference - Links to department providing the service

ImportDate varchar 30 null

Import date - Date when claim data was imported

OrigBillingUnit decimal 7,2 null

Original billing units - Original number of units before adjustments

CPTCode varchar 50 null

CPT code - Current Procedural Terminology code for the service

DateUpdated datetime 16,3 null

Updated date - Most recent update timestamp

IsFormCompleted bit 1 null

Form completed - Flag indicating if required forms are completed

FkWaiversId int 4 null

Waiver reference - Links to waiver program if applicable

Indexes

Constraint Name Type Sort Column(s)
PK_Claim Primary key Asc ClaimID
IX_ADMITID Performance Asc fkAdmitID
IX_AttCode Performance Asc AttCode
IX_Claim_Auth Performance Asc fkAuthID
IX_Claim_ClaimTypeID_StatusID Performance Asc/Asc ClaimTypeID + StatusID
IX_ClaimID Must be unique Asc ClaimID
IX_ClaimType Performance Asc ClaimTypeID
IX_Combined Performance Asc/Asc ClaimTypeID + StatusID
IX_DateBilled Performance Asc DateBilled
IX_DateCycle Performance Asc DateCycle
IX_DateEntered Performance Desc DateEntered
IX_DateService Performance Asc DateService
IX_DOS Performance Asc DateService
IX_EnteredBy Performance Asc Enteredby
IX_ImportID Performance Desc importID
IX_InvoiceID Performance Asc InvoiceID
IX_ServiceType Performance Asc ServiceTypeID
IX_SiteID Performance Asc SiteID
IX_Source Performance Asc source
IX_Status_doscaseids Performance Asc StatusID
IX_statusid Performance Asc StatusID
Patient Claim Performance Asc PatientID

Relationships