6
HEALTHCARE SELF INSURANCE COUNSULTING GROUP ASSIGNMENT 3: ERD (Wellness Activity Tracking System) JASH MEHTA GROUP 3 Mentor: Kshitij Chug Weekly meeting time (Group meeting): Wednesday 3-4pm Weekly meeting time (Group + Mentor meeting): Wednesday 4-5pm Venue: Ice Box, Hinds Hall JASH MEHTA 1

Jash mehta erd assignment

Embed Size (px)

Citation preview

Page 1: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

ASSIGNMENT 3: ERD (Wellness Activity Tracking System)

JASH MEHTA

GROUP 3

Mentor: Kshitij Chug

Weekly meeting time (Group meeting): Wednesday 3-4pm

Weekly meeting time (Group + Mentor meeting): Wednesday 4-5pm

Venue: Ice Box, Hinds Hall

Jash Mehta 1

Page 2: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

Overview of the company, current scenario and the future.

Healthcare in the USA is going through a serious crisis. The spending of the USA on healthcare is 2X per capita than other industrialized nations. Medical bills are a major factor in more in more than 60% of the personal bankruptcies in the

USA, 75% have health insurance. Between 2000 and 2006 health insurance premiums rose 87% and the average wages rose by

3.8%. In spite of this the USA ranks 37th in healthcare system. The fully insured plans are expensive and hence one of the reason for the crisis in healthcare

economy. The alternative to fully insured plan is the self-insured plan. In this, the employer retains a

portion of the risk and instead of large premiums the employer pays the administrative bills and stop loss company’s bills which are generally much lower than the monthly premium of fully insured.

Healthcare self-insurance and consulting Group offer customers with variety of services to our clients. We encourage many wellness activities, promote self-management through healthcare Apps and increased patient clinician interaction. Providing such services requires building an IT infrastructure and systems which can support huge volume of customers.

In this document we have designed an ERD to capture the requirements of the back end. Design a system such that it can queried to get all kinds of data. Our system is wellness tracking system and we capture all kinds of health metrics before wellness activity and after wellness activity, feedback, wellness activity team participation etc. These metrics are captured to analyze and make decisions on the success of wellness activities.

Jash Mehta 2

Page 3: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

Jash Mehta 3

Page 4: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

Jash Mehta 4

Page 5: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

Entity Attributes DescriptionWellness Activity WA_ID: Primary Key

WA_typeWA_nameInitial DateInitial locationRSVP CountFinal DateFinal locationAttendance

Wellness Activity table contains all the initial plans data, RSVP count, finalized plans data, attendance of customers.WA_ID is the primary key

Customers Customer_Id: Primary KeyFirst NameLast NameAgeGenderPhone NumberEmail

The enrollment department has all this data. This data is related to the customers.Customer_Id is the primary key. Rest all is customer’s personal and general information.

Login Username: Primary KeyPasswordCustomer_Id: Foreign Key

Login is the table with verification and validation component of the system. This database contains username and password for all the users.Therefore, Customer_Id is the foreign key here. For each customer there will be one username and one password.

Medical Information MI_ID: Primary KeyBlood Level SugarCholesterol LevelBlood pressureSleep per dayStress levelsWeightHeightBMI ratioWA_ID: Foreign KeyCustomer_Id: Foreign Key

This table is with medical tracking and alerts system.Here all the health metrics are captured for a particular wellness activity for a particular customer.Therefore, there are two foreign keys: WA_ID and Customer_Id.

Wellness Tracking System WTS_ID: Primary KeyWA_ID: FKCustomer_Id: FKTeam NumberTeam MembersWA_minutesRSVP Status

The Wellness Tracking system tracks the wellness activity team participation, wellness activity minutes and the RSVP status of the customers. Therefore there is also Customer_Id as FK.

Jash Mehta 5

Page 6: Jash mehta erd assignment

Healthcare Self Insurance Counsulting Group

Customer Feedback Cust_Feed_Id: Primary keyPost Blood Level SugarPost Cholesterol LevelPost Blood pressurePost Sleep per dayPost Stress levelsPost WeightPost HeightPost BMI ratioWA Overall RatingWA Overall FeedbackWA_ID: Foreign KeyCustomer_Id: Foreign KeyMI_ID: Foreign Key

The customer feedback table contains feedback about the activity. Also it contains all the health metrics post the wellness activity. The health metrics can be compared post and before wellness activity was conducted. This can be easily queried and compared as WA_ID, Customer_Id and MI_ID are the foreign keys.

Jash Mehta 6