Sakshi commited on
Commit
d67de0b
·
1 Parent(s): 8178fea

changes in rules for health

Browse files
policy_analyser/analyse.py CHANGED
@@ -11,6 +11,7 @@ from datetime import datetime
11
  from policy_analyser import PROMPTS_DIR, DATA_DIR
12
  from policy_analyser.ocr import PyMuPDF4LLMOCR
13
  from policy_analyser.llm import call_openai
 
14
 
15
  class LOB:
16
  def __init__(self, ocr_engine = 'open-source/pymupdf4llm'):
@@ -90,8 +91,10 @@ class Health(LOB):
90
  self.rules = f.read()
91
  with open(os.path.join(PROMPTS_DIR, 'health', 'suggest.txt'), 'r') as f:
92
  self.suggest_prompt = f.read()
93
- with open(os.path.join(DATA_DIR, 'health.md'), 'r') as f:
94
  self.acko_policy = f.read()
 
 
95
 
96
  def _analyse(self, **kwargs):
97
  text = kwargs.get('text')
@@ -106,7 +109,15 @@ class Health(LOB):
106
  def _suggest(self, **kwargs):
107
  analysis = kwargs.get('analysis')
108
  if len(analysis) > 0:
109
- prompt = self.suggest_prompt + "\nCustomer Policy Analysis : " + analysis + "\nAcko's Policy : " + self.acko_policy
 
 
 
 
 
 
 
 
110
  response = call_openai(prompt)
111
  if len(response) > 0:
112
  return response
@@ -126,8 +137,8 @@ if __name__ == '__main__':
126
  for filepath in tqdm(filepaths):
127
  # if os.path.isfile(filepath.replace('.pdf', '.analysis.json')):
128
  # continue
129
- if '.analysis' in filepath or '.e2e-analysis' in filepath:
130
- continue
131
  print(filepath)
132
  if filepath.endswith('.pdf'):
133
  file_bytes = open(filepath, 'rb').read()
@@ -137,11 +148,11 @@ if __name__ == '__main__':
137
  analysis = health(file_bytes)
138
  # print(analysis)
139
  basepath = os.path.splitext(filepath)[0]
140
- if not end2end:
141
- with open(os.path.splitext(filepath)[0] + '.analysis.json', 'w') as f:
142
- json.dump(analysis, f, indent = 4)
143
- else:
144
- with open(os.path.splitext(filepath)[0] + '.e2e-analysis.json', 'w') as f:
145
- json.dump(analysis, f, indent = 4)
146
- with open(os.path.splitext(filepath)[0] + '.e2e-analysis.md', 'w') as f:
147
- f.write(analysis[1]['response'])
 
11
  from policy_analyser import PROMPTS_DIR, DATA_DIR
12
  from policy_analyser.ocr import PyMuPDF4LLMOCR
13
  from policy_analyser.llm import call_openai
14
+ from policy_analyser.utils import markdown_table_to_json
15
 
16
  class LOB:
17
  def __init__(self, ocr_engine = 'open-source/pymupdf4llm'):
 
91
  self.rules = f.read()
92
  with open(os.path.join(PROMPTS_DIR, 'health', 'suggest.txt'), 'r') as f:
93
  self.suggest_prompt = f.read()
94
+ with open(os.path.join(DATA_DIR, 'health_policy.md'), 'r') as f:
95
  self.acko_policy = f.read()
96
+ with open(os.path.join(DATA_DIR, 'health_super_topup.md'), 'r') as f:
97
+ self.acko_super_topup = f.read()
98
 
99
  def _analyse(self, **kwargs):
100
  text = kwargs.get('text')
 
109
  def _suggest(self, **kwargs):
110
  analysis = kwargs.get('analysis')
111
  if len(analysis) > 0:
112
+ bad_factors = markdown_table_to_json(analysis.split(f'<BAD>')[-1].split(f'</BAD>')[0].replace('## Bad Factors', ''))
113
+ bad_factor_names = [factor['Factor'] for factor in bad_factors]
114
+ avg_factors = markdown_table_to_json(analysis.split(f'<AVERAGE>')[-1].split(f'</AVERAGE>')[0].replace('## Average Factors', ''))
115
+ avg_factor_names = [factor['Factor'] for factor in bad_factors]
116
+ if len(bad_factors) < 3 and any(['sum insured' in factor.lower() for factor in bad_factor_names]) \
117
+ or len(avg_factors) < 3 and any(['sum insured' in factor.lower() for factor in avg_factor_names]):
118
+ prompt = self.suggest_prompt + "\nCustomer Policy Analysis : " + analysis + "\nAcko's Policy : " + self.acko_super_topup
119
+ else:
120
+ prompt = self.suggest_prompt + "\nCustomer Policy Analysis : " + analysis + "\nAcko's Super Top up Policy : " + self.acko_policy + '\nNote : Super Top up is an additional policy the customer can buy to enhance the benefits along with their current policy'
121
  response = call_openai(prompt)
122
  if len(response) > 0:
123
  return response
 
137
  for filepath in tqdm(filepaths):
138
  # if os.path.isfile(filepath.replace('.pdf', '.analysis.json')):
139
  # continue
140
+ # if '.analysis' in filepath or '.e2e-analysis' in filepath:
141
+ # continue
142
  print(filepath)
143
  if filepath.endswith('.pdf'):
144
  file_bytes = open(filepath, 'rb').read()
 
148
  analysis = health(file_bytes)
149
  # print(analysis)
150
  basepath = os.path.splitext(filepath)[0]
151
+ # if not end2end:
152
+ # with open(os.path.splitext(filepath)[0] + '.analysis.json', 'w') as f:
153
+ # json.dump(analysis, f, indent = 4)
154
+ # else:
155
+ # with open(os.path.splitext(filepath)[0] + '.o1-mini.e2e-analysis.json', 'w') as f:
156
+ # json.dump(analysis, f, indent = 4)
157
+ # with open(os.path.splitext(filepath)[0] + '.o1-mini.e2e-analysis.md', 'w') as f:
158
+ # f.write(analysis[1]['response'])
policy_analyser/data/auto_policy_entities.json ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "entityId": 0,
4
+ "entityName": "policy_start_date",
5
+ "entityDesc": "Start date of the policy",
6
+ "expectedOutputFormat": "dd/mm/yyyy"
7
+ },
8
+ {
9
+ "entityId": 1,
10
+ "entityName": "policy_end_date",
11
+ "entityDesc": "End date of the policy",
12
+ "expectedOutputFormat": "dd/mm/yyyy"
13
+ },
14
+ {
15
+ "entityId": 2,
16
+ "entityName": "base_cover_ncb",
17
+ "entityDesc": "No claim bonus discount %age",
18
+ "expectedOutputFormat": "integer"
19
+ },
20
+ {
21
+ "entityId": 3,
22
+ "entityName": "transmission_type",
23
+ "entityDesc": "Transmission type of car, one of the two : automatic, manual",
24
+ "expectedOutputFormat": "string"
25
+ },
26
+ {
27
+ "entityId": 4,
28
+ "entityName": "previous_insurer",
29
+ "entityDesc": "Previous insurance company",
30
+ "expectedOutputFormat": "string"
31
+ },
32
+ {
33
+ "entityId": 5,
34
+ "entityName": "registration_month",
35
+ "entityDesc": "Month of vehicle registration",
36
+ "expectedOutputFormat": "integer"
37
+ },
38
+ {
39
+ "entityId": 6,
40
+ "entityName": "registration_year",
41
+ "entityDesc": "Year of vehicle registration",
42
+ "expectedOutputFormat": "integer"
43
+ },
44
+ {
45
+ "entityId": 7,
46
+ "entityName": "registration_number",
47
+ "entityDesc": "vehicle registration number",
48
+ "expectedOutputFormat": "integer"
49
+ },
50
+ {
51
+ "entityId": 8,
52
+ "entityName": "phone_number",
53
+ "entityDesc": "Customer's contact number",
54
+ "expectedOutputFormat": "integer"
55
+ },
56
+ {
57
+ "entityId": 9,
58
+ "entityName": "customer_name",
59
+ "entityDesc": "Customer's name",
60
+ "expectedOutputFormat": "string"
61
+ },
62
+ {
63
+ "entityId": 10,
64
+ "entityName": "model",
65
+ "entityDesc": "Vehicle model name",
66
+ "expectedOutputFormat": "string"
67
+ },
68
+ {
69
+ "entityId": 11,
70
+ "entityName": "fuel_type",
71
+ "entityDesc": "Fuel type of the vehicle",
72
+ "expectedOutputFormat": "string"
73
+ },
74
+ {
75
+ "entityId": 12,
76
+ "entityName": "make",
77
+ "entityDesc": "Make of the vehicle",
78
+ "expectedOutputFormat": "string"
79
+ },
80
+ {
81
+ "entityId": 13,
82
+ "entityName": "variant",
83
+ "entityDesc": "Variant of the vehicle model",
84
+ "expectedOutputFormat": "string"
85
+ },
86
+ {
87
+ "entityId": 14,
88
+ "entityName": "cc",
89
+ "entityDesc": "CC of vehicle",
90
+ "expectedOutputFormat": "integer"
91
+ },
92
+ {
93
+ "entityId": 15,
94
+ "entityName": "pincode",
95
+ "entityDesc": "Pincode of the customer's address",
96
+ "expectedOutputFormat": "integer"
97
+ },
98
+ {
99
+ "entityId": 16,
100
+ "entityName": "Product_Type",
101
+ "entityDesc": "Type of insurance policy plan",
102
+ "expectedOutputFormat": "string"
103
+ },
104
+ {
105
+ "entityId": 17,
106
+ "entityName": "ex_showroom_price",
107
+ "entityDesc": "Ex showroom price of the vehicle",
108
+ "expectedOutputFormat": "integer"
109
+ },
110
+ {
111
+ "entityId": 18,
112
+ "entityName": "add_ons",
113
+ "entityDesc": "Add-ons purchased with the policy",
114
+ "expectedOutputFormat": "JSON list"
115
+ },
116
+ {
117
+ "entityId": 19,
118
+ "entityName": "not_covered",
119
+ "entityDesc": "Items that are not covered in the policy",
120
+ "expectedOutputFormat": "JSON list"
121
+ }
122
+ ]
policy_analyser/data/health.md DELETED
The diff for this file is too large to render. See raw diff
 
