-- Assessment Checklist import with per-criterion Remarks fields
-- Source: ASSESSMENT CHECK LIST(1).xlsx
-- 31 sections, 470 criteria, 940 fields (criterion + remarks)
-- Safe to run against the existing database: does not DROP tables and avoids duplicate checklist/section/field keys.
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS=0;
START TRANSACTION;

-- 1. Checklist type
INSERT INTO checklist_types (name, slug, description, status, sort_order) SELECT 'Assessment Checklist','assessment-checklist','Hospital assessment checklist',1,3 WHERE NOT EXISTS (SELECT 1 FROM checklist_types WHERE slug='assessment-checklist');
SET @assessment_id := (SELECT id FROM checklist_types WHERE slug='assessment-checklist' LIMIT 1);

INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'Statutory Compliance','statutory-compliance',NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='statutory-compliance');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'MOU','mou',NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mou');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'HR','hr',NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hr');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'OPD','opd',NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='opd');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'EMERGENCY','emergency',NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='emergency');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'ICU','icu',NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='icu');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'HDU','hdu',NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hdu');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'WARD','ward',NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ward');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'LABORATORY & SAMPLE COLLECTION','laboratory-sample-collection',NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='laboratory-sample-collection');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'OT','ot',NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ot');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'CSSD','cssd',NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='cssd');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'PHARMACY','pharmacy',NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='pharmacy');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'RADIOLOGY','radiology',NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='radiology');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'HOUSEKEEPING','housekeeping',NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='housekeeping');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'BMW','bmw',NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='bmw');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'FACILITY CHECK LIST','facility-check-list',NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='facility-check-list');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'MRD','mrd',NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mrd');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'Hemodialysis','hemodialysis',NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hemodialysis');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'BME','bme',NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='bme');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'Gas Manifold','gas-manifold',NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='gas-manifold');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'Ambulance Services','ambulance-services',NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ambulance-services');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'SIGNAGE','signage',NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='signage');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'TRAINING','training',NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='training');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'REGISTER','register',NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='register');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'IPD FILE','ipd-file',NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ipd-file');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'CLINICAL AUDIT','clinical-audit',NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='clinical-audit');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'INCIDENT REPORTING','incident-reporting',NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='incident-reporting');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'MOCK DRILL REPORTING','mock-drill-reporting',NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mock-drill-reporting');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'Committee with MOM','committee-with-mom',NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='committee-with-mom');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'INDICATOR','indicator',NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='indicator');
INSERT INTO checklist_sections (checklist_type_id,parent_id,name,slug,description,sort_order,status) SELECT @assessment_id,NULL,'OTHER','other',NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='other');

-- 2. Criteria and per-criterion Remarks textarea
-- Section: Statutory Compliance
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='statutory-compliance' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Legal Tracker','legal_tracker_1','select','Assessment criterion 1 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='legal_tracker_1');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_1','textarea','Remarks for assessment criterion 1: Legal Tracker','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_1');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Legal File','legal_file_2','select','Assessment criterion 2 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='legal_file_2');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_2','textarea','Remarks for assessment criterion 2: Legal File','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_2');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'NABH accreditation  certificate if any','nabh_accreditation_certificate_if_any_3','select','Assessment criterion 3 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nabh_accreditation_certificate_if_any_3');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_3','textarea','Remarks for assessment criterion 3: NABH accreditation  certificate if any','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_3');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Centre registered under/with which of the State Health Authorities : CMO / Nursing home registration','centre_registered_under_with_which_of_the_state_health_authorities_cmo_nursing_home_registration_4','select','Assessment criterion 4 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='centre_registered_under_with_which_of_the_state_health_authorities_cmo_nursing_home_registration_4');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_4','textarea','Remarks for assessment criterion 4: Centre registered under/with which of the State Health Authorities : CMO / Nursing home registration','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_4');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Type of Ownership document','type_of_ownership_document_5','select','Assessment criterion 5 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='type_of_ownership_document_5');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_5','textarea','Remarks for assessment criterion 5: Type of Ownership document','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_5');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Recognition by other scheme','recognition_by_other_scheme_6','select','Assessment criterion 6 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='recognition_by_other_scheme_6');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_6','textarea','Remarks for assessment criterion 6: Recognition by other scheme','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_6');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'outline diagram (Blue print) showing plan of Hospital Building plan and architects diagram of Hospital','outline_diagram_blue_print_showing_plan_of_hospital_building_plan_and_architects_diagram_of_hospital_7','select','Assessment criterion 7 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='outline_diagram_blue_print_showing_plan_of_hospital_building_plan_and_architects_diagram_of_hospital_7');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_7','textarea','Remarks for assessment criterion 7: outline diagram (Blue print) showing plan of Hospital Building plan and architects diagram of Hospital','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_7');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Sanctioned beds letter','sanctioned_beds_letter_8','select','Assessment criterion 8 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='sanctioned_beds_letter_8');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_8','textarea','Remarks for assessment criterion 8: Sanctioned beds letter','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_8');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'State Pollution Control Board (SPCB) Consent to generate Bio-Medical Waste (BMW)','state_pollution_control_board_spcb_consent_to_generate_bio_medical_waste_bmw_9','select','Assessment criterion 9 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='state_pollution_control_board_spcb_consent_to_generate_bio_medical_waste_bmw_9');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_9','textarea','Remarks for assessment criterion 9: State Pollution Control Board (SPCB) Consent to generate Bio-Medical Waste (BMW)','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_9');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MoU with BMW collecting Agency','mou_with_bmw_collecting_agency_10','select','Assessment criterion 10 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mou_with_bmw_collecting_agency_10');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_10','textarea','Remarks for assessment criterion 10: MoU with BMW collecting Agency','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_10');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pollution Control Board License for Air Pollution','pollution_control_board_license_for_air_pollution_11','select','Assessment criterion 11 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pollution_control_board_license_for_air_pollution_11');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_11','textarea','Remarks for assessment criterion 11: Pollution Control Board License for Air Pollution','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_11');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pollution Control Board License for Water Pollution','pollution_control_board_license_for_water_pollution_12','select','Assessment criterion 12 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pollution_control_board_license_for_water_pollution_12');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_12','textarea','Remarks for assessment criterion 12: Pollution Control Board License for Water Pollution','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_12');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire NOC from respective competent authority','fire_noc_from_respective_competent_authority_13','select','Assessment criterion 13 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_noc_from_respective_competent_authority_13');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_13','textarea','Remarks for assessment criterion 13: Fire NOC from respective competent authority','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_13');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Registration under PC-PNDT Act','registration_under_pc_pndt_act_14','select','Assessment criterion 14 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='registration_under_pc_pndt_act_14');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_14','textarea','Remarks for assessment criterion 14: Registration under PC-PNDT Act','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_14');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Registration under MTP Act','registration_under_mtp_act_15','select','Assessment criterion 15 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='registration_under_mtp_act_15');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_15','textarea','Remarks for assessment criterion 15: Registration under MTP Act','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_15');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Blood Bank License','blood_bank_license_16','select','Assessment criterion 16 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_bank_license_16');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_16','textarea','Remarks for assessment criterion 16: Blood Bank License','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_16');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Blood Storage Centre License','blood_storage_centre_license_17','select','Assessment criterion 17 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_storage_centre_license_17');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_17','textarea','Remarks for assessment criterion 17: Blood Storage Centre License','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_17');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pharmacy License','pharmacy_license_18','select','Assessment criterion 18 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pharmacy_license_18');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_18','textarea','Remarks for assessment criterion 18: Pharmacy License','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_18');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Narcotic Drugs and Psychotropic Substances (NDPS) license','narcotic_drugs_and_psychotropic_substances_ndps_license_19','select','Assessment criterion 19 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='narcotic_drugs_and_psychotropic_substances_ndps_license_19');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_19','textarea','Remarks for assessment criterion 19: Narcotic Drugs and Psychotropic Substances (NDPS) license','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_19');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Fixed X-Ray','aerb_consent_for_fixed_x_ray_20','select','Assessment criterion 20 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_fixed_x_ray_20');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_20','textarea','Remarks for assessment criterion 20: AERB Consent for Fixed X-Ray','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_20');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Mobile X-Ray','aerb_consent_for_mobile_x_ray_21','select','Assessment criterion 21 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_mobile_x_ray_21');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_21','textarea','Remarks for assessment criterion 21: AERB Consent for Mobile X-Ray','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_21');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Radiography & Fluoroscopy','aerb_consent_for_radiography_fluoroscopy_22','select','Assessment criterion 22 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_radiography_fluoroscopy_22');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_22','textarea','Remarks for assessment criterion 22: AERB Consent for Radiography & Fluoroscopy','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_22');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Dental X-Ray (Hand Held)','aerb_consent_for_dental_x_ray_hand_held_23','select','Assessment criterion 23 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,45,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_dental_x_ray_hand_held_23');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_23','textarea','Remarks for assessment criterion 23: AERB Consent for Dental X-Ray (Hand Held)','Enter remarks or observations for this criterion.',NULL,0,NULL,46,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_23');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Dental X-Ray (Intra Oral)','aerb_consent_for_dental_x_ray_intra_oral_24','select','Assessment criterion 24 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,47,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_dental_x_ray_intra_oral_24');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_24','textarea','Remarks for assessment criterion 24: AERB Consent for Dental X-Ray (Intra Oral)','Enter remarks or observations for this criterion.',NULL,0,NULL,48,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_24');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for OPG','aerb_consent_for_opg_25','select','Assessment criterion 25 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,49,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_opg_25');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_25','textarea','Remarks for assessment criterion 25: AERB Consent for OPG','Enter remarks or observations for this criterion.',NULL,0,NULL,50,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_25');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for CT Scan','aerb_consent_for_ct_scan_26','select','Assessment criterion 26 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,51,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_ct_scan_26');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_26','textarea','Remarks for assessment criterion 26: AERB Consent for CT Scan','Enter remarks or observations for this criterion.',NULL,0,NULL,52,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_26');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Dental Core Beam CT (CBCT)','aerb_consent_for_dental_core_beam_ct_cbct_27','select','Assessment criterion 27 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,53,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_dental_core_beam_ct_cbct_27');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_27','textarea','Remarks for assessment criterion 27: AERB Consent for Dental Core Beam CT (CBCT)','Enter remarks or observations for this criterion.',NULL,0,NULL,54,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_27');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Mammography','aerb_consent_for_mammography_28','select','Assessment criterion 28 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,55,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_mammography_28');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_28','textarea','Remarks for assessment criterion 28: AERB Consent for Mammography','Enter remarks or observations for this criterion.',NULL,0,NULL,56,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_28');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Bone Densitometer (BMD)','aerb_consent_for_bone_densitometer_bmd_29','select','Assessment criterion 29 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,57,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_bone_densitometer_bmd_29');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_29','textarea','Remarks for assessment criterion 29: AERB Consent for Bone Densitometer (BMD)','Enter remarks or observations for this criterion.',NULL,0,NULL,58,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_29');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for C-Arm','aerb_consent_for_c_arm_30','select','Assessment criterion 30 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,59,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_c_arm_30');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_30','textarea','Remarks for assessment criterion 30: AERB Consent for C-Arm','Enter remarks or observations for this criterion.',NULL,0,NULL,60,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_30');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Interventional Radiology/Cath Lab','aerb_consent_for_interventional_radiology_cath_lab_31','select','Assessment criterion 31 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,61,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_interventional_radiology_cath_lab_31');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_31','textarea','Remarks for assessment criterion 31: AERB Consent for Interventional Radiology/Cath Lab','Enter remarks or observations for this criterion.',NULL,0,NULL,62,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_31');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Radiotherapy Equipment','aerb_consent_for_radiotherapy_equipment_32','select','Assessment criterion 32 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,63,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_radiotherapy_equipment_32');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_32','textarea','Remarks for assessment criterion 32: AERB Consent for Radiotherapy Equipment','Enter remarks or observations for this criterion.',NULL,0,NULL,64,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_32');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AERB Consent for Nuclear Medicine Equipment','aerb_consent_for_nuclear_medicine_equipment_33','select','Assessment criterion 33 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,65,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='aerb_consent_for_nuclear_medicine_equipment_33');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_33','textarea','Remarks for assessment criterion 33: AERB Consent for Nuclear Medicine Equipment','Enter remarks or observations for this criterion.',NULL,0,NULL,66,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_33');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Registration of Radiation Safety Officer with AERB','registration_of_radiation_safety_officer_with_aerb_34','select','Assessment criterion 34 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,67,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='registration_of_radiation_safety_officer_with_aerb_34');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_34','textarea','Remarks for assessment criterion 34: Registration of Radiation Safety Officer with AERB','Enter remarks or observations for this criterion.',NULL,0,NULL,68,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_34');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Organ Transplant','organ_transplant_35','select','Assessment criterion 35 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,69,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='organ_transplant_35');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_35','textarea','Remarks for assessment criterion 35: Organ Transplant','Enter remarks or observations for this criterion.',NULL,0,NULL,70,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_35');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'RSO Registration Level 1 , Level 2 , Level 3','rso_registration_level_1_level_2_level_3_36','select','Assessment criterion 36 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,71,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='rso_registration_level_1_level_2_level_3_36');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_36','textarea','Remarks for assessment criterion 36: RSO Registration Level 1 , Level 2 , Level 3','Enter remarks or observations for this criterion.',NULL,0,NULL,72,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_36');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Explosives license for O2 tank (If there is Liquid Oxygen storage tank)','explosives_license_for_o2_tank_if_there_is_liquid_oxygen_storage_tank_37','select','Assessment criterion 37 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,73,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='explosives_license_for_o2_tank_if_there_is_liquid_oxygen_storage_tank_37');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_37','textarea','Remarks for assessment criterion 37: Explosives license for O2 tank (If there is Liquid Oxygen storage tank)','Enter remarks or observations for this criterion.',NULL,0,NULL,74,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_37');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Denatured Spirit License','denatured_spirit_license_38','select','Assessment criterion 38 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,75,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='denatured_spirit_license_38');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_38','textarea','Remarks for assessment criterion 38: Denatured Spirit License','Enter remarks or observations for this criterion.',NULL,0,NULL,76,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_38');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Registration under Mental Health Act for Inpatient Psychiatry Services','registration_under_mental_health_act_for_inpatient_psychiatry_services_39','select','Assessment criterion 39 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,77,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='registration_under_mental_health_act_for_inpatient_psychiatry_services_39');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_39','textarea','Remarks for assessment criterion 39: Registration under Mental Health Act for Inpatient Psychiatry Services','Enter remarks or observations for this criterion.',NULL,0,NULL,78,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_39');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Registration with National Registry of Assisted Reproductive Technology (ART) Clinics for Reproductive Medicine and IVF services','registration_with_national_registry_of_assisted_reproductive_technology_art_clinics_for_reproductive_medicine_and_ivf_services_40','select','Assessment criterion 40 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,79,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='registration_with_national_registry_of_assisted_reproductive_technology_art_clinics_for_reproductive_medicine_and_ivf_services_40');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_40','textarea','Remarks for assessment criterion 40: Registration with National Registry of Assisted Reproductive Technology (ART) Clinics for Reproductive Medicine and IVF services','Enter remarks or observations for this criterion.',NULL,0,NULL,80,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_40');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'TLD Badge - As per requirment','tld_badge_as_per_requirment_41','select','Assessment criterion 41 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,81,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='tld_badge_as_per_requirment_41');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_41','textarea','Remarks for assessment criterion 41: TLD Badge - As per requirment','Enter remarks or observations for this criterion.',NULL,0,NULL,82,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_41');

-- Section: MOU
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mou' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MOU Tracker','mou_tracker_42','select','Assessment criterion 42 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mou_tracker_42');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_42','textarea','Remarks for assessment criterion 42: MOU Tracker','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_42');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MOU File','mou_file_43','select','Assessment criterion 43 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mou_file_43');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_43','textarea','Remarks for assessment criterion 43: MOU File','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_43');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical Waste Management MOU','biomedical_waste_management_mou_44','select','Assessment criterion 44 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_management_mou_44');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_44','textarea','Remarks for assessment criterion 44: Biomedical Waste Management MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_44');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiology/Imaging Services MOU','radiology_imaging_services_mou_45','select','Assessment criterion 45 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiology_imaging_services_mou_45');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_45','textarea','Remarks for assessment criterion 45: Radiology/Imaging Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_45');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Blood Bank MOU','blood_bank_mou_46','select','Assessment criterion 46 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_bank_mou_46');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_46','textarea','Remarks for assessment criterion 46: Blood Bank MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_46');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Laundry Services MOU','laundry_services_mou_47','select','Assessment criterion 47 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='laundry_services_mou_47');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_47','textarea','Remarks for assessment criterion 47: Laundry Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_47');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ambulance Services MOU','ambulance_services_mou_48','select','Assessment criterion 48 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ambulance_services_mou_48');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_48','textarea','Remarks for assessment criterion 48: Ambulance Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_48');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment AMC / CMC Agreement','equipment_amc_cmc_agreement_49','select','Assessment criterion 49 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_amc_cmc_agreement_49');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_49','textarea','Remarks for assessment criterion 49: Equipment AMC / CMC Agreement','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_49');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Calibration Services MOU','calibration_services_mou_50','select','Assessment criterion 50 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='calibration_services_mou_50');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_50','textarea','Remarks for assessment criterion 50: Calibration Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_50');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dietary / Kitchen / Food Supply Services MOU','dietary_kitchen_food_supply_services_mou_51','select','Assessment criterion 51 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dietary_kitchen_food_supply_services_mou_51');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_51','textarea','Remarks for assessment criterion 51: Dietary / Kitchen / Food Supply Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_51');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Housekeeping / Cleaning Services MOU','housekeeping_cleaning_services_mou_52','select','Assessment criterion 52 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='housekeeping_cleaning_services_mou_52');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_52','textarea','Remarks for assessment criterion 52: Housekeeping / Cleaning Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_52');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Security Services MOU','security_services_mou_53','select','Assessment criterion 53 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='security_services_mou_53');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_53','textarea','Remarks for assessment criterion 53: Security Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_53');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pest Control Services MOU','pest_control_services_mou_54','select','Assessment criterion 54 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pest_control_services_mou_54');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_54','textarea','Remarks for assessment criterion 54: Pest Control Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_54');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Safety / Fire Equipment Maintenance MOU','fire_safety_fire_equipment_maintenance_mou_55','select','Assessment criterion 55 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_safety_fire_equipment_maintenance_mou_55');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_55','textarea','Remarks for assessment criterion 55: Fire Safety / Fire Equipment Maintenance MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_55');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Medical Gas Pipeline / Oxygen Supply MOU','medical_gas_pipeline_oxygen_supply_mou_56','select','Assessment criterion 56 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='medical_gas_pipeline_oxygen_supply_mou_56');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_56','textarea','Remarks for assessment criterion 56: Medical Gas Pipeline / Oxygen Supply MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_56');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hazardous Waste / E‑Waste Disposal MOU','hazardous_waste_e_waste_disposal_mou_57','select','Assessment criterion 57 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hazardous_waste_e_waste_disposal_mou_57');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_57','textarea','Remarks for assessment criterion 57: Hazardous Waste / E‑Waste Disposal MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_57');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Sterilization / CSSD/ETO Services MOU','sterilization_cssd_eto_services_mou_58','select','Assessment criterion 58 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='sterilization_cssd_eto_services_mou_58');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_58','textarea','Remarks for assessment criterion 58: Sterilization / CSSD/ETO Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_58');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pharmacy Supply / Drug Vendor Agreement','pharmacy_supply_drug_vendor_agreement_59','select','Assessment criterion 59 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pharmacy_supply_drug_vendor_agreement_59');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_59','textarea','Remarks for assessment criterion 59: Pharmacy Supply / Drug Vendor Agreement','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_59');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Referral Hospital / Higher Centre MOU','referral_hospital_higher_centre_mou_60','select','Assessment criterion 60 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='referral_hospital_higher_centre_mou_60');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_60','textarea','Remarks for assessment criterion 60: Referral Hospital / Higher Centre MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_60');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Organ / Tissue / Eye Bank MOU','organ_tissue_eye_bank_mou_61','select','Assessment criterion 61 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='organ_tissue_eye_bank_mou_61');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_61','textarea','Remarks for assessment criterion 61: Organ / Tissue / Eye Bank MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_61');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dialysis Services MOU','dialysis_services_mou_62','select','Assessment criterion 62 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dialysis_services_mou_62');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_62','textarea','Remarks for assessment criterion 62: Dialysis Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_62');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Mortuary Services MOU','mortuary_services_mou_63','select','Assessment criterion 63 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mortuary_services_mou_63');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_63','textarea','Remarks for assessment criterion 63: Mortuary Services MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_63');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Water Testing / RO Plant Maintenance MOU','water_testing_ro_plant_maintenance_mou_64','select','Assessment criterion 64 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,45,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='water_testing_ro_plant_maintenance_mou_64');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_64','textarea','Remarks for assessment criterion 64: Water Testing / RO Plant Maintenance MOU','Enter remarks or observations for this criterion.',NULL,0,NULL,46,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_64');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'STP / Environmental Services Agreement','stp_environmental_services_agreement_65','select','Assessment criterion 65 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,47,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='stp_environmental_services_agreement_65');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_65','textarea','Remarks for assessment criterion 65: STP / Environmental Services Agreement','Enter remarks or observations for this criterion.',NULL,0,NULL,48,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_65');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IT / HIS Support Agreement','it_his_support_agreement_66','select','Assessment criterion 66 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,49,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='it_his_support_agreement_66');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_66','textarea','Remarks for assessment criterion 66: IT / HIS Support Agreement','Enter remarks or observations for this criterion.',NULL,0,NULL,50,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_66');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'External Consultant / Specialist Doctor Agreement','external_consultant_specialist_doctor_agreement_67','select','Assessment criterion 67 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,51,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='external_consultant_specialist_doctor_agreement_67');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_67','textarea','Remarks for assessment criterion 67: External Consultant / Specialist Doctor Agreement','Enter remarks or observations for this criterion.',NULL,0,NULL,52,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_67');

-- Section: HR
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hr' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Quality Manager','quality_manager_68','select','Assessment criterion 68 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='quality_manager_68');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_68','textarea','Remarks for assessment criterion 68: Quality Manager','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_68');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'ICN','icn_69','select','Assessment criterion 69 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='icn_69');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_69','textarea','Remarks for assessment criterion 69: ICN','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_69');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Scope of services','scope_of_services_70','select','Assessment criterion 70 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='scope_of_services_70');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_70','textarea','Remarks for assessment criterion 70: Scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_70');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Consultant','consultant_71','select','Assessment criterion 71 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='consultant_71');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_71','textarea','Remarks for assessment criterion 71: Consultant','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_71');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Resident Medical Officers','resident_medical_officers_72','select','Assessment criterion 72 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='resident_medical_officers_72');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_72','textarea','Remarks for assessment criterion 72: Resident Medical Officers','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_72');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Non MBBS Doctor','non_mbbs_doctor_73','select','Assessment criterion 73 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='non_mbbs_doctor_73');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_73','textarea','Remarks for assessment criterion 73: Non MBBS Doctor','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_73');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Nursing staff','nursing_staff_74','select','Assessment criterion 74 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nursing_staff_74');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_74','textarea','Remarks for assessment criterion 74: Nursing staff','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_74');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Paramedics','paramedics_75','select','Assessment criterion 75 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='paramedics_75');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_75','textarea','Remarks for assessment criterion 75: Paramedics','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_75');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Administrative and Supportive staff','administrative_and_supportive_staff_76','select','Assessment criterion 76 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='administrative_and_supportive_staff_76');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_76','textarea','Remarks for assessment criterion 76: Administrative and Supportive staff','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_76');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'HR File ( Employees file as per check list )','hr_file_employees_file_as_per_check_list_77','select','Assessment criterion 77 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hr_file_employees_file_as_per_check_list_77');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_77','textarea','Remarks for assessment criterion 77: HR File ( Employees file as per check list )','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_77');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Legal Documents File As per check list','legal_documents_file_as_per_check_list_78','select','Assessment criterion 78 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='legal_documents_file_as_per_check_list_78');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_78','textarea','Remarks for assessment criterion 78: Legal Documents File As per check list','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_78');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Clinical Services as per NABH data sheet','clinical_services_as_per_nabh_data_sheet_79','select','Assessment criterion 79 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='clinical_services_as_per_nabh_data_sheet_79');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_79','textarea','Remarks for assessment criterion 79: Clinical Services as per NABH data sheet','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_79');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Support Services as per NABH data sheet','support_services_as_per_nabh_data_sheet_80','select','Assessment criterion 80 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='support_services_as_per_nabh_data_sheet_80');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_80','textarea','Remarks for assessment criterion 80: Support Services as per NABH data sheet','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_80');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Code of conduct for staff','code_of_conduct_for_staff_81','select','Assessment criterion 81 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='code_of_conduct_for_staff_81');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_81','textarea','Remarks for assessment criterion 81: Code of conduct for staff','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_81');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CONSULTANT','consultant_82','select','Assessment criterion 82 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='consultant_82');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_82','textarea','Remarks for assessment criterion 82: CONSULTANT','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_82');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'GDMO','gdmo_83','select','Assessment criterion 83 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='gdmo_83');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_83','textarea','Remarks for assessment criterion 83: GDMO','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_83');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Nursing','nursing_84','select','Assessment criterion 84 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nursing_84');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_84','textarea','Remarks for assessment criterion 84: Nursing','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_84');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ambulance','ambulance_85','select','Assessment criterion 85 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ambulance_85');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_85','textarea','Remarks for assessment criterion 85: Ambulance','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_85');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Paramedicals','paramedicals_86','select','Assessment criterion 86 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='paramedicals_86');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_86','textarea','Remarks for assessment criterion 86: Paramedicals','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_86');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'List of trainings conducted in the past year with dates','list_of_trainings_conducted_in_the_past_year_with_dates_87','select','Assessment criterion 87 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='list_of_trainings_conducted_in_the_past_year_with_dates_87');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_87','textarea','Remarks for assessment criterion 87: List of trainings conducted in the past year with dates','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_87');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Sample record of one training including attendance sheet, pre-post-tests, feedbacks and pictures (if any)','sample_record_of_one_training_including_attendance_sheet_pre_post_tests_feedbacks_and_pictures_if_any_88','select','Assessment criterion 88 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='sample_record_of_one_training_including_attendance_sheet_pre_post_tests_feedbacks_and_pictures_if_any_88');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_88','textarea','Remarks for assessment criterion 88: Sample record of one training including attendance sheet, pre-post-tests, feedbacks and pictures (if any)','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_88');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Checklist for personal files','checklist_for_personal_files_89','select','Assessment criterion 89 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='checklist_for_personal_files_89');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_89','textarea','Remarks for assessment criterion 89: Checklist for personal files','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_89');

-- Section: OPD
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='opd' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient registration (UHID) system available','patient_registration_uhid_system_available_90','select','Assessment criterion 90 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_registration_uhid_system_available_90');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_90','textarea','Remarks for assessment criterion 90: Patient registration (UHID) system available','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_90');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OPD Initial Assessment form/ prescription form','opd_initial_assessment_form_prescription_form_91','select','Assessment criterion 91 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='opd_initial_assessment_form_prescription_form_91');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_91','textarea','Remarks for assessment criterion 91: OPD Initial Assessment form/ prescription form','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_91');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OPD Master Register','opd_master_register_92','select','Assessment criterion 92 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='opd_master_register_92');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_92','textarea','Remarks for assessment criterion 92: OPD Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_92');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OPD timings displayed','opd_timings_displayed_93','select','Assessment criterion 93 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='opd_timings_displayed_93');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_93','textarea','Remarks for assessment criterion 93: OPD timings displayed','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_93');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of scope of services','signage_of_scope_of_services_94','select','Assessment criterion 94 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_scope_of_services_94');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_94','textarea','Remarks for assessment criterion 94: Signage of scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_94');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Consent (if procedure) available','consent_if_procedure_available_95','select','Assessment criterion 95 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='consent_if_procedure_available_95');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_95','textarea','Remarks for assessment criterion 95: Consent (if procedure) available','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_95');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_96','select','Assessment criterion 96 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_96');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_96','textarea','Remarks for assessment criterion 96: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_96');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_97','select','Assessment criterion 97 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_97');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_97','textarea','Remarks for assessment criterion 97: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_97');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Availability of crash cart nearby','availability_of_crash_cart_nearby_98','select','Assessment criterion 98 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='availability_of_crash_cart_nearby_98');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_98','textarea','Remarks for assessment criterion 98: Availability of crash cart nearby','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_98');

-- Section: EMERGENCY
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='emergency' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Policy for emergency','policy_for_emergency_99','select','Assessment criterion 99 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='policy_for_emergency_99');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_99','textarea','Remarks for assessment criterion 99: Policy for emergency','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_99');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Master Register','emergency_master_register_100','select','Assessment criterion 100 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_master_register_100');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_100','textarea','Remarks for assessment criterion 100: Emergency Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_100');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Master Register','emergency_master_register_101','select','Assessment criterion 101 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_master_register_101');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_101','textarea','Remarks for assessment criterion 101: Emergency Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_101');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MLC Book / PI Form','mlc_book_pi_form_102','select','Assessment criterion 102 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mlc_book_pi_form_102');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_102','textarea','Remarks for assessment criterion 102: MLC Book / PI Form','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_102');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency drugs & crash cart','emergency_drugs_crash_cart_103','select','Assessment criterion 103 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_drugs_crash_cart_103');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_103','textarea','Remarks for assessment criterion 103: Emergency drugs & crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_103');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staff trained in BLS/CPR','staff_trained_in_bls_cpr_104','select','Assessment criterion 104 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staff_trained_in_bls_cpr_104');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_104','textarea','Remarks for assessment criterion 104: Staff trained in BLS/CPR','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_104');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Oxygen/suction supply functional','oxygen_suction_supply_functional_105','select','Assessment criterion 105 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='oxygen_suction_supply_functional_105');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_105','textarea','Remarks for assessment criterion 105: Oxygen/suction supply functional','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_105');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Triage system','triage_system_106','select','Assessment criterion 106 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='triage_system_106');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_106','textarea','Remarks for assessment criterion 106: Triage system','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_106');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency protocols displayed','emergency_protocols_displayed_107','select','Assessment criterion 107 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_protocols_displayed_107');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_107','textarea','Remarks for assessment criterion 107: Emergency protocols displayed','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_107');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_108','select','Assessment criterion 108 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_108');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_108','textarea','Remarks for assessment criterion 108: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_108');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_109','select','Assessment criterion 109 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_109');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_109','textarea','Remarks for assessment criterion 109: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_109');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Defibrilator available','defibrilator_available_110','select','Assessment criterion 110 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='defibrilator_available_110');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_110','textarea','Remarks for assessment criterion 110: Defibrilator available','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_110');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ventilator available','ventilator_available_111','select','Assessment criterion 111 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ventilator_available_111');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_111','textarea','Remarks for assessment criterion 111: Ventilator available','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_111');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster emergency ward','duty_roster_emergency_ward_112','select','Assessment criterion 112 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_emergency_ward_112');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_112','textarea','Remarks for assessment criterion 112: Duty Roster emergency ward','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_112');

