DO.EMP.01 Person
DO.EMP.01 Person
This data object contains core identity attributes of an individual. This object represents the identity record retrieved from an ID system and is used to identity or verify an individual.
name
0...1
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
Date of birth of the person, formatted according to schema:DateTime.
death_date
0...1
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, format E.164 is recommended
0...*
Person's preferred email address, format must comply with RFC 5322 addr-spec
Example of JSON Data for the Person Data Object
{
"@context": {
"spdci": "https://schema.spdci.org/extensions/PES/v1/data",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#",
"spdcicore": "https://schema.spdci.org/core/v1/data",
"spdcicode": "https://schema.spdci.org/core/v1/code",
},
"@id": "https://example.org/sr_person/847951632",
"@type": "spdci:PES_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
Last updated
Was this helpful?

