Personal Info Type
object
(Personal Info)
Personal Info Properties
Property | Type | Required | Nullable |
---|---|---|---|
first_name | string | Optional | can be null |
last_name | string | Optional | can be null |
middle_name | string | Optional | can be null |
full_name | string | Optional | can be null |
email | string | Optional | can be null |
address | object | Optional | can be null |
phone | string | Optional | can be null |
gender | string | Optional | can be null |
marital_status | string | Optional | can be null |
birth_date | number | Optional | can be null |
age | number | Optional | can be null |
relation | string | Optional | can be null |
education | string | Optional | can be null |
occupation | string | Optional | can be null |
full_time_student | string | Optional | can be null |
Sample JSON
{
"first_name": "Fize",
"last_name": "User",
"middle_name": "Demo",
"full_name": "Fize Demo User",
"email": "[email protected]",
"address": {
"entity_number": "1447",
"street": "Winding",
"city": "Providence",
"state": "RI",
"zip": "22903",
"country": "USA",
"raw_address": "1447, Winding Way, Providence, RI 22903"
},
"phone": "1234567890",
"gender": "Male",
"marital_status": "Married",
"birth_date": "1980-10-21",
"age": 42,
"relation": "self",
"education": "engineer",
"occupation": "job",
"full_time_student": "No"
}