addedInput schema / properties / company / properties
Added value: +{
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "founded": {
+ "maximum": 2030,
+ "minimum": 2000,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "teamSize": {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "number"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "currentArrEur",
+ "teamSize",
+ "founded"
+]
addedInput schema / properties / founderContext / properties
Added value: +{
+ "knownWeaknesses": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 0,
+ "type": "array"
+ },
+ "pitch": {
+ "maxLength": 1000,
+ "minLength": 30,
+ "type": "string"
+ }
+}
addedInput schema / properties / founderContext / required
Added value: +[
+ "pitch",
+ "knownWeaknesses"
+]
addedInput schema / properties / round / properties
Added value: +{
+ "leadInvestorProfile": {
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "serie-a",
+ "serie-b",
+ "serie-c",
+ "growth"
+ ],
+ "type": "string"
+ },
+ "targetEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / round / required
Added value: +[
+ "stage",
+ "targetEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "round",
+ "founderContext"
+]