-- Section: ICU
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='icu' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ward Register as per requirments','ward_register_as_per_requirments_113','select','Assessment criterion 113 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ward_register_as_per_requirments_113');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_113','textarea','Remarks for assessment criterion 113: Ward Register as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_113');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ward Policy for ICU','ward_policy_for_icu_114','select','Assessment criterion 114 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ward_policy_for_icu_114');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_114','textarea','Remarks for assessment criterion 114: Ward Policy for ICU','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_114');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient ID band / identification','patient_id_band_identification_115','select','Assessment criterion 115 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_id_band_identification_115');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_115','textarea','Remarks for assessment criterion 115: Patient ID band / identification','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_115');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IPD File','ipd_file_116','select','Assessment criterion 116 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ipd_file_116');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_116','textarea','Remarks for assessment criterion 116: IPD File','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_116');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_117','select','Assessment criterion 117 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_117');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_117','textarea','Remarks for assessment criterion 117: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_117');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Availability of crash cart','availability_of_crash_cart_118','select','Assessment criterion 118 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='availability_of_crash_cart_118');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_118','textarea','Remarks for assessment criterion 118: Availability of crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_118');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_119','select','Assessment criterion 119 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_119');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_119','textarea','Remarks for assessment criterion 119: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_119');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient Identification policy','patient_identification_policy_120','select','Assessment criterion 120 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_identification_policy_120');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_120','textarea','Remarks for assessment criterion 120: Patient Identification policy','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_120');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_121','select','Assessment criterion 121 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_121');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_121','textarea','Remarks for assessment criterion 121: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_121');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Drug Lebling sticker','drug_lebling_sticker_122','select','Assessment criterion 122 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drug_lebling_sticker_122');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_122','textarea','Remarks for assessment criterion 122: Drug Lebling sticker','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_122');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cultur report Record ICU','cultur_report_record_icu_123','select','Assessment criterion 123 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cultur_report_record_icu_123');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_123','textarea','Remarks for assessment criterion 123: Cultur report Record ICU','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_123');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Preventive maintenance records available','preventive_maintenance_records_available_124','select','Assessment criterion 124 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='preventive_maintenance_records_available_124');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_124','textarea','Remarks for assessment criterion 124: Preventive maintenance records available','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_124');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment Check list as per requirments','equipment_check_list_as_per_requirments_125','select','Assessment criterion 125 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_check_list_as_per_requirments_125');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_125','textarea','Remarks for assessment criterion 125: Equipment Check list as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_125');

-- Section: HDU
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hdu' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ward Register as per requirments','ward_register_as_per_requirments_126','select','Assessment criterion 126 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ward_register_as_per_requirments_126');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_126','textarea','Remarks for assessment criterion 126: Ward Register as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_126');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Policy for HDU','policy_for_hdu_127','select','Assessment criterion 127 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='policy_for_hdu_127');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_127','textarea','Remarks for assessment criterion 127: Policy for HDU','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_127');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient ID band / identification','patient_id_band_identification_128','select','Assessment criterion 128 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_id_band_identification_128');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_128','textarea','Remarks for assessment criterion 128: Patient ID band / identification','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_128');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IPD File','ipd_file_129','select','Assessment criterion 129 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ipd_file_129');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_129','textarea','Remarks for assessment criterion 129: IPD File','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_129');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_130','select','Assessment criterion 130 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_130');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_130','textarea','Remarks for assessment criterion 130: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_130');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Availability of crash cart','availability_of_crash_cart_131','select','Assessment criterion 131 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='availability_of_crash_cart_131');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_131','textarea','Remarks for assessment criterion 131: Availability of crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_131');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_132','select','Assessment criterion 132 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_132');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_132','textarea','Remarks for assessment criterion 132: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_132');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient Identification policy','patient_identification_policy_133','select','Assessment criterion 133 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_identification_policy_133');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_133','textarea','Remarks for assessment criterion 133: Patient Identification policy','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_133');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_134','select','Assessment criterion 134 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_134');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_134','textarea','Remarks for assessment criterion 134: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_134');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Drug Lebling sticker','drug_lebling_sticker_135','select','Assessment criterion 135 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drug_lebling_sticker_135');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_135','textarea','Remarks for assessment criterion 135: Drug Lebling sticker','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_135');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cultur report Record for Crtical ward HDU','cultur_report_record_for_crtical_ward_hdu_136','select','Assessment criterion 136 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cultur_report_record_for_crtical_ward_hdu_136');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_136','textarea','Remarks for assessment criterion 136: Cultur report Record for Crtical ward HDU','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_136');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Preventive maintenance records available','preventive_maintenance_records_available_137','select','Assessment criterion 137 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='preventive_maintenance_records_available_137');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_137','textarea','Remarks for assessment criterion 137: Preventive maintenance records available','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_137');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment Check list as per requirments','equipment_check_list_as_per_requirments_138','select','Assessment criterion 138 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_check_list_as_per_requirments_138');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_138','textarea','Remarks for assessment criterion 138: Equipment Check list as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_138');

-- Section: WARD
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ward' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ward Register as per requirments','ward_register_as_per_requirments_139','select','Assessment criterion 139 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ward_register_as_per_requirments_139');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_139','textarea','Remarks for assessment criterion 139: Ward Register as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_139');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient ID band / identification','patient_id_band_identification_140','select','Assessment criterion 140 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_id_band_identification_140');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_140','textarea','Remarks for assessment criterion 140: Patient ID band / identification','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_140');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IPD File','ipd_file_141','select','Assessment criterion 141 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ipd_file_141');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_141','textarea','Remarks for assessment criterion 141: IPD File','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_141');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_142','select','Assessment criterion 142 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_142');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_142','textarea','Remarks for assessment criterion 142: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_142');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Availability of crash cart','availability_of_crash_cart_143','select','Assessment criterion 143 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='availability_of_crash_cart_143');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_143','textarea','Remarks for assessment criterion 143: Availability of crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_143');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_144','select','Assessment criterion 144 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_144');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_144','textarea','Remarks for assessment criterion 144: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_144');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient Identification policy','patient_identification_policy_145','select','Assessment criterion 145 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_identification_policy_145');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_145','textarea','Remarks for assessment criterion 145: Patient Identification policy','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_145');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_146','select','Assessment criterion 146 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_146');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_146','textarea','Remarks for assessment criterion 146: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_146');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Drug Lebling sticker','drug_lebling_sticker_147','select','Assessment criterion 147 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drug_lebling_sticker_147');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_147','textarea','Remarks for assessment criterion 147: Drug Lebling sticker','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_147');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Preventive maintenance records available','preventive_maintenance_records_available_148','select','Assessment criterion 148 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='preventive_maintenance_records_available_148');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_148','textarea','Remarks for assessment criterion 148: Preventive maintenance records available','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_148');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment Check list as per requirments','equipment_check_list_as_per_requirments_149','select','Assessment criterion 149 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_check_list_as_per_requirments_149');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_149','textarea','Remarks for assessment criterion 149: Equipment Check list as per requirments','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_149');

-- Section: LABORATORY & SAMPLE COLLECTION
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='laboratory-sample-collection' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of Laboratory scope of services','signage_of_laboratory_scope_of_services_150','select','Assessment criterion 150 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_laboratory_scope_of_services_150');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_150','textarea','Remarks for assessment criterion 150: Signage of Laboratory scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_150');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of TAT','signage_of_tat_151','select','Assessment criterion 151 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_tat_151');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_151','textarea','Remarks for assessment criterion 151: Signage of TAT','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_151');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of Crtical Value','signage_of_crtical_value_152','select','Assessment criterion 152 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_crtical_value_152');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_152','textarea','Remarks for assessment criterion 152: Signage of Crtical Value','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_152');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Sample labeling & identification','sample_labeling_identification_153','select','Assessment criterion 153 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='sample_labeling_identification_153');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_153','textarea','Remarks for assessment criterion 153: Sample labeling & identification','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_153');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Test request forms available','test_request_forms_available_154','select','Assessment criterion 154 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='test_request_forms_available_154');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_154','textarea','Remarks for assessment criterion 154: Test request forms available','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_154');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Sample Transportation Box','sample_transportation_box_155','select','Assessment criterion 155 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='sample_transportation_box_155');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_155','textarea','Remarks for assessment criterion 155: Sample Transportation Box','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_155');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment calibration records','equipment_calibration_records_156','select','Assessment criterion 156 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_calibration_records_156');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_156','textarea','Remarks for assessment criterion 156: Equipment calibration records','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_156');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_157','select','Assessment criterion 157 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_157');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_157','textarea','Remarks for assessment criterion 157: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_157');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pathology Master Register','pathology_master_register_158','select','Assessment criterion 158 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pathology_master_register_158');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_158','textarea','Remarks for assessment criterion 158: Pathology Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_158');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Crtical Value Register','crtical_value_register_159','select','Assessment criterion 159 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='crtical_value_register_159');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_159','textarea','Remarks for assessment criterion 159: Crtical Value Register','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_159');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Internal Quality Control (Daily QC records maintained)','internal_quality_control_daily_qc_records_maintained_160','select','Assessment criterion 160 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='internal_quality_control_daily_qc_records_maintained_160');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_160','textarea','Remarks for assessment criterion 160: Internal Quality Control (Daily QC records maintained)','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_160');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'External Quality Control (AIIMS EQAS & CMC Vellore)','external_quality_control_aiims_eqas_cmc_vellore_161','select','Assessment criterion 161 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='external_quality_control_aiims_eqas_cmc_vellore_161');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_161','textarea','Remarks for assessment criterion 161: External Quality Control (AIIMS EQAS & CMC Vellore)','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_161');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Predisinfection treatment system','predisinfection_treatment_system_162','select','Assessment criterion 162 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='predisinfection_treatment_system_162');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_162','textarea','Remarks for assessment criterion 162: Predisinfection treatment system','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_162');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Policy/ Mannual','policy_mannual_163','select','Assessment criterion 163 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='policy_mannual_163');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_163','textarea','Remarks for assessment criterion 163: Policy/ Mannual','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_163');

-- Section: OT
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ot' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OT Zoning','ot_zoning_164','select','Assessment criterion 164 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ot_zoning_164');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_164','textarea','Remarks for assessment criterion 164: OT Zoning','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_164');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OT Master Register','ot_master_register_165','select','Assessment criterion 165 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ot_master_register_165');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_165','textarea','Remarks for assessment criterion 165: OT Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_165');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Narcotic Drugs Register','narcotic_drugs_register_166','select','Assessment criterion 166 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='narcotic_drugs_register_166');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_166','textarea','Remarks for assessment criterion 166: Narcotic Drugs Register','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_166');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Implant Register','implant_register_167','select','Assessment criterion 167 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='implant_register_167');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_167','textarea','Remarks for assessment criterion 167: Implant Register','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_167');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OT cleaning Register','ot_cleaning_register_168','select','Assessment criterion 168 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ot_cleaning_register_168');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_168','textarea','Remarks for assessment criterion 168: OT cleaning Register','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_168');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cultur report Record','cultur_report_record_169','select','Assessment criterion 169 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cultur_report_record_169');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_169','textarea','Remarks for assessment criterion 169: Cultur report Record','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_169');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency drugs & crash cart','emergency_drugs_crash_cart_170','select','Assessment criterion 170 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_drugs_crash_cart_170');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_170','textarea','Remarks for assessment criterion 170: Emergency drugs & crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_170');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IPD File','ipd_file_171','select','Assessment criterion 171 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ipd_file_171');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_171','textarea','Remarks for assessment criterion 171: IPD File','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_171');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_172','select','Assessment criterion 172 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_172');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_172','textarea','Remarks for assessment criterion 172: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_172');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_173','select','Assessment criterion 173 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_173');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_173','textarea','Remarks for assessment criterion 173: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_173');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OT Validation Report','ot_validation_report_174','select','Assessment criterion 174 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ot_validation_report_174');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_174','textarea','Remarks for assessment criterion 174: OT Validation Report','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_174');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Details of number of Operation theatres and type of air-conditioning in Operation theatres (OTs)','details_of_number_of_operation_theatres_and_type_of_air_conditioning_in_operation_theatres_ots_175','select','Assessment criterion 175 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='details_of_number_of_operation_theatres_and_type_of_air_conditioning_in_operation_theatres_ots_175');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_175','textarea','Remarks for assessment criterion 175: Details of number of Operation theatres and type of air-conditioning in Operation theatres (OTs)','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_175');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Availability of laminar flow and High-Efficiency Particulate Air (HEPA) filters','availability_of_laminar_flow_and_high_efficiency_particulate_air_hepa_filters_176','select','Assessment criterion 176 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='availability_of_laminar_flow_and_high_efficiency_particulate_air_hepa_filters_176');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_176','textarea','Remarks for assessment criterion 176: Availability of laminar flow and High-Efficiency Particulate Air (HEPA) filters','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_176');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Total Joint Replacemnet Surgeries','total_joint_replacemnet_surgeries_177','select','Assessment criterion 177 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='total_joint_replacemnet_surgeries_177');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_177','textarea','Remarks for assessment criterion 177: Total Joint Replacemnet Surgeries','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_177');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of C-section','percentage_of_c_section_178','select','Assessment criterion 178 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_c_section_178');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_178','textarea','Remarks for assessment criterion 178: Percentage of C-section','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_178');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Name surgery and Annual Cases','name_surgery_and_annual_cases_179','select','Assessment criterion 179 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='name_surgery_and_annual_cases_179');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_179','textarea','Remarks for assessment criterion 179: Name surgery and Annual Cases','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_179');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'12 mths OT Operation details under GA','12_mths_ot_operation_details_under_ga_180','select','Assessment criterion 180 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='12_mths_ot_operation_details_under_ga_180');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_180','textarea','Remarks for assessment criterion 180: 12 mths OT Operation details under GA','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_180');

