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"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 3,
+ "type": "string"
+ },
+ "siret": {
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "series-a",
+ "series-b",
+ "growth"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "pitch",
+ "foundedYear",
+ "countryHQ",
+ "sector",
+ "stage"
+]
addedInput schema / properties / financials / properties
Added value: +{
+ "grossMarginPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "hasCIREligibility": {
+ "type": "boolean"
+ },
+ "hasJEI": {
+ "type": "boolean"
+ },
+ "headcount": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "rdSpendEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "revenueEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / financials / required
Added value: +[
+ "revenueEur",
+ "rdSpendEur",
+ "headcount",
+ "grossMarginPct"
+]
addedInput schema / properties / preferences / properties
Added value: +{
+ "maxDilutionPct": {
+ "maximum": 40,
+ "minimum": 0,
+ "type": "number"
+ },
+ "nonDilutiveFirst": {
+ "type": "boolean"
+ },
+ "urgencyDays": {
+ "maximum": 365,
+ "minimum": 30,
+ "type": "integer"
+ }
+}
addedInput schema / properties / preferences / required
Added value: +[
+ "nonDilutiveFirst"
+]
addedInput schema / properties / project / properties
Added value: +{
+ "budgetEur": {
+ "maximum": 50000000,
+ "minimum": 50000,
+ "type": "integer"
+ },
+ "description": {
+ "maxLength": 600,
+ "minLength": 20,
+ "type": "string"
+ },
+ "geographies": {
+ "items": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "horizonMonths": {
+ "maximum": 36,
+ "minimum": 6,
+ "type": "integer"
+ },
+ "techReadinessLevel": {
+ "maximum": 9,
+ "minimum": 1,
+ "type": "integer"
+ }
+}
addedInput schema / properties / project / required
Added value: +[
+ "description",
+ "budgetEur",
+ "horizonMonths",
+ "geographies"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "financials",
+ "project",
+ "preferences"
+]