addedInput schema / properties / company / properties
Added value: +{
+ "countryHQ": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "foundedYear": {
+ "maximum": 2030,
+ "minimum": 1990,
+ "type": "integer"
+ },
+ "headcountNow": {
+ "minimum": 0,
+ "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",
+ "currentArrEur",
+ "headcountNow"
+]
addedInput schema / properties / founderConstraints / properties
Added value: +{
+ "maxCashRequiredEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "maxDilutionPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "mustRetainControl": {
+ "type": "boolean"
+ },
+ "noGoConditions": {
+ "items": {
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "timeToFirstValidationWeeks": {
+ "maximum": 52,
+ "minimum": 4,
+ "type": "integer"
+ }
+}
addedInput schema / properties / founderConstraints / required
Added value: +[
+ "maxCashRequiredEur",
+ "maxDilutionPct",
+ "mustRetainControl",
+ "timeToFirstValidationWeeks"
+]
addedInput schema / properties / optionHypotheses / items
Added value: +{
+ "properties": {
+ "hypothesis": {
+ "maxLength": 400,
+ "minLength": 20,
+ "type": "string"
+ },
+ "id": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "label": {
+ "maxLength": 120,
+ "minLength": 5,
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "label",
+ "hypothesis"
+ ],
+ "type": "object"
+}
addedInput schema / properties / optionHypotheses / maxItems
Added value: +6
addedInput schema / properties / optionHypotheses / minItems
Added value: +3
addedInput schema / properties / strategicContext / properties
Added value: +{
+ "burnMonthlyEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "cashEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "cashRunwayMonths": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "coreCompetencies": {
+ "items": {
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+ },
+ "maxItems": 6,
+ "minItems": 2,
+ "type": "array"
+ },
+ "triggerEvent": {
+ "maxLength": 500,
+ "minLength": 20,
+ "type": "string"
+ },
+ "windowOpportunityMonths": {
+ "maximum": 36,
+ "minimum": 3,
+ "type": "integer"
+ }
+}
addedInput schema / properties / strategicContext / required
Added value: +[
+ "triggerEvent",
+ "windowOpportunityMonths",
+ "cashRunwayMonths",
+ "cashEur",
+ "burnMonthlyEur",
+ "coreCompetencies"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "strategicContext",
+ "optionHypotheses",
+ "founderConstraints"
+]