Data Type: Profile
Parameter | Type | Description | Required/Optional | Notes |
---|---|---|---|---|
person | Person | Personal Information | optional (strongly recommended) | |
address | Address | Personal Address | optional (recommended) | |
education | String | Education | optional (recommended) | enumeration: doctorate master bachelor junior_college high_school middle_school below_middle_school |
profession | String | Profession | optional (recommended) | |
annual_income | Amount | Annual Income | optional (recommended) |
{
"person": {
"name": {
"first_name": "Pierre",
"middle_name": "",
"last_name": "Laurent",
"nickname": "Snochy"
},
"sex": "male",
"birthdate": "1998-01-01"
},
"address": {
"country": "FR",
"region": "Grand Est",
"city": "Strasbourg City",
"district": "Ketali Lorem",
"detail": "3213 Building,lorem Street",
"zip_code": "310000"
},
"education": "master",
"profession": "XXX",
"annual_income": {
"currency": "USD",
"amount_local": 100000,
"amount_usd": 100000,
"amount_cny": 680000
}
}