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 / existingInvestors / items
Added value: +{
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / existingInvestors / maxItems
Added value: +5
addedInput schema / properties / existingInvestors / minItems
Added value: +0
addedInput schema / properties / round / properties
Added value: +{
+ "arrCurrent": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "geography": {
+ "items": {
+ "maxLength": 50,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "series-a",
+ "series-b",
+ "series-c",
+ "growth",
+ "pre-ipo"
+ ],
+ "type": "string"
+ },
+ "ticketSizeMax": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "ticketSizeMin": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "useCase": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ }
+}
addedInput schema / properties / round / required
Added value: +[
+ "stage",
+ "ticketSizeMin",
+ "ticketSizeMax",
+ "geography",
+ "useCase"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "round"
+]