DO.COM.08 Household

DO.COM.08: Household

A household represents a group of related individuals in the social registry. Note this data object is used primarily for linking associated household members and defining other characteristics of the household such as the poverty score and registration date.

AttributeTypeCardinalityDescription

household_identifier*

0...1

The identifier for a household that individuals are linked to

address*

0...1

Current residential address of the household

poverty_score

0...1

A metric generated based on the assessment of various household characteristics.

poverty_score_type

0...1

The types of poverty scores that are is to measure and categorize the level of poverty.

household_head_info*

0...1

Personal details of the head of the household

household_size*

0...1

The total number of members in the household

member_list*

0...*

A list of the related individuals in a household

registration_date*

0...1

The date the details of the household were registered

last_updated

0...1

The date the details of the household were last updated

additional_attributes

0...*

Additional attributes of the household

Example of JSON data for the Household Data Object

{
  "message": {
    "search_response": [{
      "response_entity": "Household",
      "data": {
        "reg_records": [{
          "household": {
            "household_identifier": "HS02052024",
            "address": "XXXXXX",
            "poverty_score": "4.0",
            "poverty_score_type": "",
            "additional_attributes": "",
            "household_size": "1",
            "household_head_info": {
              "person": {
                "identifier_type": "NID",
                "identifier_value": "0205202401",
                "name": {
                  "first_name": "Test",
                  "second_name": "Test2",
                  "surname": "Test3"
                },
                "sex": "F",
                "birth_date": "02.05.2004",
                "death_date": "",
                "address": "",
                "phone_number": "",
                "email": ""
              }
            },
            "member_list": [{
              "household_member": {
                "member_identifier": "HS0205202401",
                "demographic_info": {
                  "person": {
                    "identifier_type": "NID",
                    "identifier_value": "0205202401",
                    "name": {
                      "first_name": "Test",
                      "second_name": "Test2",
                      "surname": "Test3"
                    },
                    "sex": "F",
                    "birth_date": "02.05.2004",
                    "death_date": "",
                    "address": "",
                    "phone_number": "",
                    "email": ""
                  },
                  "relationship_head": "self",
                  "related_person": "",
                  "is_disabled": "0",
                  "disability_info": "",
                  "marital_status": "Single",
                  "employment_status": "employed",
                  "occupation": "Caregiver",
                  "income_level": "",
                  "language_code": "Eng",
                  "education_level": "Highschool",
                  "additional_attributes": ""
                },
                "registration_date": "02.05.2024",
                "last_update": ""
              }
            }]
          }
        }]
      }
    }]
  }
}

The provided JSON snippet outlines a household's record, including details about the household head and members.

{
  "message": {
    "search_response": [
      {
        "response entity": "Household",
        "data": {
          "reg_records": [
            {
              "household": {
                "household_identifier": "HS02052024",
                "address": "XXXXXX",
                "poverty_score": "4.0",
                "poverty_score_type": "",
                "additional_attributes": "",
                "household_size": "2",
                "household_head_info": {
                  "person": {
                    "identifier_type": "NID",
                    "identifier_value": "0205202401",
                    "name": {
                      "first_name": "Test",
                      "second_name": "Test2",
                      "surname": "Test3"
                    },
                    "sex": "F",
                    "birth_date": "02.05.2004",
                    "death_date": " ",
                    "address": "",
                    "phone_number": " ",
                    "email": ""
                  }
                },
                "member_list": [
                  {
                    "household_member": {
                      "member_identifier": "HS0205202401",
                      "demographic_info": {
                        "person": {
                          "identifier_type": "NID",
                          "identifier_value": "0205202401",
                          "name": {
                            "first_name": "Test",
                            "second_name": "Test2",
                            "surname": "Test3"
                          },
                          "sex": "F",
                          "birth_date": "02.05.2004",
                          "death_date": "",
                          "address": "",
                          "phone_number": "",
                          "email": ""
                        },
                        "relationship_head": "self",
                        "related_person": "",
                        "is_disabled": "0",
                        "disability_info": "",
                        "marital_status": "Single",
                        "employment_status": "employed",
                        "occupation": "Caregiver",
                        "income_level": "",
                        "language_code": "Eng",
                        "education_level": "Highschool",
                        "additional_attributes": ""
                      },
                      {
                      "member_identifier": "HS0205202402",
                      "demographic_info": {
                        "person": {
                          "identifier_type": "BRN",
                          "identifier_value": "BC989991",
                          "name": {
                            "first_name": "Child",
                            "second_name":"Child2",
                            "surname": "Child3"
                          },
                          "sex": "F",
                          "birth_date": "02.05.2021",
                          "death_date": "",
                          "address": "",
                          "phone_number": "",
                          "email": ""
                        },
                        "relationship_head": "Child",
                        "related_person": "",
                        "is_disabled": "0",
                        "disability_info": "",
                        "marital_status": "Not married",
                        "employment_status": "",
                        "occupation": "",
                        "income_level": "",
                        "language_code": "Eng",
                        "education_level": "",
                        "additional_attributes": ""
                      },
                      "registration_date": "02.05.2024",
                      "last_update": ""
                    }
                  }
                ]
              }
            }
          ]
        }
      }
    ]
  }
}

JSON-LD File on GitHub

Last updated