Patient


Description

Primary patient/client records containing core demographic and contact information for individuals receiving healthcare services. This central table manages patient enrollment, demographics, insurance information, and regulatory compliance documentation for clients across all healthcare programs.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
PatientID int identity 4 null
CustomConfig.fkPatientID FK_CustomConfig_Patient R
DaycareTransactions.fkPatientID FK_DaycareTransactions_Patient R
PatientAdministration.PatientID FK_PatientAdministration_Patient C
PatientAlias.patientID FK__PatientAlias__Patient C
PatientDocs.patientID FK__PatientDo__patie__3F5C4234 C
PatientIDList.patientID FK__PatientIDs__Patient C
PatientInCustomConfig.fkPatientID FK__PatientInCustomConfig__Patient C
PatientInOutsideSource.fkPatientID FK__PatientIn__fkPat__57DEA292 C
PatientInsurance.patientID FK_PatientInsurance_Patient C
PatientLanguage.fkPatientID FK__PatientLanguage__Patient C
PatientPreReferral.patientID FK__PatientPr__patie__7F0CB2F5 C
Rate.Patientid FK__Rate__Patientid__4F9CCB9E R

Primary key - Unique identifier for each patient/client in the system

FirstName varchar 50 null

First name - Patient’s given name for identification and communication

MiddleName varchar 50 null

Middle name - Patient’s middle name or initial for complete identification

LastName varchar 50 null

Last name - Patient’s surname for identification and alphabetical sorting

Sex varchar 20 null

Gender - Patient’s gender for demographic reporting and appropriate care matching

DateOfBirth datetime 16,3 null

Birth date - Patient’s date of birth for age calculations and eligibility determination

Address varchar 50 null

Primary address - Patient’s street address for service delivery and communication

City varchar 50 null

City - City of patient’s primary residence

State varchar 50 null

State - State/province of patient’s primary residence

ZipCode varchar 10 null

Postal code - ZIP/postal code for patient’s address

Telephone varchar 30 null

Phone number - Primary telephone number for patient contact

Ethnicity varchar 20 null

Ethnicity - Patient’s ethnic background for demographic reporting and cultural considerations

InsuranceID int 4 null

Insurance reference - Links to Insurance table for primary insurance coverage

DateEntered datetime 16,3 (getdate())

Enrollment date - Date when patient was first entered into the system

DatePrescription datetime 16,3 null

Prescription date - Date of medical prescription or referral for services

AgencyID int 4 null

Agency reference - Links to iCS2.dbo.Agency for centralized healthcare provider organization management serving this patient

ForestCareID int 4 null

Forest Care ID - External system identifier for Forest Care integration

Comments varchar 500 null

General comments - Administrative notes about the patient

District int 4 null

School district - School district reference for educational service coordination

Borough char 20 null

Borough - Geographic borough or region for service area management

RxDate datetime 16,3 null

Prescription date - Date of medical prescription or service order

BillingType int 4 null

Billing type - Reference to billing classification for this patient

DateAnnualMedical datetime 16,3 null

Annual medical date - Date of annual medical examination

DateAudiological datetime 16,3 null

Audiological exam date - Date of hearing assessment

DateVisionTest datetime 16,3 null

Vision test date - Date of vision screening

DateSCConsent datetime 16,3 null

Service coordination consent - Date when service coordination consent was obtained

DateReleaseInfoConsent datetime 16,3 null

Information release consent - Date when consent to release information was obtained

DateEvalConsent datetime 16,3 null

Evaluation consent - Date when evaluation consent was obtained

DateFamilyInfoWorksheet datetime 16,3 null

Family info worksheet date - Date when family information worksheet was completed

DateMedicalInfoWorksheet datetime 16,3 null

Medical info worksheet date - Date when medical information worksheet was completed

Date45DayLimit datetime 16,3 null

45-day timeline - Date related to 45-day evaluation timeline requirements

DateChildInfoChange datetime 16,3 null

Child info change date - Date when child information was last updated

DateSurrogacyForm datetime 16,3 null

Surrogacy form date - Date when surrogacy form was completed

DateClosureForm datetime 16,3 null

Closure form date - Date when case closure form was completed

OtherInsurance char 5 null

Other insurance flag - Indicates if patient has additional insurance coverage

MedicalID varchar 50 null

Medical ID - Medical record number or identifier

DateHIPAAPrivacyReceived datetime 16,3 null

HIPAA privacy date - Date when HIPAA privacy notice was received

SignatureOnFile varchar 1 null

Signature on file - Indicates if patient signature is on file

DateSigned datetime 16,3 null

Signature date - Date when consent forms were signed

Age int 4 null

Current age - Patient’s current age (calculated field)

MaritalStatus varchar 3 null

Marital status - Patient’s marital status (for adult patients)

DateOfDeath datetime 16,3 null

Death date - Date of death if applicable

EmploymentStatus varchar 3 null

Employment status - Employment status (for adult patients)

CreatedBy int 4 null

Created by user - UserID of the person who created this patient record

DateUpdated datetime 16,3 null

Last update date - Timestamp of the most recent record update

UpdatedBy int 4 null

Updated by user - UserID of the person who last modified this record

Pregnancy varchar 1 null

Pregnancy status - Pregnancy status indicator

SiteID int 4 null

Site reference - Links to AgencySite table for primary service location

patientStatus varchar 30 null

Patient status - Current status of the patient in the system

source varchar 2 null

Data source - Source of patient data entry

Address2 varchar 50 null

Address line 2 - Additional address information (apartment, suite, etc.)

InternalID int 4 null

Internal ID - Internal system identifier

Email varchar 100 null

Email address - Patient or guardian email for communication

ImportID int 4 null

Import identifier - Reference ID for data migration and import tracking

ProfileImage nvarchar 1073741823 null

Profile image - Patient profile photo or image

ListClassrooms nvarchar 1073741823 null

Classroom list - List of classrooms or educational settings

Indexes

Constraint Name Type Sort Column(s)
PK_Patient Primary key Asc PatientID
IX_Patient_Agency Performance Asc AgencyID
IX_Patient_District Performance Asc District
IX_Patient_DOB Performance Asc DateOfBirth
IX_Patient_FirstName Performance Asc FirstName
IX_Patient_LastName Performance Asc LastName
IX_Patient_Site Performance Asc SiteID
IX_PatientStatus Performance Asc patientStatus

Relationships