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
Individual.identifyingDocument ● IdentifyingDocument union
A unique identifier for the Individual.
Individual.gender ● Gender enum
Individual's gender, possibly unspecified.
Individual.homeAddress ● Address object
Individual's place of residence.
Individual.fullName ● String scalar
Individual's full name, possibly including titles and suffixes
Individual.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.
Individual.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.
Individual.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.
Individual.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.
Individual.email ● EmailAddress scalar
Email address of the individual, if available
Individual.contact ● Contact object
Contact number of the individual, if available
Individual.dateOfBirth ● Date scalar
Date of Birth of the individual, if available