DO.SR.01 Person

DO.SR.01 sr_person

This data object contains the specific information that can be used to identify an individual.

The data object may include information received from other registries, including CRVS and disability registries. It may be queried by SP-MIS to determine an applicant's eligibility.

AttributeTypeCardinalityDescription

identifier*

0...*

The unique identifier for a person

name*

0..*

Full name in a displayable form, possibly including titles and suffixes, in the order of the applicant's locale norms and/or preferences.

sex*

0...1

Sex of the person, represented as an enumeration (Male, Female, Others, Unknown).

birth_date*

0...1

The date of birth of the person, formatted according to schema:DateTime.

death_date

0...1

The date of death of the person, if applicable. Formatted according to schema:DateTime.

address*

0...*

Current residential address of the person, represented as an address object.

phone_number

0...*

Person's preferred phone number. The format E.164 is recommended.

email

0...*

Person's preferred email address. The format must comply with RFC 5322 addr-spec.

Example of JSON data for the Person Data Object

{
  "message": {
    "search_response": [
       {
        "response_entity": "Person",
        "data": {
           "reg_records": [
            {
              "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": null,
                "address": null,
                "phone_number": null,
                "email": null
              }
            }
          ]
        }
      }
    ]
  }
}

JSON-LD File on GitHub

Last updated