addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / round / properties
Added value: +{
+ "amountMEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "leadInvestor": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "preMoneyValuation": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "stage": {
+ "maxLength": 50,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / round / required
Added value: +[
+ "stage",
+ "amountMEur",
+ "leadInvestor"
+]
addedInput schema / properties / termSheetClauses / items
Added value: +{
+ "properties": {
+ "clause": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "currentText": {
+ "maxLength": 500,
+ "minLength": 5,
+ "type": "string"
+ }
+ },
+ "required": [
+ "clause",
+ "currentText"
+ ],
+ "type": "object"
+}
addedInput schema / properties / termSheetClauses / maxItems
Added value: +15
addedInput schema / properties / termSheetClauses / minItems
Added value: +3
addedInput schema / required
Added value: +[
+ "company",
+ "round",
+ "termSheetClauses"
+]