-- Section: CSSD
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='cssd' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CSSD Register','cssd_register_181','select','Assessment criterion 181 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cssd_register_181');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_181','textarea','Remarks for assessment criterion 181: CSSD Register','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_181');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CSSD Sticker','cssd_sticker_182','select','Assessment criterion 182 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cssd_sticker_182');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_182','textarea','Remarks for assessment criterion 182: CSSD Sticker','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_182');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Defined CSSD area with zoning (dirty–clean–sterile)','defined_cssd_area_with_zoning_dirty_clean_sterile_183','select','Assessment criterion 183 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='defined_cssd_area_with_zoning_dirty_clean_sterile_183');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_183','textarea','Remarks for assessment criterion 183: Defined CSSD area with zoning (dirty–clean–sterile)','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_183');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'One-way workflow maintained (no cross movement)','one_way_workflow_maintained_no_cross_movement_184','select','Assessment criterion 184 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='one_way_workflow_maintained_no_cross_movement_184');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_184','textarea','Remarks for assessment criterion 184: One-way workflow maintained (no cross movement)','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_184');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Autoclave temperature & pressure records maintained','autoclave_temperature_pressure_records_maintained_185','select','Assessment criterion 185 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='autoclave_temperature_pressure_records_maintained_185');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_185','textarea','Remarks for assessment criterion 185: Autoclave temperature & pressure records maintained','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_185');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Register For Quality Indicators','register_for_quality_indicators_186','select','Assessment criterion 186 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='register_for_quality_indicators_186');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_186','textarea','Remarks for assessment criterion 186: Register For Quality Indicators','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_186');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PPE used by staff (gloves, mask, apron)','ppe_used_by_staff_gloves_mask_apron_187','select','Assessment criterion 187 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ppe_used_by_staff_gloves_mask_apron_187');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_187','textarea','Remarks for assessment criterion 187: PPE used by staff (gloves, mask, apron)','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_187');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staff trained in sterilization procedures','staff_trained_in_sterilization_procedures_188','select','Assessment criterion 188 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staff_trained_in_sterilization_procedures_188');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_188','textarea','Remarks for assessment criterion 188: Staff trained in sterilization procedures','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_188');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Record of rejected / failed sterilization loads','record_of_rejected_failed_sterilization_loads_189','select','Assessment criterion 189 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='record_of_rejected_failed_sterilization_loads_189');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_189','textarea','Remarks for assessment criterion 189: Record of rejected / failed sterilization loads','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_189');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Class 1 Indicator','class_1_indicator_190','select','Assessment criterion 190 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='class_1_indicator_190');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_190','textarea','Remarks for assessment criterion 190: Class 1 Indicator','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_190');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Class 5 Indicator','class_5_indicator_191','select','Assessment criterion 191 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='class_5_indicator_191');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_191','textarea','Remarks for assessment criterion 191: Class 5 Indicator','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_191');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biological Indicator','biological_indicator_192','select','Assessment criterion 192 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biological_indicator_192');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_192','textarea','Remarks for assessment criterion 192: Biological Indicator','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_192');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Bowidick Indicator','bowidick_indicator_193','select','Assessment criterion 193 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='bowidick_indicator_193');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_193','textarea','Remarks for assessment criterion 193: Bowidick Indicator','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_193');

-- Section: PHARMACY
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='pharmacy' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Valid drug license displayed','valid_drug_license_displayed_194','select','Assessment criterion 194 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='valid_drug_license_displayed_194');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_194','textarea','Remarks for assessment criterion 194: Valid drug license displayed','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_194');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_195','select','Assessment criterion 195 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_195');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_195','textarea','Remarks for assessment criterion 195: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_195');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'FIFO / FEFO followed','fifo_fefo_followed_196','select','Assessment criterion 196 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fifo_fefo_followed_196');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_196','textarea','Remarks for assessment criterion 196: FIFO / FEFO followed','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_196');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'List of LASA drugs identified and photo','list_of_lasa_drugs_identified_and_photo_197','select','Assessment criterion 197 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='list_of_lasa_drugs_identified_and_photo_197');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_197','textarea','Remarks for assessment criterion 197: List of LASA drugs identified and photo','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_197');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'List of High-risk drugs labeled in lock and key','list_of_high_risk_drugs_labeled_in_lock_and_key_198','select','Assessment criterion 198 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='list_of_high_risk_drugs_labeled_in_lock_and_key_198');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_198','textarea','Remarks for assessment criterion 198: List of High-risk drugs labeled in lock and key','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_198');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency drugs list and separate area','emergency_drugs_list_and_separate_area_199','select','Assessment criterion 199 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_drugs_list_and_separate_area_199');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_199','textarea','Remarks for assessment criterion 199: Emergency drugs list and separate area','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_199');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Temperature log maintained','temperature_log_maintained_200','select','Assessment criterion 200 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='temperature_log_maintained_200');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_200','textarea','Remarks for assessment criterion 200: Temperature log maintained','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_200');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Expired drugs segregation','expired_drugs_segregation_201','select','Assessment criterion 201 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='expired_drugs_segregation_201');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_201','textarea','Remarks for assessment criterion 201: Expired drugs segregation','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_201');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Out of stock Register with local purchase records','out_of_stock_register_with_local_purchase_records_202','select','Assessment criterion 202 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='out_of_stock_register_with_local_purchase_records_202');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_202','textarea','Remarks for assessment criterion 202: Out of stock Register with local purchase records','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_202');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'AC in Pharmacy','ac_in_pharmacy_203','select','Assessment criterion 203 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ac_in_pharmacy_203');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_203','textarea','Remarks for assessment criterion 203: AC in Pharmacy','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_203');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Software for drugs stock and sale','software_for_drugs_stock_and_sale_204','select','Assessment criterion 204 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='software_for_drugs_stock_and_sale_204');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_204','textarea','Remarks for assessment criterion 204: Software for drugs stock and sale','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_204');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Drug formulary','drug_formulary_205','select','Assessment criterion 205 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drug_formulary_205');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_205','textarea','Remarks for assessment criterion 205: Drug formulary','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_205');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Three sample medication orders (in-patient)','three_sample_medication_orders_in_patient_206','select','Assessment criterion 206 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='three_sample_medication_orders_in_patient_206');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_206','textarea','Remarks for assessment criterion 206: Three sample medication orders (in-patient)','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_206');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Three sample medication administration records','three_sample_medication_administration_records_207','select','Assessment criterion 207 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='three_sample_medication_administration_records_207');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_207','textarea','Remarks for assessment criterion 207: Three sample medication administration records','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_207');

-- Section: RADIOLOGY
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='radiology' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_208','select','Assessment criterion 208 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_208');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_208','textarea','Remarks for assessment criterion 208: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_208');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiation safety measures (lead apron, Thyroid shield Gonad shield)','radiation_safety_measures_lead_apron_thyroid_shield_gonad_shield_209','select','Assessment criterion 209 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiation_safety_measures_lead_apron_thyroid_shield_gonad_shield_209');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_209','textarea','Remarks for assessment criterion 209: Radiation safety measures (lead apron, Thyroid shield Gonad shield)','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_209');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment maintenance records','equipment_maintenance_records_210','select','Assessment criterion 210 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_maintenance_records_210');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_210','textarea','Remarks for assessment criterion 210: Equipment maintenance records','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_210');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Master Register','master_register_211','select','Assessment criterion 211 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_211');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_211','textarea','Remarks for assessment criterion 211: Master Register','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_211');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Crtical Value Register','crtical_value_register_212','select','Assessment criterion 212 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='crtical_value_register_212');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_212','textarea','Remarks for assessment criterion 212: Crtical Value Register','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_212');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Crtical Value Signage','crtical_value_signage_213','select','Assessment criterion 213 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='crtical_value_signage_213');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_213','textarea','Remarks for assessment criterion 213: Crtical Value Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_213');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'TAT Signage','tat_signage_214','select','Assessment criterion 214 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='tat_signage_214');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_214','textarea','Remarks for assessment criterion 214: TAT Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_214');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of Radiology (X-ray / Imaging) scope of services','signage_of_radiology_x_ray_imaging_scope_of_services_215','select','Assessment criterion 215 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_radiology_x_ray_imaging_scope_of_services_215');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_215','textarea','Remarks for assessment criterion 215: Signage of Radiology (X-ray / Imaging) scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_215');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Signage of Radio safety entrance','signage_of_radio_safety_entrance_216','select','Assessment criterion 216 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='signage_of_radio_safety_entrance_216');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_216','textarea','Remarks for assessment criterion 216: Signage of Radio safety entrance','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_216');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Red Bulb on entrance','red_bulb_on_entrance_217','select','Assessment criterion 217 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='red_bulb_on_entrance_217');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_217','textarea','Remarks for assessment criterion 217: Red Bulb on entrance','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_217');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'TLD Badge - As per requirment','tld_badge_as_per_requirment_218','select','Assessment criterion 218 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='tld_badge_as_per_requirment_218');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_218','textarea','Remarks for assessment criterion 218: TLD Badge - As per requirment','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_218');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiation safety measures in infra','radiation_safety_measures_in_infra_219','select','Assessment criterion 219 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiation_safety_measures_in_infra_219');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_219','textarea','Remarks for assessment criterion 219: Radiation safety measures in infra','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_219');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Tray/ crash cart','emergency_tray_crash_cart_220','select','Assessment criterion 220 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_tray_crash_cart_220');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_220','textarea','Remarks for assessment criterion 220: Emergency Tray/ crash cart','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_220');

-- Section: HOUSEKEEPING
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='housekeeping' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cleaning schedule available','cleaning_schedule_available_221','select','Assessment criterion 221 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cleaning_schedule_available_221');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_221','textarea','Remarks for assessment criterion 221: Cleaning schedule available','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_221');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Disinfectant use as per policy','disinfectant_use_as_per_policy_222','select','Assessment criterion 222 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='disinfectant_use_as_per_policy_222');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_222','textarea','Remarks for assessment criterion 222: Disinfectant use as per policy','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_222');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Color-coded BMW bins','color_coded_bmw_bins_223','select','Assessment criterion 223 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='color_coded_bmw_bins_223');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_223','textarea','Remarks for assessment criterion 223: Color-coded BMW bins','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_223');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PPE usage by staff','ppe_usage_by_staff_224','select','Assessment criterion 224 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ppe_usage_by_staff_224');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_224','textarea','Remarks for assessment criterion 224: PPE usage by staff','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_224');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene compliance','hand_hygiene_compliance_225','select','Assessment criterion 225 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_compliance_225');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_225','textarea','Remarks for assessment criterion 225: Hand hygiene compliance','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_225');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Spill management protocol','spill_management_protocol_226','select','Assessment criterion 226 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='spill_management_protocol_226');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_226','textarea','Remarks for assessment criterion 226: Spill management protocol','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_226');

-- Section: BMW
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='bmw' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Color-coded BMW bins Departmental availablity','color_coded_bmw_bins_departmental_availablity_227','select','Assessment criterion 227 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='color_coded_bmw_bins_departmental_availablity_227');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_227','textarea','Remarks for assessment criterion 227: Color-coded BMW bins Departmental availablity','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_227');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Central Segrigation point with close system','central_segrigation_point_with_close_system_228','select','Assessment criterion 228 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='central_segrigation_point_with_close_system_228');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_228','textarea','Remarks for assessment criterion 228: Central Segrigation point with close system','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_228');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Segregation at source','segregation_at_source_229','select','Assessment criterion 229 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='segregation_at_source_229');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_229','textarea','Remarks for assessment criterion 229: Segregation at source','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_229');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'BMW records maintained (As per requiremnt)','bmw_records_maintained_as_per_requiremnt_230','select','Assessment criterion 230 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='bmw_records_maintained_as_per_requiremnt_230');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_230','textarea','Remarks for assessment criterion 230: BMW records maintained (As per requiremnt)','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_230');

-- Section: FACILITY CHECK LIST
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='facility-check-list' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire safety equipment available','fire_safety_equipment_available_231','select','Assessment criterion 231 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_safety_equipment_available_231');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_231','textarea','Remarks for assessment criterion 231: Fire safety equipment available','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_231');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire drill conducted (video and training records)','fire_drill_conducted_video_and_training_records_232','select','Assessment criterion 232 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_drill_conducted_video_and_training_records_232');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_232','textarea','Remarks for assessment criterion 232: Fire drill conducted (video and training records)','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_232');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency exit signage','emergency_exit_signage_233','select','Assessment criterion 233 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_exit_signage_233');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_233','textarea','Remarks for assessment criterion 233: Emergency exit signage','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_233');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Exit Map','fire_exit_map_234','select','Assessment criterion 234 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_exit_map_234');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_234','textarea','Remarks for assessment criterion 234: Fire Exit Map','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_234');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Electrical safety checks','electrical_safety_checks_235','select','Assessment criterion 235 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='electrical_safety_checks_235');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_235','textarea','Remarks for assessment criterion 235: Electrical safety checks','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_235');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Generator backup available','generator_backup_available_236','select','Assessment criterion 236 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='generator_backup_available_236');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_236','textarea','Remarks for assessment criterion 236: Generator backup available','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_236');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Equipment maintenance log','equipment_maintenance_log_237','select','Assessment criterion 237 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_maintenance_log_237');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_237','textarea','Remarks for assessment criterion 237: Equipment maintenance log','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_237');

-- Section: MRD
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mrd' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient records maintained for OPD & IPD','patient_records_maintained_for_opd_ipd_238','select','Assessment criterion 238 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_records_maintained_for_opd_ipd_238');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_238','textarea','Remarks for assessment criterion 238: Patient records maintained for OPD & IPD','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_238');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Confidentiality of patient records maintained','confidentiality_of_patient_records_maintained_239','select','Assessment criterion 239 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='confidentiality_of_patient_records_maintained_239');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_239','textarea','Remarks for assessment criterion 239: Confidentiality of patient records maintained','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_239');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Death file maintained as per policy','death_file_maintained_as_per_policy_240','select','Assessment criterion 240 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='death_file_maintained_as_per_policy_240');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_240','textarea','Remarks for assessment criterion 240: Death file maintained as per policy','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_240');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MLC file maintained as per policy','mlc_file_maintained_as_per_policy_241','select','Assessment criterion 241 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mlc_file_maintained_as_per_policy_241');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_241','textarea','Remarks for assessment criterion 241: MLC file maintained as per policy','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_241');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pedia file maintained as per policy','pedia_file_maintained_as_per_policy_242','select','Assessment criterion 242 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pedia_file_maintained_as_per_policy_242');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_242','textarea','Remarks for assessment criterion 242: Pedia file maintained as per policy','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_242');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Birth record  maintained as per policy','birth_record_maintained_as_per_policy_243','select','Assessment criterion 243 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='birth_record_maintained_as_per_policy_243');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_243','textarea','Remarks for assessment criterion 243: Birth record  maintained as per policy','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_243');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD Master register','mrd_master_register_244','select','Assessment criterion 244 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_master_register_244');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_244','textarea','Remarks for assessment criterion 244: MRD Master register','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_244');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD Issue Register','mrd_issue_register_245','select','Assessment criterion 245 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_issue_register_245');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_245','textarea','Remarks for assessment criterion 245: MRD Issue Register','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_245');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD requisition form','mrd_requisition_form_246','select','Assessment criterion 246 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_requisition_form_246');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_246','textarea','Remarks for assessment criterion 246: MRD requisition form','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_246');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD Policy','mrd_policy_247','select','Assessment criterion 247 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_policy_247');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_247','textarea','Remarks for assessment criterion 247: MRD Policy','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_247');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CCTV Coverage','cctv_coverage_248','select','Assessment criterion 248 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cctv_coverage_248');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_248','textarea','Remarks for assessment criterion 248: CCTV Coverage','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_248');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Extinguisher','fire_extinguisher_249','select','Assessment criterion 249 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_extinguisher_249');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_249','textarea','Remarks for assessment criterion 249: Fire Extinguisher','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_249');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Only iron rack use','only_iron_rack_use_250','select','Assessment criterion 250 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='only_iron_rack_use_250');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_250','textarea','Remarks for assessment criterion 250: Only iron rack use','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_250');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD CHECK LIST','mrd_check_list_251','select','Assessment criterion 251 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_check_list_251');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_251','textarea','Remarks for assessment criterion 251: MRD CHECK LIST','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_251');

