addedInput schema / properties / company / properties
Added value: +{
+ "countryHQ": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "foundedYear": {
+ "maximum": 2030,
+ "minimum": 1990,
+ "type": "integer"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "pitch": {
+ "maxLength": 800,
+ "minLength": 20,
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "series-a",
+ "series-b",
+ "series-c",
+ "growth"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "pitch",
+ "foundedYear",
+ "stage",
+ "countryHQ"
+]
addedInput schema / properties / keyMetrics / items
Added value: +{
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+}
addedInput schema / properties / keyMetrics / maxItems
Added value: +6
addedInput schema / properties / keyMetrics / minItems
Added value: +2
addedInput schema / properties / raise / properties
Added value: +{
+ "investorAudience": {
+ "enum": [
+ "bank",
+ "vc",
+ "public-grant",
+ "mixed"
+ ],
+ "type": "string"
+ },
+ "targetAmountEur": {
+ "minimum": 50000,
+ "type": "integer"
+ },
+ "timelineMonths": {
+ "maximum": 24,
+ "minimum": 1,
+ "type": "integer"
+ }
+}
addedInput schema / properties / raise / required
Added value: +[
+ "targetAmountEur",
+ "investorAudience",
+ "timelineMonths"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "raise",
+ "keyMetrics"
+]