policy_analyser/data/health_policy.md ADDED
@@ -0,0 +1,810 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ y
2
+
3
+ **Acko Personal Health Insurancert**
4
+
5
+ **Policy Wordings**
6
+
7
+ ACKO promises to cover you basis the declarations you’ve made with us when purchasing health insurance from us. Note: If any of your declarations are found to be untrue, incorrect or inaccurate in any way, ACKO can reevaluate the Benefits applicable for the remainder of the Policy Period. Depending on the severity of misrepresentation or non-disclosure, the policy can also be voided, so please answer truthfully to the best of your knowledge\! And if you don’t know, feel free to ask or offer your best understanding when disclosing medical information to us.
8
+
9
+ **Definitions of terms when purchasing health insurance from ACKO**
10
+
11
+ 1\. **Accident** means sudden, unforeseen and involuntary event caused by external, visible and violent means.
12
+
13
+ 2\. **Illness** means continuous period of illness and includes relapse within 45 days from the date of last consultation with the Hospital/Nursing Home where treatment was taken.
14
+
15
+ 3\. **AYUSH Hospital** is a healthcare facility wherein medical/surgical/para-surgical treatment procedures and interventions are carried out by AYUSH Medical Practitioner(s) comprising of any of the following:
16
+
17
+ a) Central or State Government AYUSH Hospital; or
18
+
19
+ b) Teaching hospital attached to AYUSH College recognized by the Central Government/Central Council of Indian Medicine/Central Council for Homeopathy; or
20
+
21
+ 4\. **AYUSH Day Care Centre** are Community Health Centre (CHC), Primary Health Centre (PHC), Dispensary, Clinic, Polyclinic or any such health centre
22
+
23
+ 5\. **Cashless facility** means the customer payments for treatment costs are directly made to the Network Provider by the insurer
24
+
25
+ 7\. **Congenital Anomaly** means a condition present since birth, and which is abnormal with reference to form, structure or position.
26
+
27
+ a) Internal Congenital Anomaly- Congenital anomaly which is not in the visible and accessible parts of the body.
28
+
29
+ b) External Congenital Anomaly- Congenital anomaly which is in the visible and accessible parts of the body
30
+
31
+ 8\. **Co-Payment (or Copay)** means a cost-sharing feature under health insurance where the policyholder/insured member is required to pay a percentage of the total claims amount.
32
+
33
+ 9\. **Cumulative Bonus:** Cumulative Bonus means any increase or addition in the Sum Insured granted by the insurer. This does not increase the premium. Note: ACKO does not offer this feature for health insurance.
34
+
35
+ 10\. **Day Care Centre** means any institution established for Day Care Treatment of illness or injuries 11\. **Day Care Treatment** means a treatment or surgery undertaken under General or Local Anesthesia in a hospital/Day Care Centre in less than 24 hrs. This is different from out-patient treatment.
36
+
37
+ 12\. **Deductible:** Generally chosen by customers who already are insured upto a certain amount (eg. if they have a pre-existing topup) or if a customer willing wants a cheaper plan at the cost of needing to pay the deductible from their pocket if a claim arises in that year.
38
+
39
+ 13\. **Dental Treatment** means a treatment related to teeth such as examinations, fillings, crowns, extractions and surgery.
40
+ 15\. **Domiciliary Hospitalization** means treatment for an illness/disease/injury which is done at home
41
+
42
+ 16\. **Emergency Care** is immediate medical attention given to a person to prevent death or serious long term impairment of the insured person’s health.
43
+
44
+ 17\. **Grace Period** is a specific period of time after the premium payment deadline, during which a payment can be made to renew or continue a policy. There will be no gap or break in benefits such as waiting periods and coverage of pre-existing diseases.
45
+
46
+ 18\. **Hospital** means any institution established for in-patient care and Day Care Treatment of illness and/or injuries.
47
+
48
+ 19\. **Hospitalization** means admission to a Hospital for more than 24 hours
49
+
50
+ 20\. **Illness** could mean any sickness, disease or condition that impairs a person’s well-being and requires medical treatment. There are two types of Illnesses:
51
+
52
+ a) **Acute condition** \- Conditions that can be treated which leads to immediate recovery and don’t recur
53
+
54
+ b) **Chronic condition** include recurring pain, illnesses or symptoms that require ongoing or long-term monitoring to control symptoms. This can also include long-term rehabilitation which the patient has to continue indefinitely
55
+
56
+ 21\. Injury means accidental physical bodily harm which may have been caused by external or violent means
57
+
58
+ 22\. Inpatient care: the insured person has to stay in a hospital for more than 24 hours
59
+
60
+ 23\. Intensive care unit (ICU): a section, ward or wing of a hospital which is equipped for the continuous monitoring and treatment of patients in a critical condition or require life support facilities
61
+
62
+ 24\. ICU Charges: these generally include charges for bed and general medical support such as monitoring devices, critical care nursing.
63
+
64
+ 25\. ACKO does not offer Maternity coverage. Maternity expenses are usually medical expenses traceable to childbirth (including complicated deliveries and caesarean sections) as well as abortions
65
+
66
+ 26\. Medical Advice: any consultation or advice from a Medical Practitioner. This includes any issued prescriptions.
67
+
68
+ 27\. Medical Expenses: expenses that a patient has actually for medical treatment on account of Illness or Accident
69
+
70
+ 28\. Medical Practitioner means a person who holds a valid registration from the Medical Council of any State or Medical Council of India or Council for Indian Medicine or for Homeopathy set up by the Government of India or a State Government
71
+
72
+ 29\. Medically Necessary Treatment means any treatment, tests, medication, or hospital stay which is required for medically managing an illness
73
+
74
+ 30\. Migration involves changing to a different plan within ACKO itself
75
+
76
+ 31\. Network Provider means hospitals or health care providers enlisted by an insurer, TPA or jointly by an Insurer and TPA to provide medical services to an insured by a Cashless facility.
77
+
78
+ 32\. New Born: ACKO only covers new born babies 90 days after birth. New Born Baby means baby born during the Policy Period. They can be added as a new member under the "Edit" section after accessing your ACKO health policy on the acko app
79
+
80
+ 33\. Non-Network means any hospital, day care centre or other provider that is not part of the network of hospitals published by ACKO
81
+
82
+ 34\. Notification of Claim means the process of intimating a claim to the insurer or TPA (Third Party Administrator) through any of the recognized modes of communication.
83
+
84
+ 35\. OPD treatment: The insured person only visits a clinic / hospital or associated facility like a consultation room for diagnosis and treatment. Note: The Insured is not admitted as a day care or in-patient.
85
+
86
+ 36\. Pre-Existing Disease means any existing condition, ailment, injury or disease the user may already have
87
+
88
+ 37\. Pre-hospitalization Medical Expenses means medical expenses incurred before hospitalisation of the insured person
89
+
90
+ 38\. Portability means the policyholder can transfer transfer any credit gained for pre-existing conditions or waiting periods from an existing insurer to ACKO which directly offers zero waiting period for eligible users based on medical tests
91
+
92
+ 39\. Post-hospitalization Medical Expenses means medical expenses incurred by the insured person after being discharged from the hospital
93
+
94
+ 40\. Qualified nurse means a person who holds a valid registration from the Nursing Council of India or the Nursing Council of any state in India.
95
+
96
+ 42\. Renewal: ACKO's health insurance policy can be renewed continuing their health insurance coverage. This also helps insured members gain waiting period credits for pre-existing diseases or any other time-bound exclusions on ACKO's standard or platinum plan
97
+
98
+ 43\. Room Rent means the amount charged by a Hospital towards Room and Boarding expenses
99
+
100
+ 44\. Surgery or Surgical Procedure means operations required for treatment of an illness or injury, correction of deformities and defects, diagnosis and cure of diseases, relief from suffering and prolongation of life
101
+
102
+ 45\. Unproven/Experimental treatment means the treatment including drug experimental therapy which is not based on established medical practice in India or may be unproven
103
+
104
+ **Specific Definitions**
105
+
106
+ 1\. **Age or Aged** means the age as on last birthday.
107
+ 2\. **Admission** means Your admission in a Hospital as an in-patient for the purpose of medical treatment of an Injury and/ or Illness.
108
+
109
+ 3\. **Ambulance** means a road vehicle operated by a licenced/authorised service provider and equipped for the transport and paramedical treatment of the person requiring medical attention.
110
+
111
+ 5\. **Annual Renewal Date** means the day on which the existing health insurance policy expires and can be renewed
112
+ 7\. **Base Sum Insured:** the amount of money to be used by the insurer on claiming their health insurance
113
+ 8\. **Break in Policy:** This occurs when the payment for the health insurance policy is not done within 30 days of policy expiry
114
+
115
+ 10\. **Claim:** a request raised by the policyholder or insured members to the insurer to pay for medical Expenses or avail any benefits
116
+
117
+ 11\. **Commencement Date:** Commencement Date means the start date of the Policy
118
+
119
+ 12\. **Covered In-patient Medical Expenses** shall include Room Rent, ICU/CCU/HDU charges, nursing charges, operation theatre charges, Surgical Appliance and/or Medical Appliance cost, fees of Medical Practitioner/ surgeon / anaesthetist / Specialist / radiologist / pathologist and diagnostic tests conducted within the same Hospital where the Insured Person has been admitted.
120
+
121
+ 13\. **Coverage Period:** Coverage Period is the amount of time for which a person is insured for their health insurance policy
122
+
123
+ 14\. **Date of Admission** means the date of the Insured Person’s first admission to a Hospital or Day Care Centre
124
+
125
+ 15\. **Dependent** means the Employee’s / Member’s parents, Spouse or child who have been enrolled in the Policy.
126
+
127
+ 16\. **Employee:** means any member of Your staff who is proposed or sponsored by You and who becomes an Insured Person under this Policy
128
+
129
+ 17\.**Emergency:** An emergency is a sudden, serious medical issue that requires immediate professional treatment within 24 hours to prevent serious harm or long-term health problems. Once the condition is stabilized, it is no longer considered an emergency.
130
+
131
+ 19\. **Exclusions** mean specified coverage, hazards, services, conditions, and the like that are not provided for under ACKO’s Policy
132
+
133
+ 21\. The "**Floater Benefit**" is the total insurance coverage amount that applies to your entire family under the policy. This is the maximum amount the insurance company will pay out for all your family members together during the policy period
134
+
135
+ 22\. **HDU (High Dependency Unit)**: This is a special area in the hospital, close to the Intensive Care Unit, where patients can receive more care than in a normal ward, but not as much as in the Intensive Care Unit.
136
+
137
+ **Insured Person**: This refers to the main person covered by the insurance policy, as well as any dependents (like family members) named in the policy schedule, who are also covered as long as the appropriate premiums are paid.
138
+
139
+ 24\. **IRDAI** means the Insurance Regulatory and Development Authority of India.
140
+
141
+ 26\. The "Nominee" is the person named in the policy schedule who will receive the insurance benefits if the insured person or their dependent passes away while the policy is still active. This nominee receives the payments according to the policy's terms and conditions.
142
+
143
+ 1. Out-Patient: Someone who gets treatment or stays less than 24 hours in the hospital.
144
+ 2. Primary Insured: The main person covered by the insurance policy, who is employed by or a member of the organization.
145
+ 3. Partner: The live-in partner who is also covered under the health insurance policy.
146
+ 4. Policy: The complete insurance contract, including the proposal form, terms and conditions, schedules, and any changes made over time.
147
+ 5. Policy Anniversary Date: The yearly date when the policy coverage period begins.
148
+ 6. Policy Period: The duration of the policy, from the start date to the expiry date or cancellation date.
149
+ 7. Policy Year: A 12-month period within the overall policy period, starting from the policy anniversary date.
150
+ 8. Risk Commencement Date: The date when the policy coverage and our responsibility as the insurer begins.
151
+ 9. Room Category: The type of hospital room and associated expenses covered, like private, shared, deluxe, etc.
152
+ 10. Schedule: The part of the policy that lists the details of the insured persons, coverage amounts, policy period, and any special conditions.
153
+ 11. Spouse: The proposer's legal husband or wife who is also covered under the policy.
154
+ 12. Specialist Medical Practitioner: A doctor with advanced training in a specific medical field.
155
+ 13. Sum Insured: The maximum amount the insurance company will pay out for any or all claims under the policy.
156
+ 14. Surgical/Medical Appliance: Artificial devices or prosthetics required for surgery or medical treatment.
157
+ 15. Sub-Limit: A limit on the amount covered for a specific type of claim.
158
+ 16. TPA: A licensed third-party administrator who assists the insurance company in providing health services.
159
+ 17. Treatment: Any relevant medical care provided by a doctor to cure or substantially relieve an illness or injury.
160
+ 18. Waiting Period: A time period before certain conditions are covered by the policy.
161
+ 19. **Schedule**: A policy schedule outlines what's included in the insurance coverage and any rules or limitations around the different benefits. It's an important part of the policy that details the specifics of the coverage you have.
162
+ 20. **What is Sum Insured:** The policy's "Sum Insured" refers to the maximum coverage amount available for the different benefits. There is a single, shared coverage limit for all the insured people on the policy, for each benefit for the period of coverage. The total payout for all insured people's claims combined is limited to the single sum insured amount. Eg. If the sum insured is worth Rs. 1Crore, then 1 Crore is available for all three members. Now if a single family member makes a claim worth Rs. 10 Lakhs, then 90 Lakhs is left for all the family members covered under the plan.
163
+
164
+ 21. **Consequential Losses:** The insurance company is not responsible for any losses or damages that are caused by mistakes, errors or misrepresentations made by the network providers when you use the covered services.
165
+ 22. **Reasonable and Customary Charges:** The insurance company will only pay for costs and expenses that are reasonable and commonly charged for that type of service or treatment.
166
+
167
+ **Section 3: Benefits**
168
+
169
+ **Basic Benefits**
170
+
171
+ All the benefits listed below are available to anyone insured by ACKO for their retail health policy
172
+
173
+ **In-patient Hospitalization**
174
+
175
+ In the event of hospitalization, we will cover the following medical expenses for anyone insured in the policy \-
176
+
177
+ ● Hospital room rent
178
+
179
+ ● ICU/CCU/HDU charges
180
+ ● Operation room charges
181
+
182
+ ● Medical practitioner / doctor fees
183
+
184
+ ● Medicines prescribed by the treating medical practitioner / doctor, used in the treatment ● Diagnostic tests directly related to the current hospitalization
185
+
186
+ ● Surgical or medical appliance(s) prescribed by the treating medical practitioner/doctor (e.g. a stent)
187
+
188
+ **Room Rent /ICU**
189
+
190
+ ACKO has no room rent limits\! If anyone insured under the policy is hospitalized, ACKO will cover the entire room rent charges for the room category and ICU charges during hospitalization stay.
191
+
192
+ **Day Care Treatment**
193
+
194
+ If anyone insured under the policy undertakes Day Care Treatment in a hospital, nursing home, or day care centre, we will cover the expenses of the day care treatment.
195
+
196
+ **Pre or Post Hospitalization Medical Expenses**
197
+
198
+ ACKO will cover all the relevant medical expenses including consultations, investigations, diagnostics and medicines that are incurred towards pre-hospitalization and post-hospitalization of anyone insured under the policy.
199
+
200
+ **Road Ambulance Limit**
201
+
202
+ The goal is to help cover the costs when you urgently need to get someone to receive immediate medical attention.
203
+
204
+ This covers emergency transport to a hospital or day care facility
205
+
206
+ ACKO will pay for the reasonable costs of the transportation
207
+
208
+ This applies to anyone insured under the policy who needs emergency care
209
+
210
+ **Domestic Emergency Evacuation Limit**
211
+
212
+ If anyone covered by the insurance policy has a serious medical emergency and the local hospitals can't provide the necessary care, the policy will cover the costs to transport that person to the nearest medical facility that can properly treat them.
213
+
214
+ This could involve using a specialized medical aircraft, a commercial airline, a train, an ambulance, or an air ambulance \- whatever transportation method is best suited for the person's medical needs and availability. This emergency evacuation coverage is only valid within India.
215
+
216
+ **Domiciliary Treatment**
217
+
218
+ If anyone insured under the policy undergoes Domiciliary Hospitalization i.e. medical treatments or procedures taken at home, we will cover the cost of such domiciliary hospitalization.
219
+
220
+
221
+ **Organ Donor Expenses**
222
+
223
+ If anyone insured under the policy requires organ donation, we will cover all the in-patient hospitalization expenses incurred by the person’s organ donor for harvesting of the organ.
224
+
225
+ **Second Opinion**
226
+
227
+ If anyone insured under the policy seeks a second opinion for an alternate evaluation of the diagnosis or treatment, we will cover the expenses associated with seeking the second opinion. This is generally covered for consultation on an out-patient basis, or when the person is advised hospitalization or day care treatment in the first opinion
228
+
229
+ **Basic benefit options**
230
+
231
+ **Worldwide in-patient hospitalization**
232
+
233
+ This benefit allows anyone insured under the policy to get covered for in-patient medical expenses anywhere outside India. Note that ACKO does not provide this coverage for their health insurance.
234
+
235
+ **Unlimited Restore (ACKO Provides this)**
236
+ Consider the situation where you use up all your insurance coverage of Rs 1 Cr for a hospitalization or treatment. If you or a family member needs another treatment for a different medical issue, they may find themselves without insurance coverage. With "Unlimited restore" ACKO will re-fill your insurance coverage by another 1 Cr, so you are never short of funds when seeking new treatment. Note: This benefit is not applicable for an unlimited-sum insured plan
237
+
238
+ **First Notification of Claim (FNOL)**
239
+
240
+ This is an agreement to let the insurance company know within 48 hours of being admitted to the hospital or before being discharged (whichever comes first) if anyone covered needs inpatient hospitalization or day care treatment.
241
+
242
+ Note: ACKO currently does not offer a specific discount on the premium on intimating first notification of loss.
243
+
244
+ **Preferred Providers Network**
245
+
246
+ Anyone covered under the policy agrees to only use hospitals only within the ACKO’s preferred provider network for inpatient hospitalizations or day care treatments.
247
+
248
+ **Waiver of non-payable medical expenses**
249
+
250
+ ACKO will cover certain medical expenses that are usually excluded or considered "non-medical" expenses.
251
+
252
+ However, for ACKO to pay for these expenses, a few conditions apply:
253
+
254
+ 1. The expenses claimed must be reasonable and considered medically necessary for your treatment.
255
+ 2. The insurance company must have already approved and admitted your claim for inpatient hospitalization, day care treatment, or domiciliary (at-home) treatment.
256
+
257
+ **Preventive Health Check-up**
258
+
259
+ ACKO will provide the following preventive health check-ups to anyone insured under the policy if they are above 18 years of Age. The list of tests included in the check-ups are:
260
+
261
+ 1\. Complete Medical Examination by a Medical Practitioner
262
+
263
+ 2\. Complete Blood Count (CBC)
264
+
265
+ 3\. Erythrocyte sedimentation rate (ESR)
266
+
267
+ 4\. Fasting Blood Sugar (FBS)
268
+
269
+ 5\. Electrocardiogram (ECG)
270
+
271
+ 6\. Serum Creatinine,
272
+
273
+ 7\. Serum Gamma-Glutamyl Transferase (GGT)
274
+
275
+ 8\. Serum Total Cholesterol (T Chol)
276
+
277
+ 9\. Serum Triglyceride (S. Trig)
278
+
279
+ **Inflation Protect Sum Insured**
280
+
281
+ ACKO increases your coverage automatically to account for medical inflation, as long as you keep renewing your policy each year. This is to help your insurance coverage keep up with rising medical costs over time
282
+
283
+ The Inflation Protect Sum Insured is calculated as a fixed percentage of your current policy year's base sum insured amount. For example, if your base sum insured is Rs. 5 lakhs and the inflation protection percentage is 10%, you'll get an extra Rs. 50,000 (10% of 5 lakhs) added to your total coverage for the next year.
284
+
285
+ **Initial 30 days waiting period waiver** With this benefit, you get coverage from day one of the new policy instead of having to wait for 30 days before making any claims. Normally, there is an initial 30-day waiting period when you buy a new health insurance policy, meaning the insurance company will not cover any treatments or procedures that occur within the first 30 days of the policy start date. This benefit allows you to make a claim and it will be covered by the insurance, without having to wait for 30 day, even if you need medical treatment right after buying the policy. Note: ACKO covers new born babies only 90 days after birth.
286
+
287
+ **24/7 Doctor-on-call:** ACKO can provide access to consult with a doctor or general medical practitioner anytime of the day or night. it's a convenient way to quickly get general medical guidance from a doctor remotely, 24/7. The consultation can happen through various options like:
288
+
289
+ * Online portal (App, Website)
290
+ * Chat service
291
+ * Call-back service
292
+ * Voice call
293
+ * Video call
294
+ * Note: this does not replace proper in-person diagnosis and treatment from your regular doctor when required.
295
+
296
+ **Family physician**
297
+
298
+ ACKO will assign a qualified general physician as your "Family Physician" who will be located near your residential area. You can easily visit this doctor in-person for consultations and routine medical needs without having to travel far:
299
+
300
+ Some key points:
301
+
302
+ * The assigned doctor will be a general physician, not a specialist for any specific disease.
303
+ * ACKO will try their best to provide at least one Family Physician option within 5 km of your current residential address.
304
+ * If no doctor is available within that radius, they will assign one outside that area or let you choose your own general physician.
305
+ * If you move residences, ACKO will re-assign a new Family Physician near your new address.
306
+
307
+ **Out-Patient Department (OPD) Medical Services**
308
+
309
+ Only ACKO’s corporate health insurance plan covers this benefit, and not their retail health insurance.
310
+
311
+ Outpatient treatment refers to medical services that are provided to patients who do not need to stay overnight in a hospital. This could include doctor's visits, diagnostic tests, minor surgeries, and other medical procedures that can be performed in a clinic or outpatient facility.
312
+ The outpatient department benefit covers certain costs related to outpatient treatment. This includes:
313
+
314
+ 1. Physical Consultation: Visiting a doctor in person for medical advice.
315
+ 2. Prescribed Diagnostics: Tests recommended by your doctor.
316
+ 3. Prescribed Pharmacy: Discounts or coverage for prescribed medicines.
317
+ 4. OPD Treatment: Minor medical procedures done at an outpatient facility.
318
+
319
+ These services are only covered at specified network providers. However, ACKO’s retail won't cover costs for things like cosmetic treatments, routine check-ups, infertility treatments, experimental treatments, weight management programs, dental care (unless due to an accident), and more.
320
+
321
+ **3.4.6 Daily Hospital Cash (HospiCash)**
322
+ Daily Hospital Cash is a benefit where the insured receives a fixed amount of money for each day spent in the hospital due to illness or injury. This cash benefit is intended to help cover miscellaneous expenses incurred during the hospital stay, such as transportation, meals, and other incidental costs that may not be covered by the insurance plan. It provides financial assistance to policyholders to alleviate the financial burden associated with hospitalization.
323
+
324
+ **3.4.7 Accidental Death or Disability Cover**
325
+
326
+ If you have this coverage, and if someone insured under the policy dies or becomes disabled due to an accident during the coverage period, the insurance will pay out. The payout depends on the severity of the injury and is a percentage of the sum insured. For example, if someone dies in an accident, the payout is 100% of the sum insured. If they lose both eyesight, both hands, or both feet, it's also 100%. There are different percentages for various injuries, like losing one eye or one hand, and even for specific finger or toe losses. The insurance also covers permanent disability that prevents the insured person from working.
327
+
328
+ To get the payout for disability, the condition must last at least 180 days with no hope of improvement, confirmed by a medical certificate. If the disability isn't listed, medical advisors will assess it. The total payout cannot exceed the sum insured, and once it reaches 100%, the coverage ends for that person.
329
+
330
+ Note: Limb means hand or foot; Physical separation means the limb is severed at or above the wrist or ankle.
331
+
332
+ | Insured Event | Percentage of the Sum Insured payable |
333
+ | ----- | ----- |
334
+ | 1\. Accidental death | 100% |
335
+ | 2\. Total and irrecoverable loss of sight in both eyes | 100% |
336
+ | 3\. Loss by physical separation or total and permanent loss of use of both hands or both feet | 100% |
337
+ | 4\. Loss by physical separation or total and permanent loss of use of one hand and one foot | 100% |
338
+ | 5\. Total and irrecoverable loss of sight in one eye and loss of a Limb | 100% |
339
+
340
+ | 6\. Total and irrecoverable loss of hearing in both ears and loss of one Limb/ loss of sight in one eye | 100% |
341
+ | :---- | :---- |
342
+ | 7\. Total and irrecoverable loss of hearing in both ears and loss of speech | 100% |
343
+ | 8\. Total and irrecoverable loss of speech and loss of one Limb/ loss of sight in one eye | 100% |
344
+ | 9\. Permanent, total and absolute disability (not falling under any one the above) which results in the Insured Person being unable to engage in any employment or occupation or business for remuneration or profit, of any description whatsoever which results in Loss of Independent | 100% |
345
+ | 10\. Total and irrecoverable loss of sight in one eye | 50% |
346
+ | 11\. Loss of one hand or one foot | 50% |
347
+ | 12\. Loss of all toes \- any one foot | 10% |
348
+ | 13\. Loss of toe great \- any one foot | 5% |
349
+ | 14\. Loss of toes other than great, if more than one toe lost, each | 2% |
350
+ | 15\. Total and irrecoverable loss of hearing in both ears | 50% |
351
+ | 16\. Total and irrecoverable loss of hearing in one ear | 15% |
352
+ | 17\. Total and irrecoverable loss of speech | 50% |
353
+ | 18\. Loss of four fingers and thumb of one hand | 40% |
354
+ | 19\. Loss of four fingers | 35% |
355
+ | 20\. Loss of thumb- both phalanges | 25% |
356
+ | 21\. Loss of thumb- one phalanx | 10% |
357
+ | 22\. Loss of index finger-three phalanges | 10% |
358
+ | 23\. Loss of index finger-two phalanges | 8% |
359
+ | 24\. Loss of index finger-one phalanx | 4% |
360
+ | 25\. Loss of middle/ring/little finger-three phalanges | 6% |
361
+ | 26\. Loss of middle/ring/little finger-two phalanges | 4% |
362
+ | 27\. Loss of middle/ring/little finger-one phalanx | 2% |
363
+
364
+ 3**.4.9 Value Added Services**
365
+
366
+ With this benefit, you'll get access to various health and wellness services to help you stay healthy. These include:
367
+
368
+ 1. e-Consultation: Chat or talk to a doctor online.
369
+ 2. Wellness Coach: Get tips on weight management, fitness, nutrition, and more via email, blogs, or online platforms.
370
+ 3. Lab Services (Home Collection): Have samples collected from home for tests.
371
+ 4. Pharmacy (Home Delivery): Get prescribed medications delivered to your door.
372
+ 5. Vital/Physical Activity Monitoring Services: Connect health devices to track your health online.
373
+ 6. Reminder Notifications: Receive reminders for medical appointments and medication.
374
+ 7. Medical Wallet: Store medical reports online securely.
375
+ 8. Report Aggregation: Get analysis of your health reports.
376
+ 9. Home Care Services: Access nursing, physiotherapy, and more at home if needed.
377
+ 10. Ambulance Arrangement Services: Arrange for ambulance transport when needed.
378
+ 11. Pick-up and Drop Services for Consultation: Get transportation to medical facilities.
379
+ 12. Prioritizing Appointments: Get urgent appointments with healthcare providers.
380
+
381
+ Remember, you might need to pay for some services and it's always best to consult your own doctor before using these services.
382
+
383
+ **Standard Exclusions**
384
+
385
+ We shall not be liable to make any payment under this Policy caused by, arising out of or attributable to any of the following.
386
+
387
+ **Pre-Existing Diseases (PED):**
388
+
389
+ a. Treatment expenses for pre-existing diseases are excluded until a specified number of months of continuous coverage after the policy starts.
390
+
391
+ b. If you increase the sum insured, the exclusion applies again for the increased portion.
392
+
393
+ c. Continuous coverage reduces the waiting period as per IRDAI portability norms.
394
+
395
+ d. Coverage after the waiting period is subject to declaration and acceptance of pre-existing diseases.
396
+
397
+ **Specified Disease/Procedure Waiting Period:**
398
+
399
+ a. Treatment for listed conditions is excluded for a specified number of months after the policy starts, unless due to an accident.
400
+
401
+ b. Sum insured increase resets the waiting period.
402
+
403
+ c. Longer waiting period between PED and specified diseases applies.
404
+ d. Waiting period applies even if the condition is declared later.
405
+
406
+ **30-Day Waiting Period:**
407
+
408
+ a. Treatment for any illness within 30 days of policy start is excluded for certain plans, except for accidents, unless continuous coverage exceeds twelve months.
409
+ b. This waiting period applies to the enhanced sum insured too.
410
+
411
+ **Investigation & Evaluation:**
412
+
413
+ a. Diagnostic admissions are excluded.
414
+ b. Only diagnostic expenses related to current treatment are covered.
415
+
416
+ **Rest Cure, Rehabilitation, and Respite Care:**
417
+ a. Expenses for enforced bed rest, custodial care, and terminal illness care are excluded.
418
+
419
+ **Obesity/Weight Control:**
420
+ Expenses for surgical treatment of obesity are covered only under specific conditions.
421
+
422
+ **Change-of-Gender Treatments:**
423
+ Expenses for treatments to change characteristics of the body to the opposite sex are excluded.
424
+
425
+ **Cosmetic or Plastic Surgery:**
426
+ Cosmetic surgeries are excluded unless for reconstruction following an accident, burn, or cancer.
427
+
428
+ **Excluded Providers:**
429
+ Treatment from excluded providers is not covered, except for life-threatening situations or accidents up to stabilization.
430
+
431
+ **Excluded Establishments:** Treatments in health hydros, nature cure clinics, and spas are excluded.
432
+
433
+ **Dietary Supplements:**
434
+ Expenses for over-the-counter supplements are excluded unless prescribed as part of hospitalization.
435
+
436
+ **Refractive Error:**
437
+ Treatment for refractive errors less than 7.5 dioptres is excluded.
438
+
439
+ **Sterility and Infertility**
440
+ Expenses for contraception, assisted reproduction, gestational surrogacy, and sterilization reversal are excluded.
441
+
442
+ **Maternity:**Treatment expenses related to childbirth, miscarriage, and lawful termination are excluded.
443
+
444
+ **Specific Exclusions**
445
+
446
+ **Permanent Exclusions Set 1 (Can be Waived)**
447
+
448
+ 1. Self-Inflicted Injury: No coverage for injuries caused deliberately by the insured person.
449
+ 2. Breach of Law: Treatment costs from illegal activities are not covered.
450
+ 3. HIV and AIDS: Treatment for HIV and AIDS is excluded.
451
+ 4. Other Sexually Transmitted Diseases: Treatment for other STDs is not covered.
452
+ 5. Hazardous or Adventure Sports: Costs related to professional participation in risky sports are excluded.
453
+ 6. Unproven and Experimental Treatment: Expenses for treatments lacking medical evidence or approval are not covered.
454
+ 7. Treatment Outside India: Except for specific cases, treatment abroad is not covered.
455
+ 8. External Congenital Anomaly or Defects: Treatment for congenital defects is excluded.
456
+ 9. Non-Allopathic or AYUSH Treatment: Costs for treatments outside of allopathic or AYUSH systems are not covered.
457
+ 10. Specific Treatments: Various specific treatments and procedures are excluded unless specifically covered.
458
+ 11. Sleep Disorders: Treatment for sleep-related conditions like sleep apnea is not covered.
459
+ 12. Substance Abuse and Addictions: Costs related to drug or alcohol abuse and addiction treatment are excluded.
460
+ 13. OPD Treatment: Outpatient consultations and tests are not covered unless specified as an add-on benefit or part of admitted claims for inpatient or daycare treatment.
461
+
462
+ **Permanent Exclusions Set 2 (Cannot be Waived)**
463
+
464
+ 1. Suicide: No coverage for injuries or death resulting from suicide.
465
+ 2. Dental Treatment: Costs for dental treatments are excluded unless due to an accident.
466
+ 3. Medically Unnecessary Treatment: Circumcision and cosmetic treatments are not covered.
467
+ 4. Prosthetics and Devices: External devices and cochlear implants are excluded unless due to an accident.
468
+ 5. War and Hazardous Situations: Injuries or illnesses from war, terrorism, or exposure to hazardous substances are not covered.
469
+ 6. Hormonal Therapies: Growth hormone and other hormone therapies are excluded.
470
+
471
+
472
+ **Permanent Exclusions for Personal Accident Add-on Benefit**
473
+
474
+ 1. Pre-existing Conditions: No coverage for injuries or disabilities related to existing health conditions.
475
+ 2. Multiple Claims: Only one claim per policy period is covered, except for specific benefits like emergency ambulance cover.
476
+ 3. Self-Inflicted Harm: Injuries from suicide attempts or intentional self-harm are not covered.
477
+ 4. War and Military Activities: Injuries from war, military operations, or participation in armed forces activities are excluded.
478
+ 5. Sexually Transmitted Diseases: Injuries from sexually transmitted diseases are not covered.
479
+ 6. Congenital Defects: Birth defects or anomalies are excluded.
480
+ 7. Bacterial Infections: Except for pyogenic infections from accidental cuts, bacterial infections are excluded.
481
+ 8. Medical Treatment: Injuries from medical or surgical treatments unrelated to accidents are not covered.
482
+ 9. Hernia: Injuries from hernias are excluded from coverage.
483
+ 10. Change in Profession: Any increase in risk due to a change in profession must be endorsed by the insurer.
484
+ 11. Illegal Activities: Injuries from criminal activities or breaches of law are not covered.
485
+ 12. Substance Abuse: Injuries from substance abuse or addiction are excluded.
486
+ 13. Pregnancy-related Issues: Disabilities or deaths related to childbirth or pregnancy are not covered.
487
+ 14. Flying Activities: Injuries from certain flying activities are excluded, except for commercial airline travel.
488
+ 15. Risky Recreational Activities: Injuries from high-risk recreational activities are not covered.
489
+ 16. Hazardous Work: Injuries from hazardous occupations or activities are excluded.
490
+ 17. Radiation Exposure: Injuries from radiation or nuclear incidents are not covered.
491
+ 18. Chemical and Biological Attacks: Injuries from chemical or biological attacks are excluded.
492
+ 19. Policy-Specific Exclusions: Any condition or treatment specifically excluded in the policy is not covered.
493
+
494
+ **Standard General Terms and Clauses**
495
+ Here's a friendly summary of the standard general terms and clauses:
496
+
497
+ 1. Disclosure of Information: If you don't tell the insurance company important information when you apply, they can cancel your policy and keep your money.
498
+ 2. Condition Precedent: You must follow all the rules in the policy for the insurance company to pay for any claims.
499
+ 3. Material Change: If anything important changes about your health, you need to tell the insurance company, and they might adjust your coverage or cost.
500
+ 4. Records to be Maintained: Keep all your medical records and let the insurance company check them if needed for a claim.
501
+ 5. Complete Discharge: If the insurance company pays you or your hospital for a claim, that's the end of their responsibility for that claim.
502
+ 6. Notice and Communication: All policy-related communication should be in writing, sent to the company's address, or through specified electronic modes.
503
+ 7. Territorial Limit: Your medical treatments must happen in India for the insurance to cover them.
504
+ 8. Multiple Policies: If you have more than one insurance policy, you can choose which one to use for a claim. You can also use this policy to cover what the others don't.
505
+ 9. Fraud: If you lie or cheat to get benefits from the insurance, they can cancel your policy and ask for their money back. But if you can prove you didn't mean to lie, they can't cancel it.
506
+
507
+ **Cancellation**
508
+
509
+ * You can cancel the policy by giving written notice 7 days before. The refund depends on how much of the coverage period is left.
510
+ * If you cancel because of a misrepresentation or fraud, you won't get a refund.
511
+ * The insurance company can also cancel the policy with written notice if there's misrepresentation or fraud, with no refund.
512
+ * This table shows the refund percentages based on when you cancel the policy:
513
+ * If you cancel within the first 25% of the coverage period, you get back 60% of the premium.
514
+ * Cancelling between 25% and 50% of the coverage period gets you 40% back.
515
+ * For cancellations between 50% and 75% of the coverage period, you get 20% back.
516
+ * If you cancel after 75% of the coverage period, you won't receive any refund.
517
+
518
+ **Automatic Change in Coverage:**
519
+
520
+ * If someone covered by the policy passes away, their coverage ends, but others covered can still renew.
521
+ * If the sum insured and bonus are used up, the policy ends, but you can renew it.
522
+
523
+ **Territorial Jurisdiction:**
524
+
525
+ * Any disputes about the policy will be handled by Indian courts and Indian law.
526
+
527
+ **Arbitration:**
528
+
529
+ * If there's a disagreement about how much the insurance should pay, it can go to arbitration.
530
+ * The arbitration decision is necessary before taking legal action against the insurance company.
531
+
532
+ **Migration:** You can switch this policy to another offered by the same company, with benefits like reduced waiting periods based on your previous coverage.
533
+
534
+ 1. **Renewal of Policy:** Your policy can usually be renewed unless there's been fraud or misrepresentation. You need to request renewal and pay before the policy ends. If you miss the renewal date, you have a grace period of 30 days, but coverage won't be active during this time.
535
+ 2. **Premium Payment in Instalments:** If you're paying premiums in installments, you have a 15-day grace period to pay. Coverage won't be active during this grace period. If you don't pay within the grace period, the policy will be canceled.
536
+ 3. **Possibility of Revision of Terms:** The insurance company can change policy terms and premium rates with approval, and they must notify you three months before any changes take effect.
537
+ 4. **Free Look Period:** When you first get the policy, you have 30 days to review it. If you return it during this time and haven't made any claims, you'll get a refund.
538
+ 5. **Endorsements (Changes or edits in Policy)**: Only the insurance company can modify the policy, and any changes will be documented. The policyholder can only be changed at renewal, except in cases of death or moving out of India.
539
+ 6. **Change of Sum Insured**: You can change your sum insured at renewal or anytime with the company's approval. If you increase the sum insured, the waiting period starts again for the increased amount.
540
+ 7. **Terms and Conditions of the Policy**: All terms and conditions in the policy document and schedule are part of the policy and should be read together.
541
+ 8. **Nomination:** You need to nominate someone to receive the claim amount if you pass away. Any changes to the nomination must be communicated to the company in writing.
542
+
543
+ **Specific Terms and Clauses**
544
+
545
+ 1. Policy Changes: Any changes to the policy must be approved in writing by the insurance company by having a user wanting to edit policies consciously
546
+ 2. Providing Information: You need to give all necessary written information to calculate premiums and process claims. You should also inform the insurer of any changes in insured persons.
547
+ 3. Geographical Scope: The policy covers events in India unless specified otherwise. Premiums may vary based on your city of residence.
548
+ 4. Premium Payment: Premium amount is specified in the schedule. You can pay it monthly, quarterly, half-yearly, or yearly.
549
+ 5. Policy Parties: The policy involves you and the insurer only.
550
+ 6. Currency: All payments under the policy will be in Indian Rupees.
551
+
552
+
553
+ **Adding or Removing People from the Policy:**
554
+
555
+ Adding: You can add someone to your insurance anytime during the policy year \- if we approve their application, they pay the premium, and we issue a new policy confirming their inclusion.
556
+
557
+ Removing: You currently cannot remove someone from your insurance in the middle of your policy tenure currently. You have to wait upto 60 days before policy renewal to remove an individual where we will deduct it from your future premium payments, or else if you are within the 30-day free look period, you can cancel the policy to receive a full refund and repurchase it by excluding a member.
558
+
559
+ **No Constructive Notice**
560
+
561
+ We won't consider any information ACKO or our officials have about you or the insured person as an official notice. This means just because we know something doesn't mean we'll act on it unless you tell us directly. You still need to disclose all relevant information, even if we already know about it.
562
+
563
+ **5.2.9 Endorsements**
564
+
565
+ During the policy year, you can request changes to your policy, called endorsements. These changes can be either non-financial, meaning they don't affect the premium, or financial, which can alter the premium you pay.
566
+
567
+ Non-financial endorsements include correcting personal details like name, gender, or date of birth, updating contact information, or changing nominee details.
568
+
569
+ Financial endorsements involve actions like adding or removing insured persons, changing age or date of birth, or updating addresses that may affect the premium. Our underwriting team will review all endorsement requests, and they may ask for more information if needed.
570
+
571
+ **Grace Period & Renewal:** You can renew the policy by paying the renewal premium before the coverage ends or within 30 days after expiry (grace period).
572
+
573
+ **Our Right of Termination:** We can end the policy immediately if there's fraud or non-disclosure of important information by you. We'll notify you in writing. If you don't cooperate or pay premiums within the grace period, we may end the policy. In such cases, any ongoing treatment won't be covered, but we'll cover treatments that started before the policy ended. Cover for an individual will end if they stop paying premiums, the policy ends, they pass away, or they're no longer a dependent.
574
+
575
+ **Portability**
576
+
577
+ You can move your health insurance to another company. If you've had continuous coverage without any breaks under a health insurance plan in India, you'll keep benefits like reduced waiting periods. When you leave your job or group, you can switch to a similar policy we offer, maintaining your benefits. You need to apply for this switch at least 30 days before switching.
578
+
579
+ **Underwriting Loadings & Discounts:** We might adjust your premium based on your health status and medical history declared at enrollment. These adjustments start from the beginning of your policy and apply to renewals too. We'll let you know about any changes, and you'll have seven working days to respond. If you don't, we'll cancel your application and refund your premium.
580
+
581
+ **Operation of Policy & Policy Schedule:** Your policy lasts for the duration mentioned in the schedule. It starts on the Risk Commencement Date and ends on the coverage expiry date.
582
+
583
+ **Other Terms And Conditions**
584
+
585
+ Claims Procedure: You have two options for making a claim,
586
+
587
+ 1. Reimbursement Claim: You have to payout of your own pocket first, post which you can submit your expenses directly to ACKO for reimbursement.
588
+ 2. Cashless Claim: This allows your insurance company to pay the hospital directly instead of you having to pay first and then get reimbursed. You can use your policy at any of our network hospitals for cashless treatment. You can find the list of network hospitals on our app, website, or by contacting customer service.
589
+
590
+ Claims Conditions:
591
+
592
+ * Submit all required documents on time to receive your payout.
593
+ * If you miss the deadline, we might not be able to pay your claim, but exceptions can be made if you had a valid reason.
594
+ * You agree to cooperate with us and allow our representatives to review your medical records.
595
+ * In some cases, a medical examination may be required before we approve your claim, and we'll cover the cost.
596
+
597
+ Claim Registration process:
598
+
599
+ * Notify ACKO directly through the app, email, or call center, or through our partners (TPA) at the hospital cashless desk.
600
+ * Inform us about planned hospitalizations at least 3 days in advance or within 48 hours of emergency hospitalization to avoid claim denial.
601
+ * When opting for cashless treatment, provide your policy card, photo ID proof, and address proof.
602
+ * When filing a claim, provide details like your policy number, insured person's name, hospital details, and nature of the medical issue.
603
+
604
+
605
+ **6.1.3 Cashless claims process**
606
+
607
+ Cashless Claims Process: This allows your insurance company to pay the hospital directly instead of you having to pay first and then get reimbursed. Here's how it works:
608
+
609
+ Pre-Authorization Process:
610
+
611
+ * Planned Hospitalization: Notify the network hospital at least 3 days before admission. They'll send a pre-authorization request to your insurer.
612
+ * Emergency Hospitalization: Notify the hospital within 48 hours of admission. The hospital may start treatment while awaiting approval.
613
+ * If the treatment cost exceeds the authorized limit, the hospital can request an increase.
614
+ * Any changes during hospitalization require a fresh authorization.
615
+
616
+ Discharge Process:
617
+
618
+ * At discharge, the hospital sends the final bill and discharge summary to the insurer.
619
+ * After receiving final authorization, you can leave the hospital.
620
+
621
+ Submission of Claim Documents:
622
+
623
+ * The hospital sends all claim documents to the insurer within 15 days of discharge.
624
+ * Required documents include pre-authorization request, approval letter, and others specified by the insurer.
625
+
626
+ Notes:
627
+
628
+ * Cashless facility covers only medical expenses for covered illnesses or injuries at network hospitals.
629
+ * You may still have to pay for non-admissible expenses, expenses above specified limits, co-payments, or deductibles directly to the hospital.
630
+ * If cashless facility is denied, you'll need to pay for treatment and then submit a reimbursement claim.
631
+
632
+ **6.1.4 Claim Reimbursement Process**
633
+
634
+ If you've opted for reimbursement of medical expenses, here's what you need to do:
635
+
636
+ 1\. Gather Documents:
637
+
638
+ * Fill out and sign the claim form.
639
+ * Provide original discharge summary and original hospital bill with a detailed breakdown of charges.
640
+ * Include original payment receipts for hospital and pharmacy expenses.
641
+ * Attach copies of all laboratory and test reports, medical prescriptions, and any FIR/MLC certificate for accident claims.
642
+ * Complete the NEFT Mandate form for reimbursement.
643
+ * Provide a copy of your Aadhaar card or any other government photo ID and PAN Card.
644
+ * Depending on the type of claim, additional documents may be required, such as a certificate from the treating doctor for domiciliary treatment claims.
645
+
646
+ 2\. Submit Documents:
647
+
648
+ * Send all the necessary claim documents to our branch or head office within 15 days of discharge from the hospital.
649
+ * You can obtain the claim form from any of our branch offices or download it from our website.
650
+
651
+ Additional Notes:
652
+
653
+ * For Accidental Death or Disability Cover claims, additional documents like an attested copy of the death certificate, FIR/Panchanama, post-mortem report, and disability certificate may be required.
654
+ * We may request additional documents or information if needed for further investigation.
655
+ * If there's a delay in notifying or submitting the claim, provide a written explanation for the delay. We'll consider condoning the delay if it's beyond your control.
656
+
657
+ Here below is a simplified breakdown of how we handle claims once they are submitted to us:
658
+
659
+ Scrutiny of Claim Documents:
660
+
661
+ * We'll review your claim form and documents.
662
+ * If any documents are missing or incomplete, we'll inform you and provide reminders.
663
+ * In some cases, we may deduct the claim amount for incomplete documents and settle the claim if it's otherwise valid.
664
+ * For reimbursement claims received after pre-authorization, we'll check if the pre-authorization has been utilized and if all dues are settled with the hospital.
665
+
666
+ Claim Assessment:
667
+
668
+ * We'll pay fixed or indemnity amounts as specified in the policy.
669
+ * Claims will be assessed based on any applicable sub-limits, deductibles, and co-payments.
670
+ * Payment will be made according to the type of claim and benefits covered under the policy.
671
+
672
+ Claims Investigation:
673
+
674
+ * We'll settle or reject claims within 30 days of receiving all necessary documents.
675
+ * Claims requiring investigation will be settled within 30 days from the start of the investigation.
676
+ * Pre and post-hospitalization expenses will be covered based on the merit of the claim.
677
+
678
+ Pre and Post-Hospitalization Claims:
679
+
680
+ * Submit post-hospitalization claim documents within 15 days of completion.
681
+ * Claims for pre and post-hospitalization will be processed based on received documents.
682
+
683
+ Settlement and Repudiation:
684
+
685
+ * Claims will be settled within 30 days of receiving all necessary documents.
686
+ * In case of delay, interest will be paid at a specified rate.
687
+ * You can represent a rejected claim for reconsideration within 15 days.
688
+
689
+ Claim Payment Terms:
690
+
691
+ * Claims will not be paid once the applicable sum insured is exhausted.
692
+ * Payments will be made in India and in Indian rupees.
693
+ * Sum insured will be reduced by the amount paid under the policy.
694
+ * Relapse within 45 days of discharge will be considered part of the same claim.
695
+
696
+ For cashless claims, payment goes directly to the network provider. For reimbursements, payment is made to the insured person or nominee in case of death.
697
+
698
+ **6.2 Discounts**
699
+ Existing Customer Discount:
700
+
701
+ We offer a discount on the policy premium to our existing customers as a discretionary benefit. The discount amount is specified in the policy schedule.
702
+
703
+ Note:
704
+
705
+ * The definition of existing customers.
706
+ * The extent of discount offered.
707
+ * The ongoing continuation of discount at renewal.
708
+
709
+ These aspects are subject to periodic revisions at Acko's discretion.
710
+
711
+ **Grievance Redressal Mechanism**
712
+
713
+ 1) If you or the insured person specifically want to raise a grievance formally, you can reach out to us through:
714
+ * Website: [www.acko.com](http://www.acko.com/)
715
+ * Email: [email protected]
716
+ * Toll-Free Number: 1860 266 2256
717
+ * Courier: Any of our branch offices or corporate office during business hours. You can also approach the grievance cell at any of ACKO’s branches from Monday to Friday.
718
+
719
+ 2) If you're not satisfied ACKO’s response, you can escalate the matter to our Grievance Officer:
720
+ Grievance Redressal Officer
721
+ Acko General Insurance Limited
722
+ 2nd Floor, \#36/5, Hustlehub One East, Somasandrapalya,
723
+ 27th Main Rd, Sector 2, HSR Layout,
724
+ Bengaluru, Karnataka \- 560102
725
726
+ 3) If the response from the Grievance Officer is still unsatisfactory, you may register a complaint with the Integrated Grievance Management System (IGMS) of the IRDAI.
727
+
728
+ 4) If the grievance still remains unresolved, you may approach the Insurance Ombudsman. Details of the Insurance Ombudsman for different regions are available below:
729
+
730
+ 1. Ahmedabad:
731
+ Jeevan Prakash Building, 6th floor, Tilak Marg, Relief Road, Ahmedabad – 380 001\.
732
+ Tel.: 079 \- 25501201/02/05/06
733
734
+ 2. Bengaluru:
735
+ Jeevan Soudha Building, PID No. 57-27-N-19, Ground Floor, 19/19, 24th Main Road, JP Nagar, Ist Phase, Bengaluru – 560 078\.
736
+ Tel.: 080 \- 26652048 / 26652049
737
738
+ 3. Bhopal:
739
+ Janak Vihar Complex, 6, Malviya Nagar, Bhopal(M.P.)-462 003\.
740
+ Tel.: 0755-2769201/9202
741
+ Fax: 0755-2769203
742
743
+ 4. Bhubaneshwar:
744
+ 62, Forest Park, Bhubaneshwar 751 009\.
745
+ Tel.: 0674 \- 2596461 / 2596455
746
+ Fax: 0674-2596429
747
748
+ 5. Chandigarh:
749
+ S.C.O. No.101-103, 2nd Floor, Batra Building, Sector 17-D, Chandigarh-160017.
750
+ Tel.: 0172-2706468/2706196
751
+ Fax: 0172-2708274
752
753
+ 6. Chennai:
754
+ Fathima Akhtar Court, 4th Floor, 453 (old 312), Anna Salai, Teynampet, Chennai-600 018\.
755
+ Tel.: 044-24333668 / 24335284
756
+ Fax: 044-24333664
757
758
+ 7. Delhi:
759
+ 2/2 A, Universal Insurance Building, Asaf Ali Road, New Delhi-110 002\.
760
+ Tel.: 011 \- 23232481 / 23213504
761
+ Fax: 011-23230858
762
763
+ 8. Guwahati:
764
+ "Jeevan Nivesh", 5th Floor, S.S. Road, Guwahati-781 001\.
765
+ Tel.: 0361-2132204/5
766
+ Fax : 0361-2732937
767
768
+ 9. Hyderabad:
769
+ 6-2-46, 1st Floor, Moin Court, A.C. Guards, Lakdi-Ka-Pool, Hyderabad-500 004\.
770
+ Tel: 040-65504123/23312122
771
+ Fax: 040-23376599
772
773
+ 10. Jaipur:
774
+ Ground Floor, Jeevan Nidhi II, Bhawani Singh Road, Jaipur – 302005
775
+ Tel: 0141-2740363
776
777
+ 11. Ernakulam:
778
+ 2nd Floor, Pulinat Bldg., Opp. Cochin Shipyard, M.G. Road, Ernakulam-682 015\.
779
+ Tel: 0484-2358759/2359338
780
+ Fax: 0484-2359336
781
782
+ 12. Kolkata:
783
+ Hindustan Building. Annexe, 4th Floor, C.R. Avenue, Kolkata-700 072\.
784
+ Tel.: 033 \- 22124339 / 22124340
785
+ Fax: 033-22124341
786
787
+ 13. Lucknow:
788
+ 6th Floor, Jeevan Bhawan, Phase-2, Nawal Kishore Road, Hazaratganj, Lucknow-226 001\.
789
+ Tel: 0522 \-2231331/2231330
790
+ Fax: 0522-2231310
791
792
+ 14. Mumbai:
793
+ 3rd Floor, Jeevan Seva Annexe, S.V. Road, Santacruz(W), Mumbai 400054\.
794
+ Tel: 022-26106960/26106552
795
+ Fax: 022-26106052
796
797
+ 15. Pune:
798
+ 3rd Floor, Jeevan Darshan Bldg, C.T.S. No.s. 195 to 198, N.C. Kelkar Road,Narayanpeth, Pune – 411030\.
799
+ Tel: 020-41312555
800
801
+ 16. Noida:
802
+ 4th Floor, Bhagwan Sahai Palace,Main Road, Naya Bans, Sector-15, Distt: Gautam Buddh Nagar – 201301\.
803
+ Tel: 0120- 2514250/52/53
804
805
+ 17. Patna:
806
+ 1st Floor, Kalpana Arcade Building, Bazar Samiti Road, Bahadurpur, Patna – 800006\.
807
+ Tel No: 0612-2680952
808
809
+
810
+ You can find the updated details of Insurance Ombudsman offices on the IRDAI website [www.irdai.gov.in](http://www.irdai.gov.in/), or on the website of the Governing Body of Insurance Council [www.ecoi.co.in](http://www.ecoi.co.in/), or on our company's website at [www.acko.com](http://www.acko.com/).
policy_analyser/data/health_super_topup.md ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ **Super Top-up**
2
+
3
+ A super top-up plan provides additional coverage on top of your existing health insurance policy. It acts as a safety net against high medical costs without having to pay a hefty premium for very high coverage under your main policy.
4
+
5
+ It has a deductible limit, let's say Rs. 5 lakhs. If your total medical expenses in a year exceed this deductible, which your main policy covers, the super top-up kicks in to cover the remaining expenses. For example, if your medical bills are Rs. 8 lakhs and your main policy covers Rs. 5 lakhs, the super top-up will cover the additional Rs. 3 lakhs.
policy_analyser/data/policy_analyser_entities.csv ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ entityId,entityName,entityDesc,expectedOutputFormat
2
+ 0,Sum Insured (SI),"Total amount insured, if any, upto which the policy covers the customer. Extract if mentioned or present in document.",float
3
+ 1,Pre-existing diseases (PED) Waiting period ,"Period after which pre existing diseases are covered by the insurer for the given customer. Consider today's date mentioned previously to evaluate the period left. If the waiting period is exhausted considering today's date, specify its value as 0. Extract if mentioned or present in document.",number of months in float
4
+ 2,30-Day Waiting Period,Is the customer insured in the first 30 days after policy start date? Consider today's date mentioned previously to evaluate whether the period is valid or not. Extract if mentioned or present in document.,true/false
5
+ 3,Specific Illness Waiting Period,Period after which specific illnesses are insured by the policy for the given customer. Consider today's date mentioned previously to evaluate the period left. Extract if mentioned or present in document.,number of months in float
6
+ 4,Maternity waiting period,Period after which the given customer can claim insurance for maternity treatments and reasons like pregnancy. Consider today's date mentioned previously to evaluate the period left. Extract if mentioned or present in document.,number of months in float
7
+ 5,Exclusions,Certain diseases and conditions that are not covered by the insurer for the given customer. Separate the several exclusions with comma in a JSON list. Extract if mentioned or present in document.,string
8
+ 6,Maternity benefits,Does the given customer get any benefits from the insurance policy for maternity related procedures and illnesses? Extract if mentioned or present in document.,true/false
9
+ 7,OPD,"Amount that covers outpatient consultations like physician visits, medicines, etc for the customer. Extract if mentioned or present in document.",float
10
+ 8,Copay,Percentage of total bill that the customer would have to pay themselves. Extract if mentioned or present in document.,float
11
+ 9,Deductible,Amount above which the Sum Insured can be claimed in case of super topup. Extract if mentioned or present in document.,float
12
+ 10,Daycare treatment,Daycare treatments and procedures where hospitalization may be required for <24 hours. Separate multiple treatments with comma in a JSON list. Extract if mentioned or present in document.,string
13
+ 11,Free Health checkup,Are full body health checkups consisting of certain pathology tests covered? Extract if mentioned or present in document.,true/false
14
+ 12,Restoration benefit,Is Sum Insured restored after it gets exhausted for the given customer? Extract if mentioned or present in document.,true/false
15
+ 13,Sublimits,"Max limit of total coverage amount that is mandated to be claimed for certain diseases to the given customer. Extract all sublimits as JSON list of dictionaries of following schema: [{""Sublimit Name"": ""Name of disease"", ""Sublimit Value"": Value of sublimit in float}].
16
+ Extract if mentioned or present in document.",float
17
+ 14,Room rent limit (proportionate deduction),"The upper limit in percentage of total sum insured, on the hospital room rent (proportionate deduction if applicable based on room rent eligibility). Extract if mentioned or present in document.",float or string
18
+ 15,Pre & Post Hospitalization,Are medical expenses leading to and after hospitalization covered by insurer for given customer? Extract if mentioned or present in document.,true/false
19
+ 16,Domiciliary Cover,Is home treatment is covered by the insurer for the given customer? Extract if mentioned or present in document.,true/false
20
+ 17,No claim bonus,Increase in Sum Insured as bonus if the customer has not claimed any insurance in the past. Extract if mentioned or present in document.,float
21
+ 18,Ambulance cover,Amount covered for ambulance transport. Extract if mentioned or present in document.,float
22
+ 19,International coverage,Are treatments administered outside India covered by insurer for the given customer? Extract if mentioned or present in document.,true/false
23
+ 20,Dental treatment,Amount covered for dental treatments and procedures. Extract if mentioned or present in document.,float
24
+ 21,AYUSH treatment,"Are Ayurvedic, Homeopathic or other alternative treatments covered by insurer for given customer? Extract if mentioned or present in document.",true/false
25
+ 22,Health incentives,Are benefits for healthy habits offered to the given customer? Extract if mentioned or present in document.,true/false
26
+ 23,Wellness Services,Are complementary services and benefits offered to the given customer? Extract if mentioned or present in document.,true/false
27
+ 24,Consumables/ Non medical expenses,"Are expenses related to consumables like syringes, bandages, etc in the course of treatment convered for the given customer? Extract if mentioned or present in document.",true/false
28
+ 25,Hospital Cash,Are amounts reimbursed to the customer that they have paid to the hospital? Extract if mentioned or present in document.,true/false
29
+ 26,Policy Holder's Details,"Details of primary policy holder as a JSON dictionary of the following schema : {""Name"": ""Name of primary policy holder as a string"", ""Age"": ""Age of primary policy holder in float"", ""Date of birth"": ""Date of birth of primary policy holder in dd/mm/yyyy format"", ""Address"": ""Residential address of primary policy holder"", ""Email Address"": ""Email address of primary policy holder"", ""Phone Number"": ""Phone number of primary policy holder in integer or string"", ""PAN Card Number"": ""Permanent Account Number (PAN Number) of primary policy holder"", ""City"": ""City of residence of primary policy holder""}",JSON dictionary
30
+ 27,Policy Details,"Details of the policy issued to customer as a JSON dictionary of the following schema : {""Insurance Company Name"": ""Name of the insurance company that has issued the given insurance policy"", ""Policy Name"": ""Name of the given insurance policy as string"", ""Policy Number"": ""Policy number of the given insurance policy"", ""Issue Date"": ""Date on which the policy was issued to the policy holder in dd/mm/yyy format"", ""Start Date"": ""Date on which policy activated in dd/mm/yyyy format"", ""Expiry Date"": ""Date on which policy expires in dd/mm/yyyy format"", ""Renewal Date"": ""Date on which policy was renewed in dd/mm/yyyy format""}",JSON dictionary
31
+ 28,Insured Persons details,"Details of insured persons as a JSON list of dictionaries of the following schema : [{""Name"": ""Name of Insured person"", ""Age"": ""Age of Insured person in float"", ""Date of birth"": ""Date of birth of Insured person in dd/mm/yyyy format"", ""Gender"": ""Gender of Insured person, one of [Male, Female, Other]"", ""Relation"": ""Relationship of Insured person with policy holder"", ""Pre-existing Diseases"": ""Pre-existing diseases that Insured person has. Separate several diseases with comma in JSON list""}]",JSON list
policy_analyser/prompts/analysis.txt CHANGED
@@ -4,6 +4,7 @@ Apply the following rules enclosed in triple backticks on the policy to analyse
4
  Make sure you are consider values for analysis factors on basis of customer's selected insurance plan when multiple plans are described in the policy terms.
5
  Make sure all factors appear in one of Good, Average or Bad only. No factor should be repeated in more than 1 verdict table.
6
  Note : Top cities = [Mumbai, Delhi, Bangalore, Chennai, Hyderabad, Gurgaon, Pune]
 
7
  ```
8
  {{rules}}
9
  ```
 
4
  Make sure you are consider values for analysis factors on basis of customer's selected insurance plan when multiple plans are described in the policy terms.
5
  Make sure all factors appear in one of Good, Average or Bad only. No factor should be repeated in more than 1 verdict table.
6
  Note : Top cities = [Mumbai, Delhi, Bangalore, Chennai, Hyderabad, Gurgaon, Pune]
7
+ Parameters : ["Sum Insured", "Adults", "Children", "Is Top City", "Room Rent Limit", "Deductible", "Sublimits", "Copay", "PED Waiting Period", "Thirty Day Waiting Period", "Specific Illness Waiting Period", "Maternity Benefits"]
8
  ```
9
  {{rules}}
10
  ```
policy_analyser/prompts/health/rules.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  IF Adults == 1:
2
  IF Is_Top_City:
3
  IF Sum_Insured >= 2500000:
 
1
+ IF Insured_Address_City in Top_Cities:
2
+ Is_Top_City = true
3
+ ELSE:
4
+ Is_Top_City = false
5
  IF Adults == 1:
6
  IF Is_Top_City:
7
  IF Sum_Insured >= 2500000: