Skip to content

Person

A person affiliated with an organization or grant application.

PropertyTypeRequiredDescription
name Name Yes The person's full name, including all relevant components (first, middle, last, etc.).
title string No The person's title, if applicable.
addresses AddressCollection No Collection of physical addresses associated with the person.
phones PhoneCollection No Collection of phone numbers associated with the person.
emails EmailCollection No Collection of email addresses associated with the person.
dateOfBirth isoDate No The person's date of birth.
customFields record<CustomField> No Custom fields for the person.

A JSON example of this model.

{
"name": {
"prefix": "Dr.",
"first": "Jane",
"middle": "E.",
"last": "Doe"
},
"title": "Chief Executive Officer",
"dateOfBirth": "1990-01-01",
"addresses": {
"primary": {
"street1": "123 Main St",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"otherAddresses": {
"work": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
}
}
},
"phones": {
"primary": {
"countryCode": "+1",
"number": "444-456-1230",
"isMobile": true
},
"otherPhones": {
"work": {
"countryCode": "+1",
"number": "333-456-1230",
"isMobile": false
}
}
},
"emails": {
"primary": "john.doe@example.com",
"otherEmails": {
"work": "john.doe@work.com",
"personal": "john.doe@gmail.com"
}
}
}