AIAuthorizeSource_vw


Description

Authorization analytics view - Show the auth data where status is not in Deleted. Comprehensive analytical view combining authorization data with patient demographics, service details, provider assignments, and utilization metrics. Designed to support AI-powered analytics for service authorization management, utilization tracking, and provider performance analysis across the early intervention and healthcare service delivery system.

Columns

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

Primary key - Authorization unique identifier linking to core authorization record

PatientID int 4 null

Patient reference - Links to the patient receiving authorized services (foreign key to Patient.PatientID)

IFSPID int 4 null

IFSP reference - Links to the Individualized Family Service Plan governing the authorization (foreign key to Ifsp.IfspID)

AdmitId int 4 null

Case reference - Links to the patient’s case administration record (foreign key to PatientAdministration.AdmitID)

LastName varchar 50 null

Patient last name - Patient’s family name for identification and reporting purposes

FirstName varchar 50 null

Patient first name - Patient’s given name for identification and reporting purposes

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 integration

DateOfBirth datetime 16,3 null

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

PaySource varchar 145 null

Payment source - Paysource name with lookup reference to dbo.PaymentSource_vw table representing the county or funding source covering the authorized services

Weeks int 4 null

Authorization duration - Number of weeks the authorization is valid for service delivery

Units decimal 12,2 null

Authorized units - Total number of service units approved for delivery under this authorization

NumOfMinute int 4 null

Session duration - Length of each service session in minutes as specified in the authorization

NumOfDay decimal 7,2 null

Service frequency - Number of service days per specified period (weekly, monthly, etc.)

DateBegin datetime 16,3 null

Authorization start date - When the authorized services can begin delivery

DateEnd datetime 16,3 null

Authorization end date - When the authorized services must be completed

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 service delivery or reimbursement

Procedure varchar 100 null

Procedure code - Procedure name with lookup reference to ics2.dbo.ProcCode table, CPT or other procedure code identifying the specific service for billing and documentation

FirstServiceDate datetime 16,3 null

First service date - Get the Min DateService of te claim that tied to te auth. Date when the first billable service was delivered under this authorization

LastServiceDate datetime 16,3 null

Last service date - Get the Max DateService of te claim that tied to te auth. Date when the most recent billable service was delivered under this authorization

Session varchar 95 null

Session description - Formatted description combining session duration, frequency, and delivery pattern for easy reference

DaysLeft int 4 null

Days remaining - Current Date - EndDate of the aut. Number of days remaining before the authorization expires

LocationName varchar 50 null

Service location - Name of the facility or location with lookup reference to dbo.Locations table where services are delivered

UnitsRemain decimal 40,2 null

Units remaining - Calculated as: Authorization Units – Sum of Units from claims linked to the authorization, where the claim status is not in Non-Billable, Void, or Deleted. Note: Although UnitUsed exists, calculating the sum directly is more accurate

Status char 20 null

Authorization status - Current status of the authorization (Active=services can be delivered, Inactive=services suspended, Expired=authorization ended)

Providers nvarchar 1073741823 null

Assigned providers - Displays all users assigned to the authorization through the AuthorizeTherapist table. Comma-separated list of healthcare providers assigned to deliver services under this authorization

ServiceUtilization decimal 20,2 null

Utilization percentage - Percentage of authorized services that have been completed, calculated as used units divided by total units

UnitUsed decimal 40,2 null

Units used - Sum of Units from claims linked to the authorization. Number of service units that have been delivered and billed under this authorization

ProgramName varchar 255 null

Program name - Name of the service program with lookup reference to Ics2.dbo.ProgramType table or intervention type under which services are delivered

CaseSite varchar 50 null

Case site - Display site of the kid. Bridge table: dbo.CaseSite, Lookup table: dbo.AgencySite. Primary service delivery site or agency location managing the case

AuthType varchar 50 null

Authorization type - Classification of authorization with lookup reference to dbo.Option_VW table (Initial=first authorization, Renewal=continuation, Amendment=modification)

PANumber varchar 50 null

Prior authorization number - Insurance or payer-assigned prior authorization number for billing and claims processing

GroupServiceType char 10 null

Group service type - Indicates whether services are delivered individually or in group settings

PlanDate datetime 16,3 null

IFSP plan date - Date when the Individualized Family Service Plan was created or last updated

PlanClosureDate smalldatetime 16 null

IFSP closure date - Date when the IFSP was closed or services were discontinued

PlanComment varchar 255 null

IFSP comments - Additional notes or comments related to the IFSP and service planning

PlanStatus varchar 10 null

IFSP status - Current status of the Individualized Family Service Plan (Active=services ongoing, Closed=services completed, Suspended=services temporarily stopped)

Relationships

View Definition


Possibly Referenced Tables/Views