Schema

Scalars

Enums

Objects

Input Objects

Applicant (INPUT OBJECT)

Represents an applicant for a mortgage, there will be at least one. Currently one or two applicants (for a joint application) are supported.

Schema Definition

input Applicant {   # A list of additional income for the applicant, set to empty if none.
additionalIncome: [AdditionalIncome!]! adverseCredit: AdverseCredit companyDirectorIncome: CompanyDirectorIncome contractorIncome: ContractorIncome countryOfResidence: Country email: String expenditure: [Expenditure!]! firstName: String futurePensionIncome: FuturePensionIncome homePhone: String income: Income lastName: String livingExpenses: [LivingExpenses!] middleName: String mobile: String notes: String personalDetails: PersonalDetails!   # Profit/Loss for properties, required when applicant has properties.
propertyIncome: [Int!]   # External reference of the applicant.
reference: String selfEmployedIncome: SelfEmployedIncome title: String }