addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / properties / averagePlacementFee
Added value: +{
+ "default": 0,
+ "description": "Average placement fee in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / feeRate
Added value: +{
+ "default": 35,
+ "description": "Fee rate (%)",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / feeType
Added value: +{
+ "default": "percentage",
+ "description": "Fee type",
+ "enum": [
+ "percentage",
+ "fixed"
+ ],
+ "type": "string"
+}
addedInput schema / properties / fixedFee
Added value: +{
+ "default": 0,
+ "description": "Fixed fee in JPY (when feeType=fixed)",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / monthlyTarget
Added value: +{
+ "default": 0,
+ "description": "Monthly target placements",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / properties / theoreticalAnnualSalary
Added value: +{
+ "description": "Theoretical annual salary in JPY",
+ "minimum": 0,
+ "type": "number"
+}
addedInput schema / required
Added value: +[
+ "theoreticalAnnualSalary"
+]