Commit 574e5618 by Owen Ryan Ang

changed reading of 'hidden : y' to 'hidden : true'

parent 05ddca03
//Data Input Field Config
export var SCHEMA_FILE_PATH = "./WebGde-Widgets/sample_schema/schema_sqa.json";
// export var SCHEMA_FILE_PATH = "./WebGde-Widgets/sample_schema/HR Speed Test schema.json";
export var SCHEMA_FILE_PATH = "./WebGde-Widgets/sample_schema/Navotas 2.json";
//DBLookup Webservice URL
export var DB_URL = "http://localhost:8080/WebGde/svc/gfs-rest/db-lookup"
\ No newline at end of file
......@@ -1924,7 +1924,7 @@ const deconstruct = async (section, container, classAttribute) => {
}
input.setAttribute('class', classAttribute)
inputContainer.appendChild(input)
if (hidden && hidden.toLowerCase() === 'y') {
if (hidden && hidden !== undefined) {
newField.style.display = 'none'; // Hide the input
newField.classList.add('hidden'); // Add 'hidden' class
}
......
......@@ -21,7 +21,7 @@ export const IS_RETRIEVE_FROM_GFS = "N"
export const INVALID_KEYS = "F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11,F12,PrintScreen,ScrollLock,Pause,PageUp,PageDown,Insert,Delete,Control"
//BPO CONFIG
export const IS_RETRIEVE_FROM_BPO = "Y"
export const IS_RETRIEVE_FROM_BPO = "N"
// export const BPO_URL = "http://35.171.20.94:8080/bpo-sqa/"
// export const CURRENT_NODE = "Web GDE"
export let BPO_URL = DOMAIN + "bpo/";
......@@ -30,7 +30,7 @@ export let CURRENT_NODE = ""
export const ENCODING_PASS = "PASS1"
export const NEXT_NODE = "Complete"
export const EXCEPTION_NODE = "Exception"
export const SHOW_ELEMENT_LIST_VIEWER = "Y"
export const SHOW_ELEMENT_LIST_VIEWER = "N"
export const ADD_NEW_OPTION = "N"
export const DISPLAYED_DETAILS = "Address" //pipe-delimited
......
{
"RESIDENT REGISTRATION FORM" : {
"NAVOTAS" : {
"registration_no" : {
"fieldLabel" : "Registration Number",
"aka" : "field2",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"invalidchar" : "`~!@#&$%^*_={}[]:;/\"|\\<>",
"mandatory" : false
},
"hidden" : true
},
"date_of_submission" : {
"fieldLabel" : "Date of Submission",
"aka" : "field3",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"hidden" : true
},
"cert_data_consent_auth" : {
"fieldLabel" : "Certification, Data Privacy Consent, and Authorization",
"aka" : "field4",
"validation" : {
"fieldLength" : 12.0,
"collection" : "radiolist",
"items" : [ "Authorized", "Unauthorized" ],
"mandatory" : false
},
"hidden" : true
},
"signature_resident" : {
"fieldLabel" : "Signature over Printed Name (Resident)",
"aka" : "field5",
"validation" : {
"fieldLength" : 8.0,
"collection" : "radiolist",
"items" : [ "Signed", "Unsigned" ],
"mandatory" : false
},
"hidden" : true
},
"signature_lgu" : {
"fieldLabel" : "Signature over Printed Name (LGU Personnel)",
"aka" : "field6",
"validation" : {
"fieldLength" : 8.0,
"collection" : "radiolist",
"items" : [ "Signed", "Unsigned" ],
"mandatory" : false
},
"hidden" : true
},
"last_name" : {
"fieldLabel" : "Last Name",
"aka" : "field7",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"invalidchar" : "`~!@#&$%^*_={}[]:;/\"|\\<>0123456789",
"mandatory" : false
},
"hidden" : true
},
"first_name" : {
"fieldLabel" : "First Name",
"aka" : "field8",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"middle_name" : {
"fieldLabel" : "Middle Name",
"aka" : "field9",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"suffix" : {
"fieldLabel" : "Suffix",
"aka" : "field10",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"gender" : {
"fieldLabel" : "Gender",
"aka" : "field11",
"validation" : {
"fieldLength" : 6.0,
"collection" : "dropdown",
"options" : [ "Male", "Female" ],
"mandatory" : false
},
"hidden" : true
},
"birthdate" : {
"fieldLabel" : "Date of Birth (mm/dd/yyyy)",
"aka" : "field12",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"hidden" : true
},
"birthplace" : {
"fieldLabel" : "Place of Birth",
"aka" : "field13",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"civil_status" : {
"fieldLabel" : "Civil Status",
"aka" : "field14",
"validation" : {
"fieldLength" : 25.0,
"collection" : "dropdown",
"options" : [ "Single", "Separated", "Cohabitation (live-in)", "Married", "Widow/er" ],
"mandatory" : false
},
"hidden" : true
},
"citizen_type" : {
"fieldLabel" : "Citizen Type",
"aka" : "field15",
"validation" : {
"fieldLength" : 25.0,
"collection" : "checklist",
"items" : [ "Registered Voter", "Living in Navotas", "Working in Navotas" ],
"invalidchar" : "`~!@#&$%^*_={}[]:;/\"|\\<>0123456789",
"mandatory" : false
},
"hidden" : true
},
"social_status" : {
"fieldLabel" : "Social Status",
"aka" : "field16",
"validation" : {
"fieldLength" : 25.0,
"collection" : "checklist",
"items" : [ "General Population", "4Ps", "PWD", "Senior Citizen", "Solo Parent" ],
"mandatory" : false
},
"hidden" : true
},
"highest_educ" : {
"fieldLabel" : "Highest Educational Attainment",
"aka" : "field17",
"validation" : {
"fieldLength" : 25.0,
"collection" : "dropdown",
"options" : [ "None", "Kindergarten", "Elementary", "Jr. High School", "Sr. high School", "College", "Vocational", "Post Graduate" ],
"mandatory" : false
},
"hidden" : true
},
"nationality" : {
"fieldLabel" : "Nationality",
"aka" : "field18",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"blood_type" : {
"fieldLabel" : "Blood Type",
"aka" : "field19",
"validation" : {
"fieldLength" : 3.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"ethnic_origin" : {
"fieldLabel" : "Ethnic Origin",
"aka" : "field20",
"validation" : {
"fieldLength" : 20.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"religion" : {
"fieldLabel" : "Religion",
"aka" : "field21",
"validation" : {
"fieldLength" : 20.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"known_languages" : {
"fieldLabel" : "Known Language/s",
"aka" : "field22",
"validation" : {
"fieldLength" : 30.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"bldg_info" : {
"fieldLabel" : "Room/Floor/Unit no./Bldg. name",
"aka" : "field23",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"house_no" : {
"fieldLabel" : "House no/Lot & Blk no",
"aka" : "field24",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"street_name" : {
"fieldLabel" : "Street Name",
"aka" : "field25",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"subd_vill" : {
"fieldLabel" : "Subdivision/Village",
"aka" : "field26",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"barangay" : {
"fieldLabel" : "Barangay",
"aka" : "field27",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"city" : {
"fieldLabel" : "City",
"aka" : "field28",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"province" : {
"fieldLabel" : "Province",
"aka" : "field29",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"zipcode" : {
"fieldLabel" : "Zip Code",
"aka" : "field30",
"validation" : {
"fieldLength" : 4.0,
"collection" : "numeric",
"mandatory" : false
},
"hidden" : true
},
"mobile_no" : {
"fieldLabel" : "Mobile Number",
"aka" : "field31",
"validation" : {
"fieldLength" : 15.0,
"collection" : "numeric",
"mandatory" : false
},
"hidden" : true
},
"email_add" : {
"fieldLabel" : "Email Address",
"aka" : "field32",
"validation" : {
"fieldLength" : 25.0,
"collection" : "email",
"mandatory" : false
},
"hidden" : true
},
"messenger_name" : {
"fieldLabel" : "Messenger Name",
"aka" : "field33",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"source_of_income" : {
"fieldLabel" : "Source of Income",
"aka" : "field34",
"validation" : {
"fieldLength" : 15.0,
"collection" : "checklist",
"items" : [ "Business", "Commission", "Pension", "Salary", "Others" ],
"mandatory" : false
},
"hidden" : true
},
"employment_status" : {
"fieldLabel" : "Employment Status",
"aka" : "field35",
"validation" : {
"fieldLength" : 15.0,
"collection" : "dropdown",
"options" : [ "Employed", "Unemployed", "Self-employed" ],
"mandatory" : false
},
"hidden" : true
},
"employment_category" : {
"fieldLabel" : "Employment Category",
"aka" : "field36",
"validation" : {
"fieldLength" : 20.0,
"collection" : "dropdown",
"options" : [ "Permanent/Regular", "Seasonal", "Casual", "Emergency" ],
"mandatory" : false
},
"hidden" : true
},
"employment_type" : {
"fieldLabel" : "Employment Type",
"aka" : "field37",
"validation" : {
"fieldLength" : 10.0,
"collection" : "radiolist",
"items" : [ "Government", "Private" ],
"mandatory" : false
},
"hidden" : true
},
"occupation" : {
"fieldLabel" : "Occupation",
"aka" : "field38",
"validation" : {
"fieldLength" : 50.0,
"collection" : "dropdown",
"options" : [ "Manager", "Professional", "Technician and Associate Professional", "Clerical Support Workers", "Service and Sale Workers", "Skilled Agricultural", "Forestry", "and Fishery Workers", "Craft and Related Trade Workers", "Paint and Machine Operators and Assemblers", "Elementary Occupations", "Armed Forces Occupation", "Others (Please Specify)" ],
"mandatory" : false
},
"hidden" : true
},
"monthly_income" : {
"fieldLabel" : "Monthly Income",
"aka" : "field39",
"validation" : {
"fieldLength" : 20.0,
"collection" : "dropdown",
"options" : [ "60k and above", "50k - 60k", "40k - 50k", "30k - 40k", "20k - 30k", "10k - 20k", "5k - 10k", "1k - 5k", "below 1k" ],
"mandatory" : false
},
"hidden" : true
},
"employer_buss_name" : {
"fieldLabel" : "Employer / Business Name",
"aka" : "field40",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_bldg_info" : {
"fieldLabel" : "Room/Floor/Unit no./Bldg. name",
"aka" : "field41",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_house_no" : {
"fieldLabel" : "House no/Lot & Blk no",
"aka" : "field42",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_street_name" : {
"fieldLabel" : "Street Name",
"aka" : "field43",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_subd_vill" : {
"fieldLabel" : "Subdivision/Village",
"aka" : "field44",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_barangay" : {
"fieldLabel" : "Barangay",
"aka" : "field45",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_city" : {
"fieldLabel" : "City",
"aka" : "field46",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_province" : {
"fieldLabel" : "Province",
"aka" : "field47",
"validation" : {
"fieldLength" : 25.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"emp_zipcode" : {
"fieldLabel" : "Zip Code",
"aka" : "field48",
"validation" : {
"fieldLength" : 4.0,
"collection" : "numeric",
"mandatory" : false
},
"childof" : "source_of_income",
"parentvalue" : [ "Business", "Salary" ],
"hidden" : true
},
"contact_person_lastname" : {
"fieldLabel" : "Contact Person - Last Name",
"aka" : "field49",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"contact_person_firstname" : {
"fieldLabel" : "Contact Person - First Name",
"aka" : "field50",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"contact_person_middlename" : {
"fieldLabel" : "Contact Person - Middle Name",
"aka" : "field51",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"contact_person_suffix" : {
"fieldLabel" : "Contact Person - Suffix",
"aka" : "field52",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"contact_person_relationship" : {
"fieldLabel" : "Relationship",
"aka" : "field53",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"hidden" : true
},
"contact_person_number" : {
"fieldLabel" : "Contact Number",
"aka" : "field54",
"validation" : {
"fieldLength" : 15.0,
"collection" : "numeric",
"mandatory" : false
},
"hidden" : true
},
"principal_to_be_insured" : {
"fieldLabel" : "I'm the Principal to be Insured?",
"aka" : "field55",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"hidden" : true
},
"father_lastname" : {
"fieldLabel" : "Father - Last Name",
"aka" : "field56",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_firstname" : {
"fieldLabel" : "Father - First Name",
"aka" : "field57",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_middlename" : {
"fieldLabel" : "Father - Middle Name",
"aka" : "field58",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_suffix" : {
"fieldLabel" : "Father - Suffix",
"aka" : "field59",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_birthdate" : {
"fieldLabel" : "Father - Date of Birth",
"aka" : "field60",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_gender" : {
"fieldLabel" : "Father - Gender",
"aka" : "field61",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_same_residence" : {
"fieldLabel" : "Father - Same Residence?",
"aka" : "field62",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"father_dependent" : {
"fieldLabel" : "Father - Dependent?",
"aka" : "field63",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_lastname" : {
"fieldLabel" : "Mother - Last Name",
"aka" : "field64",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_firstname" : {
"fieldLabel" : "Mother - First Name",
"aka" : "field65",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_middlename" : {
"fieldLabel" : "Mother - Middle Name",
"aka" : "field66",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_suffix" : {
"fieldLabel" : "Mother - Suffix",
"aka" : "field67",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_birthdate" : {
"fieldLabel" : "Mother - Date of Birth",
"aka" : "field68",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_gender" : {
"fieldLabel" : "Mother - Gender",
"aka" : "field69",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_same_residence" : {
"fieldLabel" : "Mother - Same Residence?",
"aka" : "field70",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"mother_dependent" : {
"fieldLabel" : "Mother - Dependent?",
"aka" : "field71",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_lastname" : {
"fieldLabel" : "Spouse - Last Name",
"aka" : "field72",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_firstname" : {
"fieldLabel" : "Spouse - First Name",
"aka" : "field73",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_middlename" : {
"fieldLabel" : "Spouse - Middle Name",
"aka" : "field74",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_suffix" : {
"fieldLabel" : "Spouse - Suffix",
"aka" : "field75",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_birthdate" : {
"fieldLabel" : "Spouse - Date of Birth",
"aka" : "field76",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_gender" : {
"fieldLabel" : "Spouse - Gender",
"aka" : "field77",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_same_residence" : {
"fieldLabel" : "Spouse - Same Residence?",
"aka" : "field78",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"spouse_dependent" : {
"fieldLabel" : "Spouse - Dependent?",
"aka" : "field79",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"child_no" : {
"fieldLabel" : "Number of Children",
"aka" : "field80",
"validation" : {
"fieldLength" : 1.0,
"collection" : "dropdown",
"options" : [ "0", "1", "2", "3", "4", "5" ],
"mandatory" : false
},
"childof" : "principal_to_be_insured",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"child1_lastname" : {
"fieldLabel" : "Child1 - Last Name",
"aka" : "field81",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_firstname" : {
"fieldLabel" : "Child1 - First Name",
"aka" : "field82",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_middlename" : {
"fieldLabel" : "Child1 - Middle Name",
"aka" : "field83",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_suffix" : {
"fieldLabel" : "Child1 - Suffix",
"aka" : "field84",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_birthdate" : {
"fieldLabel" : "Child1 - Date of Birth",
"aka" : "field85",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_gender" : {
"fieldLabel" : "Child1 - Gender",
"aka" : "field86",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_same_residence" : {
"fieldLabel" : "Child1 - Same Residence?",
"aka" : "field87",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child1_dependent" : {
"fieldLabel" : "Child1 - Dependent?",
"aka" : "field88",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"child2_lastname" : {
"fieldLabel" : "Child2 - Last Name",
"aka" : "field89",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_firstname" : {
"fieldLabel" : "Child2 - First Name",
"aka" : "field90",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_middlename" : {
"fieldLabel" : "Child2 - Middle Name",
"aka" : "field91",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_suffix" : {
"fieldLabel" : "Child2 - Suffix",
"aka" : "field92",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_birthdate" : {
"fieldLabel" : "Child2 - Date of Birth",
"aka" : "field93",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_gender" : {
"fieldLabel" : "Child2 - Gender",
"aka" : "field94",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_same_residence" : {
"fieldLabel" : "Child2 - Same Residence?",
"aka" : "field95",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child2_dependent" : {
"fieldLabel" : "Child2 - Dependent?",
"aka" : "field96",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"child3_lastname" : {
"fieldLabel" : "Child3 - Last Name",
"aka" : "field97",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_firstname" : {
"fieldLabel" : "Child3 - First Name",
"aka" : "field98",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_middlename" : {
"fieldLabel" : "Child3 - Middle Name",
"aka" : "field99",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_suffix" : {
"fieldLabel" : "Child3 - Suffix",
"aka" : "field100",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_birthdate" : {
"fieldLabel" : "Child3 - Date of Birth",
"aka" : "field101",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_gender" : {
"fieldLabel" : "Child3 - Gender",
"aka" : "field102",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_same_residence" : {
"fieldLabel" : "Child3 - Same Residence?",
"aka" : "field103",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child3_dependent" : {
"fieldLabel" : "Child3 - Dependent?",
"aka" : "field104",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"child4_lastname" : {
"fieldLabel" : "Child4 - Last Name",
"aka" : "field105",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_firstname" : {
"fieldLabel" : "Child4 - First Name",
"aka" : "field106",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_middlename" : {
"fieldLabel" : "Child4 - Middle Name",
"aka" : "field107",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_suffix" : {
"fieldLabel" : "Child4 - Suffix",
"aka" : "field108",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_birthdate" : {
"fieldLabel" : "Child4 - Date of Birth",
"aka" : "field109",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_gender" : {
"fieldLabel" : "Child4 - Gender",
"aka" : "field110",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_same_residence" : {
"fieldLabel" : "Child4 - Same Residence?",
"aka" : "field111",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child4_dependent" : {
"fieldLabel" : "Child4 - Dependent?",
"aka" : "field112",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"child5_lastname" : {
"fieldLabel" : "Child5 - Last Name",
"aka" : "field113",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_firstname" : {
"fieldLabel" : "Child5 - First Name",
"aka" : "field114",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_middlename" : {
"fieldLabel" : "Child5 - Middle Name",
"aka" : "field115",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_suffix" : {
"fieldLabel" : "Child5 - Suffix",
"aka" : "field116",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_birthdate" : {
"fieldLabel" : "Child5 - Date of Birth",
"aka" : "field117",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_gender" : {
"fieldLabel" : "Child5 - Gender",
"aka" : "field118",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_same_residence" : {
"fieldLabel" : "Child5 - Same Residence?",
"aka" : "field119",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"child5_dependent" : {
"fieldLabel" : "Child5 - Dependent?",
"aka" : "field120",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "child_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"head_of_household" : {
"fieldLabel" : "I'm Head of the Household",
"aka" : "field121",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"hidden" : true
},
"hoh_lastname" : {
"fieldLabel" : "Head of Household - Last Name",
"aka" : "field122",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_firstname" : {
"fieldLabel" : "Head of Household - First Name",
"aka" : "field123",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_middlename" : {
"fieldLabel" : "Head of Household - Middle Name",
"aka" : "field124",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_suffix" : {
"fieldLabel" : "Head of Household - Suffix",
"aka" : "field125",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_birthdate" : {
"fieldLabel" : "Head of Household - Date of Birth",
"aka" : "field126",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_gender" : {
"fieldLabel" : "Head of Household - Gender",
"aka" : "field127",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_relationship_to_hoh" : {
"fieldLabel" : "Relationship to Head of Household",
"aka" : "field128",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "No" ],
"hidden" : true
},
"hoh_member_no" : {
"fieldLabel" : "Household Members",
"aka" : "field129",
"validation" : {
"fieldLength" : 1.0,
"collection" : "dropdown",
"options" : [ "0", "1", "2", "3", "4", "5" ],
"mandatory" : false
},
"childof" : "head_of_household",
"parentvalue" : [ "Yes" ],
"hidden" : true
},
"hh_member1_lastname" : {
"fieldLabel" : "Household Member1 - Last Name",
"aka" : "field130",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_firstname" : {
"fieldLabel" : "Household Member1 - First Name",
"aka" : "field131",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_middlename" : {
"fieldLabel" : "Household Member1 - Middle Name",
"aka" : "field132",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_suffix" : {
"fieldLabel" : "Household Member1 - Suffix",
"aka" : "field133",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_birthdate" : {
"fieldLabel" : "Household Member1 - Date of Birth",
"aka" : "field134",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_gender" : {
"fieldLabel" : "Household Member1 - Gender",
"aka" : "field135",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_relationship_to_hoh" : {
"fieldLabel" : "Household Member1 - Relationship to Head of Household",
"aka" : "field136",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member1_dependent" : {
"fieldLabel" : "Household Member1 - Dependent?",
"aka" : "field137",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "1", "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_lastname" : {
"fieldLabel" : "Household Member2 - Last Name",
"aka" : "field138",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_firstname" : {
"fieldLabel" : "Household Member2 - First Name",
"aka" : "field139",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_middlename" : {
"fieldLabel" : "Household Member2 - Middle Name",
"aka" : "field140",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_suffix" : {
"fieldLabel" : "Household Member2 - Suffix",
"aka" : "field141",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_birthdate" : {
"fieldLabel" : "Household Member2 - Date of Birth",
"aka" : "field142",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_gender" : {
"fieldLabel" : "Household Member2 - Gender",
"aka" : "field143",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_relationship_to_hoh" : {
"fieldLabel" : "Household Member2 - Relationship to Head of Household",
"aka" : "field144",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member2_dependent" : {
"fieldLabel" : "Household Member2 - Dependent?",
"aka" : "field145",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "2", "3", "4", "5" ],
"hidden" : true
},
"hh_member3_lastname" : {
"fieldLabel" : "Household Member3 - Last Name",
"aka" : "field146",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_firstname" : {
"fieldLabel" : "Household Member3 - First Name",
"aka" : "field147",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_middlename" : {
"fieldLabel" : "Household Member3 - Middle Name",
"aka" : "field148",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_suffix" : {
"fieldLabel" : "Household Member3 - Suffix",
"aka" : "field149",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_birthdate" : {
"fieldLabel" : "Household Member3 - Date of Birth",
"aka" : "field150",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_gender" : {
"fieldLabel" : "Household Member3 - Gender",
"aka" : "field151",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_relationship_to_hoh" : {
"fieldLabel" : "Household Member3 - Relationship to Head of Household",
"aka" : "field152",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member3_dependent" : {
"fieldLabel" : "Household Member3 - Dependent?",
"aka" : "field153",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "3", "4", "5" ],
"hidden" : true
},
"hh_member4_lastname" : {
"fieldLabel" : "Household Member4 - Last Name",
"aka" : "field154",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_firstname" : {
"fieldLabel" : "Household Member4 - First Name",
"aka" : "field155",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_middlename" : {
"fieldLabel" : "Household Member4 - Middle Name",
"aka" : "field156",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_suffix" : {
"fieldLabel" : "Household Member4 - Suffix",
"aka" : "field157",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_birthdate" : {
"fieldLabel" : "Household Member4 - Date of Birth",
"aka" : "field158",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_gender" : {
"fieldLabel" : "Household Member4 - Gender",
"aka" : "field159",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_relationship_to_hoh" : {
"fieldLabel" : "Household Member4 - Relationship to Head of Household",
"aka" : "field160",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member4_dependent" : {
"fieldLabel" : "Household Member4 - Dependent?",
"aka" : "field161",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "4", "5" ],
"hidden" : true
},
"hh_member5_lastname" : {
"fieldLabel" : "Household Member5 - Last Name",
"aka" : "field162",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_firstname" : {
"fieldLabel" : "Household Member5 - First Name",
"aka" : "field163",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_middlename" : {
"fieldLabel" : "Household Member5 - Middle Name",
"aka" : "field164",
"validation" : {
"fieldLength" : 50.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_suffix" : {
"fieldLabel" : "Household Member5 - Suffix",
"aka" : "field165",
"validation" : {
"fieldLength" : 5.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_birthdate" : {
"fieldLabel" : "Household Member5 - Date of Birth",
"aka" : "field166",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_gender" : {
"fieldLabel" : "Household Member5 - Gender",
"aka" : "field167",
"validation" : {
"fieldLength" : 6.0,
"collection" : "radiolist",
"items" : [ "Male", "Female" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_relationship_to_hoh" : {
"fieldLabel" : "Household Member5 - Relationship to Head of Household",
"aka" : "field168",
"validation" : {
"fieldLength" : 15.0,
"collection" : "alphanumeric",
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"hh_member5_dependent" : {
"fieldLabel" : "Household Member5 - Dependent?",
"aka" : "field169",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : false
},
"childof" : "hoh_member_no",
"parentvalue" : [ "5" ],
"hidden" : true
},
"ver_question1" : {
"fieldLabel" : "Verification Question 1",
"aka" : "field170",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question2" : {
"fieldLabel" : "Verification Question 2",
"aka" : "field171",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question3" : {
"fieldLabel" : "Verification Question 3",
"aka" : "field172",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question4" : {
"fieldLabel" : "Verification Question 4",
"aka" : "field173",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question5" : {
"fieldLabel" : "Verification Question 5",
"aka" : "field174",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question6" : {
"fieldLabel" : "Verification Question 6",
"aka" : "field175",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question7" : {
"fieldLabel" : "Verification Question 7",
"aka" : "field176",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question8" : {
"fieldLabel" : "Verification Question 8",
"aka" : "field177",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question9" : {
"fieldLabel" : "Verification Question 9",
"aka" : "field178",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question10" : {
"fieldLabel" : "Verification Question 10",
"aka" : "field179",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question11" : {
"fieldLabel" : "Verification Question 11",
"aka" : "field180",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question12" : {
"fieldLabel" : "Verification Question 12",
"aka" : "field181",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question13" : {
"fieldLabel" : "Verification Question 13",
"aka" : "field182",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question14" : {
"fieldLabel" : "Verification Question 14",
"aka" : "field183",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_question15" : {
"fieldLabel" : "Verification Question 15",
"aka" : "field184",
"validation" : {
"fieldLength" : 3.0,
"collection" : "radiolist",
"items" : [ "Yes", "No" ],
"mandatory" : true
}
},
"ver_geotag" : {
"fieldLabel" : "Verification - Geotag",
"aka" : "field185",
"validation" : {
"fieldLength" : 1.0,
"collection" : "geotag",
"mandatory" : false
}
},
"ver_supp_selfie" : {
"fieldLabel" : "Verification - Selfie",
"aka" : "field186",
"validation" : {
"fieldLength" : 1.0,
"collection" : "image-capture",
"mandatory" : false
}
},
"ver_supp_proof_of_residency" : {
"fieldLabel" : "Verification - Proof of Residency",
"aka" : "field187",
"validation" : {
"fieldLength" : 1.0,
"collection" : "image-capture",
"mandatory" : false
}
},
"ver_supp_resident_pic" : {
"fieldLabel" : "Verification - Resident Picture",
"aka" : "field188",
"validation" : {
"fieldLength" : 1.0,
"collection" : "image-capture",
"mandatory" : false
}
},
"ver_supp_other1" : {
"fieldLabel" : "Verification - Other Supporting Docs1",
"aka" : "field189",
"validation" : {
"fieldLength" : 1.0,
"collection" : "alphanumeric",
"mandatory" : false
}
},
"ver_supp_other2" : {
"fieldLabel" : "Verification - Other Supporting Docs2",
"aka" : "field190",
"validation" : {
"fieldLength" : 1.0,
"collection" : "alphanumeric",
"mandatory" : false
}
},
"ver_supp_other3" : {
"fieldLabel" : "Verification - Other Supporting Docs3",
"aka" : "field191",
"validation" : {
"fieldLength" : 1.0,
"collection" : "alphanumeric",
"mandatory" : false
}
},
"verification_status" : {
"fieldLabel" : "Verification Status - Verified or Reject",
"aka" : "field192",
"validation" : {
"fieldLength" : 8.0,
"collection" : "radiolist",
"items" : [ "VERIFIED", "REJECTED" ],
"mandatory" : true
}
},
"verification_date" : {
"fieldLabel" : "Verification Date",
"aka" : "field193",
"validation" : {
"fieldLength" : 10.0,
"collection" : "datepicker",
"mandatory" : true
}
},
"verification_time" : {
"fieldLabel" : "Verification Time",
"aka" : "field194",
"validation" : {
"fieldLength" : 10.0,
"collection" : "timepicker",
"mandatory" : true
}
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment