addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / properties / annualBonus
Added value: +{
+ "default": 0,
+ "description": "Annual bonus in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / annualSalary
Added value: +{
+ "description": "Annual salary in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / earthquakeInsurance
Added value: +{
+ "default": 0,
+ "description": "Earthquake insurance premium in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / hasHousingLoan
Added value: +{
+ "default": false,
+ "description": "Has housing loan",
+ "type": "boolean"
+}
addedInput schema / properties / hasSpouse
Added value: +{
+ "default": false,
+ "description": "Has spouse",
+ "type": "boolean"
+}
addedInput schema / properties / housingLoanBalance
Added value: +{
+ "default": 0,
+ "description": "Housing loan balance in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / socialInsurance
Added value: +{
+ "default": 0,
+ "description": "Social insurance premiums in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / spouseIncome
Added value: +{
+ "default": 0,
+ "description": "Spouse income in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / withheldTax
Added value: +{
+ "default": 0,
+ "description": "Tax already withheld in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / required
Added value: +[
+ "annualSalary"
+]