addedInput schema / properties / cashPosition / properties
Added value: +{
+ "currencies": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "monthlyBurnEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "operationalReserveMonths": {
+ "maximum": 24,
+ "minimum": 1,
+ "type": "number"
+ },
+ "totalCashEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / cashPosition / required
Added value: +[
+ "totalCashEur",
+ "operationalReserveMonths",
+ "monthlyBurnEur",
+ "currencies"
+]
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "stage": {
+ "maxLength": 50,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "stage"
+]
addedInput schema / properties / constraints / properties
Added value: +{
+ "bankPartners": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 0,
+ "type": "array"
+ },
+ "maxLockupDays": {
+ "maximum": 365,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "riskAppetite": {
+ "enum": [
+ "very-conservative",
+ "conservative",
+ "moderate"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / constraints / required
Added value: +[
+ "bankPartners"
+]
addedInput schema / properties / horizon / enum
Added value: +[
+ "3mo",
+ "6mo",
+ "12mo"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "cashPosition",
+ "constraints"
+]