addedInput schema / properties / company / properties
Added value: +{
+ "arrCurrentEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "description": {
+ "maxLength": 500,
+ "minLength": 20,
+ "type": "string"
+ },
+ "foundedYear": {
+ "maximum": 2026,
+ "minimum": 2000,
+ "type": "integer"
+ },
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "hqCountry": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "keyMetrics": {
+ "maxLength": 400,
+ "type": "string"
+ },
+ "monthlyGrowthPct": {
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "hqCountry",
+ "foundedYear",
+ "description"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / preferences / properties
Added value: +{
+ "avoidInvestors": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 20,
+ "type": "array"
+ },
+ "geography": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 1,
+ "type": "array"
+ },
+ "preferStrategicValue": {
+ "type": "boolean"
+ },
+ "requireESGAlignment": {
+ "type": "boolean"
+ }
+}
addedInput schema / properties / preferences / required
Added value: +[
+ "geography"
+]
addedInput schema / properties / round / properties
Added value: +{
+ "leadTicketSizeEur": {
+ "minimum": 100000,
+ "type": "number"
+ },
+ "minViableAmountEur": {
+ "minimum": 100000,
+ "type": "number"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "series-a",
+ "series-b",
+ "series-c",
+ "series-d",
+ "series-d-plus",
+ "series-e",
+ "follow-on",
+ "growth",
+ "private-equity"
+ ],
+ "type": "string"
+ },
+ "targetAmountEur": {
+ "minimum": 100000,
+ "type": "number"
+ },
+ "targetCloseDate": {
+ "type": "string"
+ },
+ "valuationTargetEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / round / required
Added value: +[
+ "stage",
+ "targetAmountEur",
+ "minViableAmountEur",
+ "targetCloseDate",
+ "leadTicketSizeEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "round",
+ "preferences"
+]