Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
|---|---|---|---|---|---|---|---|---|
| ClaimID | int | 4 | null |
|
|
Primary key - Claim unique identifier for each service billing record |
||
| PatientID | int | 4 | √ | null |
|
|
Patient reference - Links to the patient who received the services (foreign key to Patient.PatientID) |
|
| fkAdmitID | int | 4 | √ | null |
|
|
Case reference - Links to the patient’s case administration record (foreign key to PatientAdministration.AdmitID) |
|
| FkAuthID | int | 4 | √ | null |
|
|
Authorization reference - Links to the service authorization under which the claim was submitted (foreign key to Authorize.AuthID) |
|
| ChildName | varchar | 101 | √ | null |
|
|
Patient name - Combined first and last name of the patient for identification and reporting |
|
| PatientStatus | varchar | 30 | √ | null |
|
|
Patient status - Current status of the patient in the system (Active=receiving services, Inactive=services suspended, Discharged=services completed) |
|
| CaseStatus | varchar | 50 | √ | null |
|
|
Case status - Current administrative status of the patient’s case, lookup reference to dbo.PatientStatus table (Open=active, Closed=completed, Pending=awaiting action) |
|
| EiHubId | varchar | 30 | √ | null |
|
|
EI Hub identifier - Each child has an ID assigned by EI, stored in dbo.PatientIDList table. EI Hub ID corresponds to IdTypeID = 14. Lookup ID types in ics2.dbo.PatientIDTypes table for cross-system patient tracking |
|
| Provider | varchar | 101 | √ | null |
|
|
Service provider - Name of the healthcare provider who delivered the service |
|
| SourceName | varchar | 145 | √ | null |
|
|
Payment source - Paysource name representing the county or funding source (e.g., New York, Onondaga, Wayne). Lookup reference to dbo.PaymentSource_vw table |
|
| Supervisor | varchar | 101 | √ | null |
|
|
Provider supervisor - Name of the supervising professional overseeing the service provider |
|
| Minutes | int | 4 | √ | null |
|
|
Service duration - Length of the service session in minutes for billing and documentation |
|
| DateService | datetime | 16,3 | √ | null |
|
|
Service date - Date when the healthcare service was actually delivered to the patient |
|
| StartTime | varchar | 20 | √ | null |
|
|
Service start time - Time when the service session began |
|
| EndTime | varchar | 20 | √ | null |
|
|
Service end time - Time when the service session concluded |
|
| Service | varchar | 100 | √ | null |
|
|
Service type - Service name with lookup reference to ics2.dbo.ServiceType table (e.g., Speech Therapy, Physical Therapy) |
|
| Modifier | varchar | 100 | √ | null |
|
|
Service modifier - Modifier name with lookup reference to ics2.dbo.Modifier table for additional service specification or billing modifier affecting reimbursement |
|
| Procedure | varchar | 100 | √ | null |
|
|
Procedure code - Procedure name with lookup reference to ics2.dbo.ProcCode table, identifying the specific CPT or other procedure code for billing |
|
| StatusCode | varchar | 50 | √ | null |
|
|
Claim status - Claim status with lookup reference to ics2.dbo.StatusType table (Pending=awaiting review, Approved=ready for payment, Denied=rejected, Paid=payment issued) |
|
| RuleError | varchar | 10 | √ | null |
|
|
Rule error code - Error of the claim with lookup reference to ics2.dbo.RuleError table, system-generated error code indicating billing rule violations or issues |
|
| RuleDescription | varchar | 100 | √ | null |
|
|
Rule error description - Description of error with lookup reference to ics2.dbo.RuleError table, detailed explanation of the billing rule violation or processing issue |
|
| ClaimTypeName | varchar | 100 | null |
|
|
Claim type - Claim type with lookup reference to ics2.dbo.ClaimtypeInProgramType_vw (Evaluation=assessment, Treatment=therapy, Consultation=professional consultation) |
||
| AmountCharged | money | 21,4 | √ | null |
|
|
Charged amount - Total amount billed to the payer for the service delivered |
|
| Outstanding | money | 21,4 | √ | null |
|
|
Outstanding balance - Amount still owed on the claim after payments and adjustments |
|
| AmountPaid | money | 21,4 | √ | null |
|
|
Paid amount - Total amount received from the payer for this claim |
|
| PriorAuth | varchar | 50 | √ | null |
|
|
Prior authorization - Authorization number required by the payer before service delivery |
|
| AmountVoid | money | 21,4 | √ | null |
|
|
Voided amount - Amount that was voided or cancelled from the original claim |
|
| DateVoid | datetime | 16,3 | √ | null |
|
|
Void date - Date when the claim or portion of claim was voided |
|
| BillingUnit | decimal | 6,2 | √ | null |
|
|
Billing units - Number of billable units claimed for the service (typically based on time or complexity) |
|
| OnHold | varchar | 3 | null |
|
|
Hold status - Whether the claim is on hold pending additional information (Yes=held, No=processing normally) |
||
| IsFormCompleted | varchar | 3 | null |
|
|
Form completion status - Whether all required documentation forms are completed (Yes=complete, No=missing forms) |
||
| DateEntered | datetime | 16,3 | √ | null |
|
|
Entry date - Date when the claim was entered into the billing system |
|
| ProgramName | varchar | 255 | √ | null |
|
|
Program name - Name of the service program with lookup reference to ics2.dbo.ProgramType table under which the claim was submitted |
|
| InvoiceID | varchar | 30 | √ | null |
|
|
Invoice identifier - Reference number for the invoice containing this claim |
|
| MakeupDate | smalldatetime | 16 | √ | null |
|
|
Makeup date - Date when a makeup session was scheduled if the original session was missed |
|
| NumInGroup | int | 4 | √ | null |
|
|
Group size - Number of patients in the session if delivered as a group service |
|
| ServiceSetting | nvarchar | 400 | √ | null |
|
|
Service setting - Location or environment where the service was delivered (Home, Clinic, School, etc.) |
|
| Address | nvarchar | 1000 | √ | null |
|
|
Service address - Physical address where the service was delivered |
|
| City | nvarchar | 400 | √ | null |
|
|
Service city - City where the service was delivered |
|
| ZipCode | nvarchar | 100 | √ | null |
|
|
Service ZIP code - Postal code of the service delivery location |
|
| Location | varchar | 50 | √ | null |
|
|
Service location - Name of the facility or location where services were delivered |
|
| PayrollRate | money | 21,4 | √ | null |
|
|
Provider rate - Hourly or per-unit rate paid to the service provider |
|
| PayrollStatus | varchar | 50 | √ | null |
|
|
Payroll status - Status of provider payment processing (Pending=awaiting payment, Paid=payment issued, Held=payment delayed) |
|
| PayrollDateExported | datetime | 16,3 | √ | null |
|
|
Payroll export date - Date when the provider payment information was exported to payroll system |
|
| Profit | money | 21,4 | √ | null |
|
|
Profit margin - Calculated as AmountCharged minus PayrollRate, representing profit from the claim |
|
| OrderingProvider | varchar | 300 | √ | null |
|
|
Ordering provider - Healthcare professional who ordered or prescribed the service |
|
| Cpt | varchar | 2147483647 | √ | null |
|
|
CPT codes - Pulling data from dbo.ClaimCpt table. One claim has many CPTs. Using function dbo.getClaimCPTFullNames to get complete list of Current Procedural Terminology codes |
|
| Icd | varchar | 2147483647 | √ | null |
|
|
ICD codes - Pulling data from ClaimIcd9 table. One claim has many ICDs. Using function dbo.getClaimICD9FullNames to get International Classification of Diseases codes indicating patient’s diagnosis |
|
| VisitCode | varchar | 266 | √ | null |
|
|
Visit code - Internal code and description with lookup reference to dbo.AttendanceCode_vw identifying the type of visit or session |
|
| IsBillable | varchar | 3 | null |
|
|
Billable status - Whether the service is billable to insurance with lookup reference to dbo.AttCodeInClaimType (Yes=billable, No=non-billable) |
||
| IsMissedVisit | varchar | 3 | null |
|
|
Missed visit flag - If the VisitCode is matched on dbo.CancelledVisitCodes then showing Yes, else No. Indicates whether this represents a missed or cancelled visit |
