Schema

Scalars

Enums

Objects

Input Objects

Income (INPUT OBJECT)

Schema Definition

input Income {   # Gross
amount: PositiveInteger!   # Monthly bonuses most recent first
bonusByMonth: [PositiveInteger!]!   # Quarterly bonuses most recent first
bonusByQuarter: [PositiveInteger!]   # Yearly bonuses most recent first
bonusByYear: [PositiveInteger!]! carAllowance: PositiveInteger   # Yearly commission most recent first
commissionByMonth: [PositiveInteger!]!   # Monthly commission most recent first
commissionByYear: [PositiveInteger!]! contractType: ContractType! extraAllowance: PositiveInteger   # Monthly flight pay most recent first
flightPay: [PositiveInteger!]! locationAllowance: PositiveInteger netMonthlyIncome: PositiveInteger nursingBank: [PositiveInteger!]   # ONS-compliant occupation showing the applicant's main income source.
occupation: OnsOccupationReference   # Monthly overtime most recent first
overtime: [PositiveInteger!]! timeInEmployment: TimeInEmployment }