-- Section: Hemodialysis
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='hemodialysis' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster','duty_roster_252','select','Assessment criterion 252 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_252');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_252','textarea','Remarks for assessment criterion 252: Duty Roster','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_252');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dialysis machines maintained & calibrated','dialysis_machines_maintained_calibrated_253','select','Assessment criterion 253 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dialysis_machines_maintained_calibrated_253');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_253','textarea','Remarks for assessment criterion 253: Dialysis machines maintained & calibrated','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_253');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Preventive maintenance records available','preventive_maintenance_records_available_254','select','Assessment criterion 254 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='preventive_maintenance_records_available_254');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_254','textarea','Remarks for assessment criterion 254: Preventive maintenance records available','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_254');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'RO water system (WTP) installed & tested','ro_water_system_wtp_installed_tested_255','select','Assessment criterion 255 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ro_water_system_wtp_installed_tested_255');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_255','textarea','Remarks for assessment criterion 255: RO water system (WTP) installed & tested','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_255');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Water quality reports (chemical & microbiological)','water_quality_reports_chemical_microbiological_256','select','Assessment criterion 256 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='water_quality_reports_chemical_microbiological_256');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_256','textarea','Remarks for assessment criterion 256: Water quality reports (chemical & microbiological)','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_256');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'HD File','hd_file_257','select','Assessment criterion 257 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hd_file_257');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_257','textarea','Remarks for assessment criterion 257: HD File','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_257');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency drugs & crash cart available','emergency_drugs_crash_cart_available_258','select','Assessment criterion 258 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_drugs_crash_cart_available_258');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_258','textarea','Remarks for assessment criterion 258: Emergency drugs & crash cart available','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_258');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dedicated area for Hepatitis B / C patients (if applicable)','dedicated_area_for_hepatitis_b_c_patients_if_applicable_259','select','Assessment criterion 259 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dedicated_area_for_hepatitis_b_c_patients_if_applicable_259');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_259','textarea','Remarks for assessment criterion 259: Dedicated area for Hepatitis B / C patients (if applicable)','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_259');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Infection control practices followed','infection_control_practices_followed_260','select','Assessment criterion 260 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='infection_control_practices_followed_260');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_260','textarea','Remarks for assessment criterion 260: Infection control practices followed','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_260');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Use of PPE by staff','use_of_ppe_by_staff_261','select','Assessment criterion 261 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='use_of_ppe_by_staff_261');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_261','textarea','Remarks for assessment criterion 261: Use of PPE by staff','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_261');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical waste segregation with signage','biomedical_waste_segregation_with_signage_262','select','Assessment criterion 262 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_with_signage_262');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_262','textarea','Remarks for assessment criterion 262: Biomedical waste segregation with signage','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_262');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand hygiene facility available','hand_hygiene_facility_available_263','select','Assessment criterion 263 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_facility_available_263');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_263','textarea','Remarks for assessment criterion 263: Hand hygiene facility available','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_263');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staff trained in BLS/CPR','staff_trained_in_bls_cpr_264','select','Assessment criterion 264 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staff_trained_in_bls_cpr_264');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_264','textarea','Remarks for assessment criterion 264: Staff trained in BLS/CPR','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_264');

-- Section: BME
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='bme' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Inventory list of all medical equipment with AMC/CMC','inventory_list_of_all_medical_equipment_with_amc_cmc_271','select','Assessment criterion 271 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='inventory_list_of_all_medical_equipment_with_amc_cmc_271');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_271','textarea','Remarks for assessment criterion 271: Inventory list of all medical equipment with AMC/CMC','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_271');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Each equipment has unique ID / asset tag','each_equipment_has_unique_id_asset_tag_272','select','Assessment criterion 272 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='each_equipment_has_unique_id_asset_tag_272');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_272','textarea','Remarks for assessment criterion 272: Each equipment has unique ID / asset tag','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_272');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PM records/sticker maintained (as per schedule)','pm_records_sticker_maintained_as_per_schedule_273','select','Assessment criterion 273 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pm_records_sticker_maintained_as_per_schedule_273');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_273','textarea','Remarks for assessment criterion 273: PM records/sticker maintained (as per schedule)','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_273');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Breakdown maintenance logbook maintained','breakdown_maintenance_logbook_maintained_274','select','Assessment criterion 274 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='breakdown_maintenance_logbook_maintained_274');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_274','textarea','Remarks for assessment criterion 274: Breakdown maintenance logbook maintained','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_274');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Calibration records available (where applicable)','calibration_records_available_where_applicable_275','select','Assessment criterion 275 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='calibration_records_available_where_applicable_275');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_275','textarea','Remarks for assessment criterion 275: Calibration records available (where applicable)','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_275');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'BME Policy','bme_policy_276','select','Assessment criterion 276 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='bme_policy_276');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_276','textarea','Remarks for assessment criterion 276: BME Policy','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_276');

-- Section: Gas Manifold
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='gas-manifold' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dedicated manifold area','dedicated_manifold_area_277','select','Assessment criterion 277 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dedicated_manifold_area_277');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_277','textarea','Remarks for assessment criterion 277: Dedicated manifold area','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_277');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'“No Smoking / No Fire” signage displayed','no_smoking_no_fire_signage_displayed_278','select','Assessment criterion 278 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='no_smoking_no_fire_signage_displayed_278');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_278','textarea','Remarks for assessment criterion 278: “No Smoking / No Fire” signage displayed','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_278');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cylinders stored in upright position with chain support','cylinders_stored_in_upright_position_with_chain_support_279','select','Assessment criterion 279 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cylinders_stored_in_upright_position_with_chain_support_279');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_279','textarea','Remarks for assessment criterion 279: Cylinders stored in upright position with chain support','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_279');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Full and empty cylinders segregated/Cylinder identification system','full_and_empty_cylinders_segregated_cylinder_identification_system_280','select','Assessment criterion 280 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='full_and_empty_cylinders_segregated_cylinder_identification_system_280');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_280','textarea','Remarks for assessment criterion 280: Full and empty cylinders segregated/Cylinder identification system','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_280');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pressure gauges & regulators functional','pressure_gauges_regulators_functional_281','select','Assessment criterion 281 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pressure_gauges_regulators_functional_281');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_281','textarea','Remarks for assessment criterion 281: Pressure gauges & regulators functional','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_281');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Routine leak test performed','routine_leak_test_performed_282','select','Assessment criterion 282 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='routine_leak_test_performed_282');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_282','textarea','Remarks for assessment criterion 282: Routine leak test performed','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_282');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire extinguisher available','fire_extinguisher_available_283','select','Assessment criterion 283 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_extinguisher_available_283');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_283','textarea','Remarks for assessment criterion 283: Fire extinguisher available','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_283');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Area free from oil, grease, and combustible material','area_free_from_oil_grease_and_combustible_material_284','select','Assessment criterion 284 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='area_free_from_oil_grease_and_combustible_material_284');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_284','textarea','Remarks for assessment criterion 284: Area free from oil, grease, and combustible material','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_284');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Cylinder handling trolley available','cylinder_handling_trolley_available_285','select','Assessment criterion 285 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cylinder_handling_trolley_available_285');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_285','textarea','Remarks for assessment criterion 285: Cylinder handling trolley available','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_285');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staff trained in gas handling safety','staff_trained_in_gas_handling_safety_286','select','Assessment criterion 286 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staff_trained_in_gas_handling_safety_286');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_286','textarea','Remarks for assessment criterion 286: Staff trained in gas handling safety','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_286');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pipeline color coding followed (e.g., Oxygen – white)','pipeline_color_coding_followed_e_g_oxygen_white_287','select','Assessment criterion 287 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pipeline_color_coding_followed_e_g_oxygen_white_287');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_287','textarea','Remarks for assessment criterion 287: Pipeline color coding followed (e.g., Oxygen – white)','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_287');

-- Section: Ambulance Services
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ambulance-services' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Dedicated Parking Space','dedicated_parking_space_288','select','Assessment criterion 288 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='dedicated_parking_space_288');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_288','textarea','Remarks for assessment criterion 288: Dedicated Parking Space','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_288');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ambulance as per checklist','ambulance_as_per_checklist_289','select','Assessment criterion 289 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ambulance_as_per_checklist_289');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_289','textarea','Remarks for assessment criterion 289: Ambulance as per checklist','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_289');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Duty Roster ambulance','duty_roster_ambulance_290','select','Assessment criterion 290 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='duty_roster_ambulance_290');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_290','textarea','Remarks for assessment criterion 290: Duty Roster ambulance','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_290');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staff trained in CPR/BLS','staff_trained_in_cpr_bls_291','select','Assessment criterion 291 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staff_trained_in_cpr_bls_291');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_291','textarea','Remarks for assessment criterion 291: Staff trained in CPR/BLS','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_291');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Policy','policy_292','select','Assessment criterion 292 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='policy_292');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_292','textarea','Remarks for assessment criterion 292: Policy','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_292');

