# DO.IBR.01 Person

### DO.IBR.01 Person <a href="#do.01-person-1" id="do.01-person-1"></a>

This data object contains 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 the SP-MIS to determine an applicant's eligibility.

<table><thead><tr><th>Attribute</th><th data-type="content-ref">Type</th><th width="131.423828125">Cardinality</th><th>Description</th></tr></thead><tbody><tr><td>identifier</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-objects/do.com.01-identifier">DO.COM.01 Identifier</a></td><td>0...*</td><td>Unique identifier for a person</td></tr><tr><td>name</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-objects/do.com.02-name">DO.COM.02 Name</a></td><td>0...1</td><td>Full name in a displayable form, possibly including titles and suffixes, in the order of the applicant's locale norms and/or preferences</td></tr><tr><td>sex</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/code-directory/cd.com.03-sex">CD.COM.03 sex</a></td><td>0...1</td><td>Sex of the person, represented as an enumeration (male, female, others, unknown)</td></tr><tr><td>birth_date</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.01-date_time">DF.COM.STRING.01 date_time</a></td><td>0...1</td><td>Date of birth of the person, formatted according to schema:DateTime.</td></tr><tr><td>death_date</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.01-date_time">DF.COM.STRING.01 date_time</a></td><td>0...1</td><td>Date of death of the person, if applicable, formatted according to schema:DateTime</td></tr><tr><td>address</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-objects/do.com.03-address">DO.COM.03 Address</a></td><td>0...*</td><td>Current residential address of the person, represented as an address object</td></tr><tr><td>phone_number</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.02-phone_number">DF.COM.STRING.02 phone_number</a></td><td>0...*</td><td>Person's preferred phone number, format E.164 is recommended</td></tr><tr><td>email</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.07-email">DF.COM.STRING.07 email</a></td><td>0...*</td><td>Person's preferred email address, format must comply with RFC 5322 addr-spec</td></tr><tr><td>registration_date</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.01-date_time">DF.COM.STRING.01 date_time</a></td><td>0...1</td><td>Date the details of the person were registered</td></tr><tr><td>last_updated</td><td><a href="https://app.gitbook.com/s/F9fu0tIY1rJUsF03WdAv/standards-for-interoperability-interfaces/common-standards-for-interoperability-interfaces/data/data-types-and-formats/dt.com.02-string/data-formats/df.com.string.01-date_time">DF.COM.STRING.01 date_time</a></td><td>0...1</td><td>Date the details of the person were last updated</td></tr></tbody></table>

### Example of JSON Data for the Person Data Object

```
{
  "@context": {
    "spdci": "https://schema.spdci.org/extensions/ibr/v1/",
    "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
    "xsd": "http://www.w3.org/2001/XMLSchema#",
    "owl": "http://www.w3.org/2002/07/owl#",
    "common": "https://schema.spdci.org/common/v1/"
  },
  "@id": "https://example.org/ibr_person/847951632",
  "@type": "spdci:IBR_Person",
  "identifier": [
    {
      "@type": "Identifier",
      "identifier_type": "UIN",
      "identifier_value": "847951632"
    }
  ],
  "name": {
      "@type": "Name",
      "surname": "Phumchai",
      "given_name": "Sudarat",
      "prefix": "Dr.",
      "suffix": "PhD"
    },
  "birth_date": "1995-09-21T11:20:00",
  "sex": "female",
  "address": [
    {
      "@type": "Address",
      "address_line1": "Bophut Koh Samui",
      "address_line2": "Surat, Near Big Buddha Beach",
      "locality": "Thani",
      "sub_region_code": "SH",
      "region_code": "A205",
      "postal_code": "84320",
      "country_code": "TH",
    }],
  "phone_number": ["+66891234567"],
  "email": ["sudarat.phumchai@example.com"],
  "registration_date": "1995-10-21T11:20:00"
}

```

### JSON-LD File on GitHub

{% embed url="<https://schema.spdci.org/extensions/ibr/v1/data/IBRPerson.jsonld>" %}
