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",
+ "public"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "pitch",
+ "stage",
+ "countryHQ",
+ "foundedYear"
+]
addedInput schema / properties / financialPosition / properties
Added value: +{
+ "burnMonthlyEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "cashEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "cashRunwayMonths": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "grossMarginPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "hasJEIStatus": {
+ "type": "boolean"
+ },
+ "hasRDEligibility": {
+ "type": "boolean"
+ }
+}
addedInput schema / properties / financialPosition / required
Added value: +[
+ "cashRunwayMonths",
+ "cashEur",
+ "burnMonthlyEur",
+ "grossMarginPct"
+]
addedInput schema / properties / founderConstraints / properties
Added value: +{
+ "controlRetentionPriority": {
+ "enum": [
+ "low",
+ "medium",
+ "high",
+ "absolute"
+ ],
+ "type": "string"
+ },
+ "maxDilutionFounderPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "mustAvoidInstruments": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "preferredProfile": {
+ "enum": [
+ "control-max",
+ "growth-max",
+ "risk-min"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / founderConstraints / required
Added value: +[
+ "maxDilutionFounderPct",
+ "controlRetentionPriority"
+]
addedInput schema / properties / growthPlan / properties
Added value: +{
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "headcountNow": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "headcountTarget36m": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "keyMilestones": {
+ "items": {
+ "maxLength": 200,
+ "minLength": 10,
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 2,
+ "type": "array"
+ },
+ "targetArrEur36m": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / growthPlan / required
Added value: +[
+ "currentArrEur",
+ "targetArrEur36m",
+ "headcountNow",
+ "headcountTarget36m",
+ "keyMilestones"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "growthPlan",
+ "financialPosition",
+ "founderConstraints"
+]