-- Section: SIGNAGE
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='signage' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hospital Name Board','hospital_name_board_293','select','Assessment criterion 293 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hospital_name_board_293');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_293','textarea','Remarks for assessment criterion 293: Hospital Name Board','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_293');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Main Entrance / Exit','main_entrance_exit_294','select','Assessment criterion 294 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='main_entrance_exit_294');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_294','textarea','Remarks for assessment criterion 294: Main Entrance / Exit','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_294');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Reception / Registration','reception_registration_295','select','Assessment criterion 295 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='reception_registration_295');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_295','textarea','Remarks for assessment criterion 295: Reception / Registration','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_295');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OPD','opd_296','select','Assessment criterion 296 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='opd_296');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_296','textarea','Remarks for assessment criterion 296: OPD','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_296');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IPD / Ward','ipd_ward_297','select','Assessment criterion 297 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ipd_ward_297');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_297','textarea','Remarks for assessment criterion 297: IPD / Ward','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_297');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency / Casualty','emergency_casualty_298','select','Assessment criterion 298 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_casualty_298');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_298','textarea','Remarks for assessment criterion 298: Emergency / Casualty','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_298');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'ICU / NICU / PICU','icu_nicu_picu_299','select','Assessment criterion 299 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='icu_nicu_picu_299');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_299','textarea','Remarks for assessment criterion 299: ICU / NICU / PICU','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_299');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Operation Theatre (OT)','operation_theatre_ot_300','select','Assessment criterion 300 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='operation_theatre_ot_300');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_300','textarea','Remarks for assessment criterion 300: Operation Theatre (OT)','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_300');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Laboratory / Pathology/sample collection','laboratory_pathology_sample_collection_301','select','Assessment criterion 301 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='laboratory_pathology_sample_collection_301');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_301','textarea','Remarks for assessment criterion 301: Laboratory / Pathology/sample collection','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_301');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiology / X-Ray / Ultrasound','radiology_x_ray_ultrasound_302','select','Assessment criterion 302 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiology_x_ray_ultrasound_302');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_302','textarea','Remarks for assessment criterion 302: Radiology / X-Ray / Ultrasound','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_302');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pharmacy','pharmacy_303','select','Assessment criterion 303 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pharmacy_303');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_303','textarea','Remarks for assessment criterion 303: Pharmacy','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_303');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Billing / Cash Counter','billing_cash_counter_304','select','Assessment criterion 304 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='billing_cash_counter_304');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_304','textarea','Remarks for assessment criterion 304: Billing / Cash Counter','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_304');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Waiting Area','waiting_area_305','select','Assessment criterion 305 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='waiting_area_305');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_305','textarea','Remarks for assessment criterion 305: Waiting Area','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_305');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Consultation Room','consultation_room_306','select','Assessment criterion 306 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='consultation_room_306');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_306','textarea','Remarks for assessment criterion 306: Consultation Room','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_306');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Lift / Elevator','lift_elevator_307','select','Assessment criterion 307 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='lift_elevator_307');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_307','textarea','Remarks for assessment criterion 307: Lift / Elevator','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_307');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Staircase','staircase_308','select','Assessment criterion 308 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='staircase_308');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_308','textarea','Remarks for assessment criterion 308: Staircase','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_308');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Drinking Water','drinking_water_309','select','Assessment criterion 309 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drinking_water_309');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_309','textarea','Remarks for assessment criterion 309: Drinking Water','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_309');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Washroom – Male / Female / Disabled','washroom_male_female_disabled_310','select','Assessment criterion 310 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='washroom_male_female_disabled_310');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_310','textarea','Remarks for assessment criterion 310: Washroom – Male / Female / Disabled','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_310');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Parking Area','parking_area_311','select','Assessment criterion 311 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='parking_area_311');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_311','textarea','Remarks for assessment criterion 311: Parking Area','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_311');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Floor Directory','floor_directory_312','select','Assessment criterion 312 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='floor_directory_312');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_312','textarea','Remarks for assessment criterion 312: Floor Directory','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_312');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Exit map','fire_exit_map_313','select','Assessment criterion 313 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_exit_map_313');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_313','textarea','Remarks for assessment criterion 313: Fire Exit map','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_313');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Exit directinal signage','fire_exit_directinal_signage_314','select','Assessment criterion 314 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_exit_directinal_signage_314');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_314','textarea','Remarks for assessment criterion 314: Fire Exit directinal signage','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_314');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Alarm Point','fire_alarm_point_315','select','Assessment criterion 315 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,45,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_alarm_point_315');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_315','textarea','Remarks for assessment criterion 315: Fire Alarm Point','Enter remarks or observations for this criterion.',NULL,0,NULL,46,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_315');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'No Smoking','no_smoking_316','select','Assessment criterion 316 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,47,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='no_smoking_316');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_316','textarea','Remarks for assessment criterion 316: No Smoking','Enter remarks or observations for this criterion.',NULL,0,NULL,48,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_316');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Assembly Point','assembly_point_317','select','Assessment criterion 317 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,49,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='assembly_point_317');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_317','textarea','Remarks for assessment criterion 317: Assembly Point','Enter remarks or observations for this criterion.',NULL,0,NULL,50,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_317');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Contact Numbers','emergency_contact_numbers_318','select','Assessment criterion 318 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,51,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_contact_numbers_318');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_318','textarea','Remarks for assessment criterion 318: Emergency Contact Numbers','Enter remarks or observations for this criterion.',NULL,0,NULL,52,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_318');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Code Blue / Emergency Numbers','code_blue_emergency_numbers_319','select','Assessment criterion 319 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,53,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='code_blue_emergency_numbers_319');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_319','textarea','Remarks for assessment criterion 319: Code Blue / Emergency Numbers','Enter remarks or observations for this criterion.',NULL,0,NULL,54,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_319');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hazard Warning Sign','hazard_warning_sign_320','select','Assessment criterion 320 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,55,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hazard_warning_sign_320');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_320','textarea','Remarks for assessment criterion 320: Hazard Warning Sign','Enter remarks or observations for this criterion.',NULL,0,NULL,56,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_320');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Restricted Area','restricted_area_321','select','Assessment criterion 321 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,57,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='restricted_area_321');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_321','textarea','Remarks for assessment criterion 321: Restricted Area','Enter remarks or observations for this criterion.',NULL,0,NULL,58,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_321');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Oxygen Safety Warning','oxygen_safety_warning_322','select','Assessment criterion 322 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,59,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='oxygen_safety_warning_322');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_322','textarea','Remarks for assessment criterion 322: Oxygen Safety Warning','Enter remarks or observations for this criterion.',NULL,0,NULL,60,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_322');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Electrical Danger','electrical_danger_323','select','Assessment criterion 323 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,61,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='electrical_danger_323');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_323','textarea','Remarks for assessment criterion 323: Electrical Danger','Enter remarks or observations for this criterion.',NULL,0,NULL,62,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_323');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand Hygiene Instructions','hand_hygiene_instructions_324','select','Assessment criterion 324 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,63,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_instructions_324');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_324','textarea','Remarks for assessment criterion 324: Hand Hygiene Instructions','Enter remarks or observations for this criterion.',NULL,0,NULL,64,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_324');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand Washing Steps','hand_washing_steps_325','select','Assessment criterion 325 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,65,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_washing_steps_325');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_325','textarea','Remarks for assessment criterion 325: Hand Washing Steps','Enter remarks or observations for this criterion.',NULL,0,NULL,66,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_325');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical Waste Segregation Chart','biomedical_waste_segregation_chart_326','select','Assessment criterion 326 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,67,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_segregation_chart_326');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_326','textarea','Remarks for assessment criterion 326: Biomedical Waste Segregation Chart','Enter remarks or observations for this criterion.',NULL,0,NULL,68,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_326');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Isolation Room','isolation_room_327','select','Assessment criterion 327 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,69,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='isolation_room_327');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_327','textarea','Remarks for assessment criterion 327: Isolation Room','Enter remarks or observations for this criterion.',NULL,0,NULL,70,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_327');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Needle Stick Injury Protocol','needle_stick_injury_protocol_328','select','Assessment criterion 328 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,71,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='needle_stick_injury_protocol_328');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_328','textarea','Remarks for assessment criterion 328: Needle Stick Injury Protocol','Enter remarks or observations for this criterion.',NULL,0,NULL,72,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_328');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Spill Management Instructions','spill_management_instructions_329','select','Assessment criterion 329 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,73,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='spill_management_instructions_329');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_329','textarea','Remarks for assessment criterion 329: Spill Management Instructions','Enter remarks or observations for this criterion.',NULL,0,NULL,74,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_329');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Color Coding of Biomedical Waste Bins','color_coding_of_biomedical_waste_bins_330','select','Assessment criterion 330 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,75,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='color_coding_of_biomedical_waste_bins_330');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_330','textarea','Remarks for assessment criterion 330: Color Coding of Biomedical Waste Bins','Enter remarks or observations for this criterion.',NULL,0,NULL,76,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_330');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Patient Rights & Responsibilities','patient_rights_responsibilities_331','select','Assessment criterion 331 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,77,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_rights_responsibilities_331');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_331','textarea','Remarks for assessment criterion 331: Patient Rights & Responsibilities','Enter remarks or observations for this criterion.',NULL,0,NULL,78,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_331');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Visiting Hours','visiting_hours_332','select','Assessment criterion 332 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,79,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='visiting_hours_332');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_332','textarea','Remarks for assessment criterion 332: Visiting Hours','Enter remarks or observations for this criterion.',NULL,0,NULL,80,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_332');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Tariff / Charges List','tariff_charges_list_333','select','Assessment criterion 333 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,81,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='tariff_charges_list_333');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_333','textarea','Remarks for assessment criterion 333: Tariff / Charges List','Enter remarks or observations for this criterion.',NULL,0,NULL,82,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_333');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Complaint / Grievance Redressal','complaint_grievance_redressal_334','select','Assessment criterion 334 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,83,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='complaint_grievance_redressal_334');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_334','textarea','Remarks for assessment criterion 334: Complaint / Grievance Redressal','Enter remarks or observations for this criterion.',NULL,0,NULL,84,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_334');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Feedback / Suggestion Box Information','feedback_suggestion_box_information_335','select','Assessment criterion 335 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,85,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='feedback_suggestion_box_information_335');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_335','textarea','Remarks for assessment criterion 335: Feedback / Suggestion Box Information','Enter remarks or observations for this criterion.',NULL,0,NULL,86,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_335');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'NABH Accreditation Certificate Display','nabh_accreditation_certificate_display_336','select','Assessment criterion 336 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,87,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nabh_accreditation_certificate_display_336');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_336','textarea','Remarks for assessment criterion 336: NABH Accreditation Certificate Display','Enter remarks or observations for this criterion.',NULL,0,NULL,88,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_336');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OT Sterile Zone','ot_sterile_zone_337','select','Assessment criterion 337 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,89,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ot_sterile_zone_337');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_337','textarea','Remarks for assessment criterion 337: OT Sterile Zone','Enter remarks or observations for this criterion.',NULL,0,NULL,90,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_337');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiation Warning Sign','radiation_warning_sign_338','select','Assessment criterion 338 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,91,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiation_warning_sign_338');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_338','textarea','Remarks for assessment criterion 338: Radiation Warning Sign','Enter remarks or observations for this criterion.',NULL,0,NULL,92,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_338');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biohazard Sign','biohazard_sign_339','select','Assessment criterion 339 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,93,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biohazard_sign_339');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_339','textarea','Remarks for assessment criterion 339: Biohazard Sign','Enter remarks or observations for this criterion.',NULL,0,NULL,94,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_339');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CSSD Signage','cssd_signage_340','select','Assessment criterion 340 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,95,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cssd_signage_340');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_340','textarea','Remarks for assessment criterion 340: CSSD Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,96,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_340');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PCPNDT Display','pcpndt_display_341','select','Assessment criterion 341 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,97,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pcpndt_display_341');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_341','textarea','Remarks for assessment criterion 341: PCPNDT Display','Enter remarks or observations for this criterion.',NULL,0,NULL,98,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_341');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'POSH / ICC Information Board','posh_icc_information_board_342','select','Assessment criterion 342 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,99,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='posh_icc_information_board_342');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_342','textarea','Remarks for assessment criterion 342: POSH / ICC Information Board','Enter remarks or observations for this criterion.',NULL,0,NULL,100,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_342');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Wheelchair Access Route','wheelchair_access_route_343','select','Assessment criterion 343 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,101,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='wheelchair_access_route_343');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_343','textarea','Remarks for assessment criterion 343: Wheelchair Access Route','Enter remarks or observations for this criterion.',NULL,0,NULL,102,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_343');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Disabled Toilet','disabled_toilet_344','select','Assessment criterion 344 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,103,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='disabled_toilet_344');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_344','textarea','Remarks for assessment criterion 344: Disabled Toilet','Enter remarks or observations for this criterion.',NULL,0,NULL,104,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_344');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ramp Access','ramp_access_345','select','Assessment criterion 345 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,105,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ramp_access_345');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_345','textarea','Remarks for assessment criterion 345: Ramp Access','Enter remarks or observations for this criterion.',NULL,0,NULL,106,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_345');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CCTV Surveillance Notice','cctv_surveillance_notice_346','select','Assessment criterion 346 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,107,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cctv_surveillance_notice_346');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_346','textarea','Remarks for assessment criterion 346: CCTV Surveillance Notice','Enter remarks or observations for this criterion.',NULL,0,NULL,108,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_346');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Authorized Personnel Only','authorized_personnel_only_347','select','Assessment criterion 347 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,109,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='authorized_personnel_only_347');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_347','textarea','Remarks for assessment criterion 347: Authorized Personnel Only','Enter remarks or observations for this criterion.',NULL,0,NULL,110,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_347');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Medical Gas Pipeline Identification','medical_gas_pipeline_identification_348','select','Assessment criterion 348 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,111,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='medical_gas_pipeline_identification_348');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_348','textarea','Remarks for assessment criterion 348: Medical Gas Pipeline Identification','Enter remarks or observations for this criterion.',NULL,0,NULL,112,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_348');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Electrical Panel Signage','electrical_panel_signage_349','select','Assessment criterion 349 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,113,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='electrical_panel_signage_349');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_349','textarea','Remarks for assessment criterion 349: Electrical Panel Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,114,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_349');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'RO Plant / Water Supply Signage','ro_plant_water_supply_signage_350','select','Assessment criterion 350 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,115,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ro_plant_water_supply_signage_350');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_350','textarea','Remarks for assessment criterion 350: RO Plant / Water Supply Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,116,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_350');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Generator / DG Room Signage','generator_dg_room_signage_351','select','Assessment criterion 351 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,117,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='generator_dg_room_signage_351');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_351','textarea','Remarks for assessment criterion 351: Generator / DG Room Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,118,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_351');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hazardous Material Storage Signage','hazardous_material_storage_signage_352','select','Assessment criterion 352 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,119,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hazardous_material_storage_signage_352');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_352','textarea','Remarks for assessment criterion 352: Hazardous Material Storage Signage','Enter remarks or observations for this criterion.',NULL,0,NULL,120,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_352');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Oxygen Cylinder Storage Signage Full, empty','oxygen_cylinder_storage_signage_full_empty_353','select','Assessment criterion 353 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,121,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='oxygen_cylinder_storage_signage_full_empty_353');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_353','textarea','Remarks for assessment criterion 353: Oxygen Cylinder Storage Signage Full, empty','Enter remarks or observations for this criterion.',NULL,0,NULL,122,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_353');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hospital Scope of Services','hospital_scope_of_services_354','select','Assessment criterion 354 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,123,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hospital_scope_of_services_354');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_354','textarea','Remarks for assessment criterion 354: Hospital Scope of Services','Enter remarks or observations for this criterion.',NULL,0,NULL,124,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_354');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Consultant / Doctor Availability Board','consultant_doctor_availability_board_355','select','Assessment criterion 355 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,125,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='consultant_doctor_availability_board_355');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_355','textarea','Remarks for assessment criterion 355: Consultant / Doctor Availability Board','Enter remarks or observations for this criterion.',NULL,0,NULL,126,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_355');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Codes Display','emergency_codes_display_356','select','Assessment criterion 356 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,127,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_codes_display_356');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_356','textarea','Remarks for assessment criterion 356: Emergency Codes Display','Enter remarks or observations for this criterion.',NULL,0,NULL,128,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_356');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Floor Directory','floor_directory_357','select','Assessment criterion 357 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,129,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='floor_directory_357');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_357','textarea','Remarks for assessment criterion 357: Floor Directory','Enter remarks or observations for this criterion.',NULL,0,NULL,130,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_357');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Scope of services','scope_of_services_358','select','Assessment criterion 358 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,131,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='scope_of_services_358');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_358','textarea','Remarks for assessment criterion 358: Scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,132,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_358');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Departmental Scope of services','departmental_scope_of_services_359','select','Assessment criterion 359 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,133,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='departmental_scope_of_services_359');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_359','textarea','Remarks for assessment criterion 359: Departmental Scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,134,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_359');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'As per PPT','as_per_ppt_360','select','Assessment criterion 360 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,135,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='as_per_ppt_360');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_360','textarea','Remarks for assessment criterion 360: As per PPT','Enter remarks or observations for this criterion.',NULL,0,NULL,136,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_360');

-- Section: TRAINING
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='training' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on scope of services','training_on_scope_of_services_361','select','Assessment criterion 361 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_scope_of_services_361');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_361','textarea','Remarks for assessment criterion 361: Training on scope of services','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_361');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Safe practices in Laboratory','training_on_safe_practices_in_laboratory_362','select','Assessment criterion 362 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_safe_practices_in_laboratory_362');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_362','textarea','Remarks for assessment criterion 362: Training on Safe practices in Laboratory','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_362');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Safe practices in Imaging','training_on_safe_practices_in_imaging_363','select','Assessment criterion 363 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_safe_practices_in_imaging_363');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_363','textarea','Remarks for assessment criterion 363: Training on Safe practices in Imaging','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_363');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Triage','training_on_triage_364','select','Assessment criterion 364 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_triage_364');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_364','textarea','Remarks for assessment criterion 364: Training on Triage','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_364');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Handling Emergency patient Triage','training_on_handling_emergency_patient_triage_365','select','Assessment criterion 365 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_handling_emergency_patient_triage_365');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_365','textarea','Remarks for assessment criterion 365: Training on Handling Emergency patient Triage','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_365');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Infection Control Practices','training_on_infection_control_practices_366','select','Assessment criterion 366 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_infection_control_practices_366');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_366','textarea','Remarks for assessment criterion 366: Training on Infection Control Practices','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_366');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Safety Education programme','training_on_safety_education_programme_367','select','Assessment criterion 367 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_safety_education_programme_367');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_367','textarea','Remarks for assessment criterion 367: Training on Safety Education programme','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_367');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Needle Stick Injury','training_on_needle_stick_injury_368','select','Assessment criterion 368 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_needle_stick_injury_368');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_368','textarea','Remarks for assessment criterion 368: Training on Needle Stick Injury','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_368');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Medication Error','training_on_medication_error_369','select','Assessment criterion 369 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_medication_error_369');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_369','textarea','Remarks for assessment criterion 369: Training on Medication Error','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_369');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Disciplinary procedures','training_on_disciplinary_procedures_370','select','Assessment criterion 370 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_disciplinary_procedures_370');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_370','textarea','Remarks for assessment criterion 370: Training on Disciplinary procedures','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_370');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on Grievance Handling procedures','training_on_grievance_handling_procedures_371','select','Assessment criterion 371 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_grievance_handling_procedures_371');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_371','textarea','Remarks for assessment criterion 371: Training on Grievance Handling procedures','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_371');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training on handling Chemotherapeutic drugs','training_on_handling_chemotherapeutic_drugs_372','select','Assessment criterion 372 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_handling_chemotherapeutic_drugs_372');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_372','textarea','Remarks for assessment criterion 372: Training on handling Chemotherapeutic drugs','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_372');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Training On Emergency Codes','training_on_emergency_codes_373','select','Assessment criterion 373 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='training_on_emergency_codes_373');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_373','textarea','Remarks for assessment criterion 373: Training On Emergency Codes','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_373');

