Skip to main content

Individual

A natural person who owns an account.

This type requires the following scope:

[accountholders]

type Individual {
identifyingDocument: IdentifyingDocument
gender: Gender
homeAddress: Address
fullName: String
givenName: String
familyName: String
middleName: String
nickname: String
email: EmailAddress
contact: Contact
dateOfBirth: Date
}

Fields

identifyingDocument ● IdentifyingDocument union

A unique identifier for the Individual.

gender ● Gender enum

Individual's gender, possibly unspecified.

homeAddress ● Address object

Individual's place of residence.

fullName ● String scalar

Individual's full name, possibly including titles and suffixes

givenName ● String scalar

Given name(s) or first name(s) of the Individual. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters.

familyName ● String scalar

Surname(s) or last name(s) of the Individual. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters.

middleName ● String scalar

Middle name(s) of the Individual. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used.

nickname ● String scalar

Casual name of the Individual that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael.

email ● EmailAddress scalar

Email address of the individual, if available

contact ● Contact object

Contact number of the individual, if available

dateOfBirth ● Date scalar

Date of Birth of the individual, if available