-- Section: REGISTER
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='register' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'ADR','adr_374','select','Assessment criterion 374 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='adr_374');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_374','textarea','Remarks for assessment criterion 374: ADR','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_374');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'BLOOD TRANSFUSION','blood_transfusion_375','select','Assessment criterion 375 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_transfusion_375');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_375','textarea','Remarks for assessment criterion 375: BLOOD TRANSFUSION','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_375');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CAUTI MASTER  REGISTER','cauti_master_register_376','select','Assessment criterion 376 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cauti_master_register_376');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_376','textarea','Remarks for assessment criterion 376: CAUTI MASTER  REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_376');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CENSUS','census_377','select','Assessment criterion 377 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='census_377');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_377','textarea','Remarks for assessment criterion 377: CENSUS','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_377');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CLABSI MASTER REGISTER','clabsi_master_register_378','select','Assessment criterion 378 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='clabsi_master_register_378');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_378','textarea','Remarks for assessment criterion 378: CLABSI MASTER REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_378');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CSSD','cssd_379','select','Assessment criterion 379 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cssd_379');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_379','textarea','Remarks for assessment criterion 379: CSSD','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_379');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'EQUIPMENT DOWN REGISTER','equipment_down_register_380','select','Assessment criterion 380 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='equipment_down_register_380');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_380','textarea','Remarks for assessment criterion 380: EQUIPMENT DOWN REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_380');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'IMPLANT CONSUMPTION REGISTER','implant_consumption_register_381','select','Assessment criterion 381 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='implant_consumption_register_381');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_381','textarea','Remarks for assessment criterion 381: IMPLANT CONSUMPTION REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_381');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'ISSUE REGISTER- MRD','issue_register_mrd_382','select','Assessment criterion 382 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='issue_register_mrd_382');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_382','textarea','Remarks for assessment criterion 382: ISSUE REGISTER- MRD','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_382');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MAINTENANCE COMPLAINT REGISTER','maintenance_complaint_register_383','select','Assessment criterion 383 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='maintenance_complaint_register_383');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_383','textarea','Remarks for assessment criterion 383: MAINTENANCE COMPLAINT REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_383');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER BED SORE','master_register_bed_sore_384','select','Assessment criterion 384 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_bed_sore_384');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_384','textarea','Remarks for assessment criterion 384: MASTER REGISTER BED SORE','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_384');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER- MRD','master_register_mrd_385','select','Assessment criterion 385 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_mrd_385');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_385','textarea','Remarks for assessment criterion 385: MASTER REGISTER- MRD','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_385');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER OF COLLECTION CENTRE','master_register_of_collection_centre_386','select','Assessment criterion 386 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_of_collection_centre_386');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_386','textarea','Remarks for assessment criterion 386: MASTER REGISTER OF COLLECTION CENTRE','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_386');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER OF PATHOLGY FOR WARD','master_register_of_patholgy_for_ward_387','select','Assessment criterion 387 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_of_patholgy_for_ward_387');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_387','textarea','Remarks for assessment criterion 387: MASTER REGISTER OF PATHOLGY FOR WARD','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_387');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER OF PATHOLOGY','master_register_of_pathology_388','select','Assessment criterion 388 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_of_pathology_388');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_388','textarea','Remarks for assessment criterion 388: MASTER REGISTER OF PATHOLOGY','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_388');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER OF RADIOLOGY','master_register_of_radiology_389','select','Assessment criterion 389 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_of_radiology_389');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_389','textarea','Remarks for assessment criterion 389: MASTER REGISTER OF RADIOLOGY','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_389');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER- OT','master_register_ot_390','select','Assessment criterion 390 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_ot_390');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_390','textarea','Remarks for assessment criterion 390: MASTER REGISTER- OT','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_390');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MASTER REGISTER-EMERGENCY','master_register_emergency_391','select','Assessment criterion 391 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='master_register_emergency_391');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_391','textarea','Remarks for assessment criterion 391: MASTER REGISTER-EMERGENCY','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_391');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MLC REGISTER- MRD','mlc_register_mrd_392','select','Assessment criterion 392 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mlc_register_mrd_392');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_392','textarea','Remarks for assessment criterion 392: MLC REGISTER- MRD','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_392');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'NARCOTICS REGISTER','narcotics_register_393','select','Assessment criterion 393 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='narcotics_register_393');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_393','textarea','Remarks for assessment criterion 393: NARCOTICS REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_393');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'NSI REGISTER','nsi_register_394','select','Assessment criterion 394 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nsi_register_394');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_394','textarea','Remarks for assessment criterion 394: NSI REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_394');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'OPD MASTER REGISTER- MRD','opd_master_register_mrd_395','select','Assessment criterion 395 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='opd_master_register_mrd_395');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_395','textarea','Remarks for assessment criterion 395: OPD MASTER REGISTER- MRD','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_395');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PATIENT GRIEVANCECOMPLAINT HANDLING REGISTER','patient_grievancecomplaint_handling_register_396','select','Assessment criterion 396 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,45,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='patient_grievancecomplaint_handling_register_396');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_396','textarea','Remarks for assessment criterion 396: PATIENT GRIEVANCECOMPLAINT HANDLING REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,46,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_396');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PRE AND POST EXPOSURE PROPHYLAXIS REGISTER','pre_and_post_exposure_prophylaxis_register_397','select','Assessment criterion 397 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,47,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pre_and_post_exposure_prophylaxis_register_397');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_397','textarea','Remarks for assessment criterion 397: PRE AND POST EXPOSURE PROPHYLAXIS REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,48,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_397');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'REFFERAL MASTER REGISTER','refferal_master_register_398','select','Assessment criterion 398 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,49,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='refferal_master_register_398');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_398','textarea','Remarks for assessment criterion 398: REFFERAL MASTER REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,50,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_398');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'REFFERAL MASTER REGISTER','refferal_master_register_399','select','Assessment criterion 399 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,51,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='refferal_master_register_399');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_399','textarea','Remarks for assessment criterion 399: REFFERAL MASTER REGISTER','Enter remarks or observations for this criterion.',NULL,0,NULL,52,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_399');

-- Section: IPD FILE
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='ipd-file' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'As per scope ipd file one from each scope','as_per_scope_ipd_file_one_from_each_scope_400','select','Assessment criterion 400 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='as_per_scope_ipd_file_one_from_each_scope_400');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_400','textarea','Remarks for assessment criterion 400: As per scope ipd file one from each scope','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_400');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Filled-in Blood transfusion consent form','filled_in_blood_transfusion_consent_form_401','select','Assessment criterion 401 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='filled_in_blood_transfusion_consent_form_401');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_401','textarea','Remarks for assessment criterion 401: Filled-in Blood transfusion consent form','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_401');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Filled Deep Vein Thrombosis','filled_deep_vein_thrombosis_402','select','Assessment criterion 402 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='filled_deep_vein_thrombosis_402');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_402','textarea','Remarks for assessment criterion 402: Filled Deep Vein Thrombosis','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_402');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Filled in Feedback form','filled_in_feedback_form_403','select','Assessment criterion 403 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='filled_in_feedback_form_403');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_403','textarea','Remarks for assessment criterion 403: Filled in Feedback form','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_403');

-- Section: CLINICAL AUDIT
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='clinical-audit' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Hand Hygiene Audit','hand_hygiene_audit_404','select','Assessment criterion 404 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hand_hygiene_audit_404');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_404','textarea','Remarks for assessment criterion 404: Hand Hygiene Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_404');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Biomedical Waste Management Audit','biomedical_waste_management_audit_405','select','Assessment criterion 405 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='biomedical_waste_management_audit_405');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_405','textarea','Remarks for assessment criterion 405: Biomedical Waste Management Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_405');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Infection Control Audit','infection_control_audit_406','select','Assessment criterion 406 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='infection_control_audit_406');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_406','textarea','Remarks for assessment criterion 406: Infection Control Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_406');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CSSD / Sterilization Audit','cssd_sterilization_audit_407','select','Assessment criterion 407 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cssd_sterilization_audit_407');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_407','textarea','Remarks for assessment criterion 407: CSSD / Sterilization Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_407');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Code Blue / Emergency Response Audit','code_blue_emergency_response_audit_408','select','Assessment criterion 408 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='code_blue_emergency_response_audit_408');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_408','textarea','Remarks for assessment criterion 408: Code Blue / Emergency Response Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_408');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Fire Safety Audit','fire_safety_audit_409','select','Assessment criterion 409 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='fire_safety_audit_409');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_409','textarea','Remarks for assessment criterion 409: Fire Safety Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_409');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Facility Safety Audit','facility_safety_audit_410','select','Assessment criterion 410 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='facility_safety_audit_410');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_410','textarea','Remarks for assessment criterion 410: Facility Safety Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_410');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Medical Gas System Audit','medical_gas_system_audit_411','select','Assessment criterion 411 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='medical_gas_system_audit_411');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_411','textarea','Remarks for assessment criterion 411: Medical Gas System Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_411');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'ICU Audit','icu_audit_412','select','Assessment criterion 412 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='icu_audit_412');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_412','textarea','Remarks for assessment criterion 412: ICU Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_412');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Emergency Department Audit','emergency_department_audit_413','select','Assessment criterion 413 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='emergency_department_audit_413');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_413','textarea','Remarks for assessment criterion 413: Emergency Department Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_413');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Pharmacy Audit','pharmacy_audit_414','select','Assessment criterion 414 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='pharmacy_audit_414');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_414','textarea','Remarks for assessment criterion 414: Pharmacy Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_414');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Laboratory Audit','laboratory_audit_415','select','Assessment criterion 415 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='laboratory_audit_415');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_415','textarea','Remarks for assessment criterion 415: Laboratory Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_415');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Radiology Audit','radiology_audit_416','select','Assessment criterion 416 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='radiology_audit_416');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_416','textarea','Remarks for assessment criterion 416: Radiology Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_416');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MRD Audit','mrd_audit_417','select','Assessment criterion 417 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mrd_audit_417');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_417','textarea','Remarks for assessment criterion 417: MRD Audit','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_417');

-- Section: INCIDENT REPORTING
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='incident-reporting' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Blood transfusion reaction reporting form','blood_transfusion_reaction_reporting_form_418','select','Assessment criterion 418 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_transfusion_reaction_reporting_form_418');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_418','textarea','Remarks for assessment criterion 418: Blood transfusion reaction reporting form','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_418');

-- Section: MOCK DRILL REPORTING
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='mock-drill-reporting' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Mock drill reports for fire','mock_drill_reports_for_fire_419','select','Assessment criterion 419 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mock_drill_reports_for_fire_419');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_419','textarea','Remarks for assessment criterion 419: Mock drill reports for fire','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_419');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Mock drill reports for non-fire emergencies (BLS)','mock_drill_reports_for_non_fire_emergencies_bls_420','select','Assessment criterion 420 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mock_drill_reports_for_non_fire_emergencies_bls_420');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_420','textarea','Remarks for assessment criterion 420: Mock drill reports for non-fire emergencies (BLS)','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_420');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Mock drill report on child/neonatal abduction','mock_drill_report_on_child_neonatal_abduction_421','select','Assessment criterion 421 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mock_drill_report_on_child_neonatal_abduction_421');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_421','textarea','Remarks for assessment criterion 421: Mock drill report on child/neonatal abduction','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_421');

-- Section: Committee with MOM
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='committee-with-mom' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'QUALITY ASSURANCE COMMITTEE (QAC)','quality_assurance_committee_qac_422','select','Assessment criterion 422 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='quality_assurance_committee_qac_422');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_422','textarea','Remarks for assessment criterion 422: QUALITY ASSURANCE COMMITTEE (QAC)','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_422');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'HOSPITAL FACILITY & SAFETY COMMITTEE & EMERGENCY PREPAREDNESS COMMITTEE','hospital_facility_safety_committee_emergency_preparedness_committee_423','select','Assessment criterion 423 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hospital_facility_safety_committee_emergency_preparedness_committee_423');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_423','textarea','Remarks for assessment criterion 423: HOSPITAL FACILITY & SAFETY COMMITTEE & EMERGENCY PREPAREDNESS COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_423');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CARDIO-PULMONARY RESUSCITATION (CPR) / CODE BLUE COMMITTEE','cardio_pulmonary_resuscitation_cpr_code_blue_committee_424','select','Assessment criterion 424 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='cardio_pulmonary_resuscitation_cpr_code_blue_committee_424');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_424','textarea','Remarks for assessment criterion 424: CARDIO-PULMONARY RESUSCITATION (CPR) / CODE BLUE COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_424');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'DRUG & THERAPEUTICS COMMITTEE (DTC)','drug_therapeutics_committee_dtc_425','select','Assessment criterion 425 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='drug_therapeutics_committee_dtc_425');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_425','textarea','Remarks for assessment criterion 425: DRUG & THERAPEUTICS COMMITTEE (DTC)','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_425');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'BLOOD TRANSFUSION COMMITTEE (BTC)','blood_transfusion_committee_btc_426','select','Assessment criterion 426 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='blood_transfusion_committee_btc_426');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_426','textarea','Remarks for assessment criterion 426: BLOOD TRANSFUSION COMMITTEE (BTC)','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_426');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'HOSPITAL INFECTION PREVENTION AND CONTROL COMMITTEE (HIPC)','hospital_infection_prevention_and_control_committee_hipc_427','select','Assessment criterion 427 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hospital_infection_prevention_and_control_committee_hipc_427');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_427','textarea','Remarks for assessment criterion 427: HOSPITAL INFECTION PREVENTION AND CONTROL COMMITTEE (HIPC)','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_427');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'GRIEVANCE REDRESSAL COMMITTEE','grievance_redressal_committee_428','select','Assessment criterion 428 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='grievance_redressal_committee_428');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_428','textarea','Remarks for assessment criterion 428: GRIEVANCE REDRESSAL COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_428');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'INTERNAL COMPLAINTS COMMITTEE (ICC)','internal_complaints_committee_icc_429','select','Assessment criterion 429 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='internal_complaints_committee_icc_429');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_429','textarea','Remarks for assessment criterion 429: INTERNAL COMPLAINTS COMMITTEE (ICC)','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_429');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CREDENTIALING & PRIVILEGING COMMITTEE (CPC)','credentialing_privileging_committee_cpc_430','select','Assessment criterion 430 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='credentialing_privileging_committee_cpc_430');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_430','textarea','Remarks for assessment criterion 430: CREDENTIALING & PRIVILEGING COMMITTEE (CPC)','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_430');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'PURCHASE COMMITTEE','purchase_committee_431','select','Assessment criterion 431 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='purchase_committee_431');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_431','textarea','Remarks for assessment criterion 431: PURCHASE COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_431');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'CONDEMNATION COMMITTEE','condemnation_committee_432','select','Assessment criterion 432 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='condemnation_committee_432');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_432','textarea','Remarks for assessment criterion 432: CONDEMNATION COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_432');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MEDICAL RECORD AUDIT COMMITTEE (MRAC)','medical_record_audit_committee_mrac_433','select','Assessment criterion 433 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='medical_record_audit_committee_mrac_433');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_433','textarea','Remarks for assessment criterion 433: MEDICAL RECORD AUDIT COMMITTEE (MRAC)','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_433');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'MORTALITY & MORBIDITY REVIEW COMMITTEE (MMRC)','mortality_morbidity_review_committee_mmrc_434','select','Assessment criterion 434 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='mortality_morbidity_review_committee_mmrc_434');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_434','textarea','Remarks for assessment criterion 434: MORTALITY & MORBIDITY REVIEW COMMITTEE (MMRC)','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_434');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'HOSPITAL MEDICAL ETHICS ENFORCEMENT COMMITTEE','hospital_medical_ethics_enforcement_committee_435','select','Assessment criterion 435 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='hospital_medical_ethics_enforcement_committee_435');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_435','textarea','Remarks for assessment criterion 435: HOSPITAL MEDICAL ETHICS ENFORCEMENT COMMITTEE','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_435');

-- Section: INDICATOR
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='indicator' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Bed Occupancy Ward','bed_occupancy_ward_436','select','Assessment criterion 436 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='bed_occupancy_ward_436');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_436','textarea','Remarks for assessment criterion 436: Bed Occupancy Ward','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_436');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Bed Occupancy ICU','bed_occupancy_icu_437','select','Assessment criterion 437 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='bed_occupancy_icu_437');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_437','textarea','Remarks for assessment criterion 437: Bed Occupancy ICU','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_437');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Time for initial assessment of indoor patients','time_for_initial_assessment_of_indoor_patients_438','select','Assessment criterion 438 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='time_for_initial_assessment_of_indoor_patients_438');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_438','textarea','Remarks for assessment criterion 438: Time for initial assessment of indoor patients','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_438');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Number of reporting errors/1000 investigations','number_of_reporting_errors_1000_investigations_439','select','Assessment criterion 439 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='number_of_reporting_errors_1000_investigations_439');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_439','textarea','Remarks for assessment criterion 439: Number of reporting errors/1000 investigations','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_439');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of adherence to safety precautions by staff working in diagnostics.','percentage_of_adherence_to_safety_precautions_by_staff_working_in_diagnostics_440','select','Assessment criterion 440 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_adherence_to_safety_precautions_by_staff_working_in_diagnostics_440');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_440','textarea','Remarks for assessment criterion 440: Percentage of adherence to safety precautions by staff working in diagnostics.','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_440');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Incidence of medication errors','incidence_of_medication_errors_441','select','Assessment criterion 441 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='incidence_of_medication_errors_441');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_441','textarea','Remarks for assessment criterion 441: Incidence of medication errors','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_441');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of in- patients developing adverse drug reaction(s).','percentage_of_in_patients_developing_adverse_drug_reaction_s_442','select','Assessment criterion 442 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_in_patients_developing_adverse_drug_reaction_s_442');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_442','textarea','Remarks for assessment criterion 442: Percentage of in- patients developing adverse drug reaction(s).','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_442');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of unplanned return to OT','percentage_of_unplanned_return_to_ot_443','select','Assessment criterion 443 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,15,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_unplanned_return_to_ot_443');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_443','textarea','Remarks for assessment criterion 443: Percentage of unplanned return to OT','Enter remarks or observations for this criterion.',NULL,0,NULL,16,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_443');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of surgeries where the organization’s procedure to prevent adverse events like the wrong site, wrong patient, and wrong surgery have been adhered to.','percentage_of_surgeries_where_the_organization_s_procedure_to_prevent_adverse_events_like_the_wrong_site_wrong_patient_and_wrong_surgery_have_been_adhered_to_444','select','Assessment criterion 444 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,17,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_surgeries_where_the_organization_s_procedure_to_prevent_adverse_events_like_the_wrong_site_wrong_patient_and_wrong_surgery_have_been_adhered_to_444');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_444','textarea','Remarks for assessment criterion 444: Percentage of surgeries where the organization’s procedure to prevent adverse events like the wrong site, wrong patient, and wrong surgery have been adhered to.','Enter remarks or observations for this criterion.',NULL,0,NULL,18,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_444');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of transfusion reactions','percentage_of_transfusion_reactions_445','select','Assessment criterion 445 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,19,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_transfusion_reactions_445');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_445','textarea','Remarks for assessment criterion 445: Percentage of transfusion reactions','Enter remarks or observations for this criterion.',NULL,0,NULL,20,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_445');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Standardized Mortality Ratio  for ICU','standardized_mortality_ratio_for_icu_446','select','Assessment criterion 446 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,21,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='standardized_mortality_ratio_for_icu_446');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_446','textarea','Remarks for assessment criterion 446: Standardized Mortality Ratio  for ICU','Enter remarks or observations for this criterion.',NULL,0,NULL,22,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_446');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Return to ICU within 48 hours','return_to_icu_within_48_hours_447','select','Assessment criterion 447 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,23,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='return_to_icu_within_48_hours_447');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_447','textarea','Remarks for assessment criterion 447: Return to ICU within 48 hours','Enter remarks or observations for this criterion.',NULL,0,NULL,24,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_447');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Return to the emergency department within 72 hours with similar presenting complaints','return_to_the_emergency_department_within_72_hours_with_similar_presenting_complaints_448','select','Assessment criterion 448 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,25,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='return_to_the_emergency_department_within_72_hours_with_similar_presenting_complaints_448');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_448','textarea','Remarks for assessment criterion 448: Return to the emergency department within 72 hours with similar presenting complaints','Enter remarks or observations for this criterion.',NULL,0,NULL,26,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_448');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Incidence of hospital- associated pressure ulcers
after admission','incidence_of_hospital_associated_pressure_ulcers_after_admission_449','select','Assessment criterion 449 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,27,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='incidence_of_hospital_associated_pressure_ulcers_after_admission_449');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_449','textarea','Remarks for assessment criterion 449: Incidence of hospital- associated pressure ulcers
after admission','Enter remarks or observations for this criterion.',NULL,0,NULL,28,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_449');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Catheter-associated Urinary tract infection rate','catheter_associated_urinary_tract_infection_rate_450','select','Assessment criterion 450 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,29,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='catheter_associated_urinary_tract_infection_rate_450');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_450','textarea','Remarks for assessment criterion 450: Catheter-associated Urinary tract infection rate','Enter remarks or observations for this criterion.',NULL,0,NULL,30,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_450');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Ventilator-associated Pneumonia rate','ventilator_associated_pneumonia_rate_451','select','Assessment criterion 451 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,31,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='ventilator_associated_pneumonia_rate_451');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_451','textarea','Remarks for assessment criterion 451: Ventilator-associated Pneumonia rate','Enter remarks or observations for this criterion.',NULL,0,NULL,32,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_451');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Central line- associated bloodstream infection rate','central_line_associated_bloodstream_infection_rate_452','select','Assessment criterion 452 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,33,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='central_line_associated_bloodstream_infection_rate_452');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_452','textarea','Remarks for assessment criterion 452: Central line- associated bloodstream infection rate','Enter remarks or observations for this criterion.',NULL,0,NULL,34,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_452');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Surgical Site Infection Rate','surgical_site_infection_rate_453','select','Assessment criterion 453 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,35,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='surgical_site_infection_rate_453');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_453','textarea','Remarks for assessment criterion 453: Surgical Site Infection Rate','Enter remarks or observations for this criterion.',NULL,0,NULL,36,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_453');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Compliance to Hand Hygiene practices','compliance_to_hand_hygiene_practices_454','select','Assessment criterion 454 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,37,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='compliance_to_hand_hygiene_practices_454');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_454','textarea','Remarks for assessment criterion 454: Compliance to Hand Hygiene practices','Enter remarks or observations for this criterion.',NULL,0,NULL,38,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_454');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of cases who receive appropriate prophylactic antibiotics within the specified time frame','percentage_of_cases_who_receive_appropriate_prophylactic_antibiotics_within_the_specified_time_frame_455','select','Assessment criterion 455 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,39,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_cases_who_receive_appropriate_prophylactic_antibiotics_within_the_specified_time_frame_455');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_455','textarea','Remarks for assessment criterion 455: Percentage of cases who receive appropriate prophylactic antibiotics within the specified time frame','Enter remarks or observations for this criterion.',NULL,0,NULL,40,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_455');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of rescheduling of  surgeries','percentage_of_rescheduling_of_surgeries_456','select','Assessment criterion 456 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,41,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_rescheduling_of_surgeries_456');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_456','textarea','Remarks for assessment criterion 456: Percentage of rescheduling of  surgeries','Enter remarks or observations for this criterion.',NULL,0,NULL,42,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_456');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Turnaround time  for the issue of blood and blood components','turnaround_time_for_the_issue_of_blood_and_blood_components_457','select','Assessment criterion 457 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,43,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='turnaround_time_for_the_issue_of_blood_and_blood_components_457');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_457','textarea','Remarks for assessment criterion 457: Turnaround time  for the issue of blood and blood components','Enter remarks or observations for this criterion.',NULL,0,NULL,44,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_457');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Nurse-patient ratio for ICUs and wards','nurse_patient_ratio_for_icus_and_wards_458','select','Assessment criterion 458 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,45,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='nurse_patient_ratio_for_icus_and_wards_458');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_458','textarea','Remarks for assessment criterion 458: Nurse-patient ratio for ICUs and wards','Enter remarks or observations for this criterion.',NULL,0,NULL,46,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_458');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Waiting time for outpatient consultation','waiting_time_for_outpatient_consultation_459','select','Assessment criterion 459 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,47,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='waiting_time_for_outpatient_consultation_459');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_459','textarea','Remarks for assessment criterion 459: Waiting time for outpatient consultation','Enter remarks or observations for this criterion.',NULL,0,NULL,48,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_459');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Waiting time for diagnostics','waiting_time_for_diagnostics_460','select','Assessment criterion 460 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,49,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='waiting_time_for_diagnostics_460');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_460','textarea','Remarks for assessment criterion 460: Waiting time for diagnostics','Enter remarks or observations for this criterion.',NULL,0,NULL,50,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_460');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Time taken for discharge','time_taken_for_discharge_461','select','Assessment criterion 461 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,51,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='time_taken_for_discharge_461');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_461','textarea','Remarks for assessment criterion 461: Time taken for discharge','Enter remarks or observations for this criterion.',NULL,0,NULL,52,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_461');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of medical records having incomplete and/or improper consent','percentage_of_medical_records_having_incomplete_and_or_improper_consent_462','select','Assessment criterion 462 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,53,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_medical_records_having_incomplete_and_or_improper_consent_462');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_462','textarea','Remarks for assessment criterion 462: Percentage of medical records having incomplete and/or improper consent','Enter remarks or observations for this criterion.',NULL,0,NULL,54,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_462');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Number of stock-outs of emergency medications','number_of_stock_outs_of_emergency_medications_463','select','Assessment criterion 463 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,55,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='number_of_stock_outs_of_emergency_medications_463');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_463','textarea','Remarks for assessment criterion 463: Number of stock-outs of emergency medications','Enter remarks or observations for this criterion.',NULL,0,NULL,56,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_463');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Number of variations observed in mock drills','number_of_variations_observed_in_mock_drills_464','select','Assessment criterion 464 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,57,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='number_of_variations_observed_in_mock_drills_464');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_464','textarea','Remarks for assessment criterion 464: Number of variations observed in mock drills','Enter remarks or observations for this criterion.',NULL,0,NULL,58,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_464');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Incidence of patient falls','incidence_of_patient_falls_465','select','Assessment criterion 465 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,59,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='incidence_of_patient_falls_465');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_465','textarea','Remarks for assessment criterion 465: Incidence of patient falls','Enter remarks or observations for this criterion.',NULL,0,NULL,60,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_465');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of near misses','percentage_of_near_misses_466','select','Assessment criterion 466 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,61,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_near_misses_466');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_466','textarea','Remarks for assessment criterion 466: Percentage of near misses','Enter remarks or observations for this criterion.',NULL,0,NULL,62,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_466');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Rate of needlestick injuries','rate_of_needlestick_injuries_467','select','Assessment criterion 467 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,63,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='rate_of_needlestick_injuries_467');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_467','textarea','Remarks for assessment criterion 467: Rate of needlestick injuries','Enter remarks or observations for this criterion.',NULL,0,NULL,64,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_467');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Appropriate handovers during shift change','appropriate_handovers_during_shift_change_468','select','Assessment criterion 468 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,65,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='appropriate_handovers_during_shift_change_468');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_468','textarea','Remarks for assessment criterion 468: Appropriate handovers during shift change','Enter remarks or observations for this criterion.',NULL,0,NULL,66,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_468');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Percentage of safe and rational prescriptions','percentage_of_safe_and_rational_prescriptions_469','select','Assessment criterion 469 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,67,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='percentage_of_safe_and_rational_prescriptions_469');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_469','textarea','Remarks for assessment criterion 469: Percentage of safe and rational prescriptions','Enter remarks or observations for this criterion.',NULL,0,NULL,68,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_469');

-- Section: OTHER
SET @section_id := (SELECT id FROM checklist_sections WHERE checklist_type_id=@assessment_id AND slug='other' LIMIT 1);
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Organogram(organizational structure)','organogram_organizational_structure_470','select','Assessment criterion 470 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,1,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='organogram_organizational_structure_470');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_470','textarea','Remarks for assessment criterion 470: Organogram(organizational structure)','Enter remarks or observations for this criterion.',NULL,0,NULL,2,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_470');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Facility inspection rounds (last two)','facility_inspection_rounds_last_two_471','select','Assessment criterion 471 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,3,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='facility_inspection_rounds_last_two_471');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_471','textarea','Remarks for assessment criterion 471: Facility inspection rounds (last two)','Enter remarks or observations for this criterion.',NULL,0,NULL,4,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_471');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Geotagged photograph of storage area for Hazardous material','geotagged_photograph_of_storage_area_for_hazardous_material_472','select','Assessment criterion 472 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,5,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='geotagged_photograph_of_storage_area_for_hazardous_material_472');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_472','textarea','Remarks for assessment criterion 472: Geotagged photograph of storage area for Hazardous material','Enter remarks or observations for this criterion.',NULL,0,NULL,6,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_472');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Scanned copy of few Material Safety Data Sheet (MSDS) sheets','scanned_copy_of_few_material_safety_data_sheet_msds_sheets_473','select','Assessment criterion 473 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,7,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='scanned_copy_of_few_material_safety_data_sheet_msds_sheets_473');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_473','textarea','Remarks for assessment criterion 473: Scanned copy of few Material Safety Data Sheet (MSDS) sheets','Enter remarks or observations for this criterion.',NULL,0,NULL,8,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_473');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Preventive maintenance planner for Medical equipment','preventive_maintenance_planner_for_medical_equipment_474','select','Assessment criterion 474 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,9,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='preventive_maintenance_planner_for_medical_equipment_474');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_474','textarea','Remarks for assessment criterion 474: Preventive maintenance planner for Medical equipment','Enter remarks or observations for this criterion.',NULL,0,NULL,10,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_474');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Water testing reports (last two) for drinking water and dialysis water','water_testing_reports_last_two_for_drinking_water_and_dialysis_water_475','select','Assessment criterion 475 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,11,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='water_testing_reports_last_two_for_drinking_water_and_dialysis_water_475');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_475','textarea','Remarks for assessment criterion 475: Water testing reports (last two) for drinking water and dialysis water','Enter remarks or observations for this criterion.',NULL,0,NULL,12,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_475');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'List of software used in the Healthcare Organisation','list_of_software_used_in_the_healthcare_organisation_476','select','Assessment criterion 476 from the Assessment Checklist workbook.',NULL,'["YES", "NO", "NOT APPLICABLE"]',0,NULL,13,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='list_of_software_used_in_the_healthcare_organisation_476');
INSERT INTO checklist_fields (section_id,field_name,field_key,input_type,description,placeholder,options_json,is_repeatable,max_files,sort_order,status) SELECT @section_id,'Remarks','remarks_476','textarea','Remarks for assessment criterion 476: List of software used in the Healthcare Organisation','Enter remarks or observations for this criterion.',NULL,0,NULL,14,1 WHERE NOT EXISTS (SELECT 1 FROM checklist_fields WHERE section_id=@section_id AND field_key='remarks_476');

COMMIT;
SET FOREIGN_KEY_CHECKS=1;

-- Completed: 31 sections, 470 criteria, 940 fields.