addedInput schema / properties / company / properties
Added value: +{
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "geographies": {
+ "items": {
+ "maxLength": 60,
+ "type": "string"
+ },
+ "maxItems": 6,
+ "minItems": 1,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "teamSize": {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "number"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "currentArrEur",
+ "geographies",
+ "teamSize"
+]
addedInput schema / properties / constraints / properties
Added value: +{
+ "geographicExpansionReadiness": {
+ "enum": [
+ "not-ready",
+ "6-12mo",
+ "ready-now"
+ ],
+ "type": "string"
+ },
+ "maAppetite": {
+ "enum": [
+ "none",
+ "opportunistic",
+ "active"
+ ],
+ "type": "string"
+ },
+ "productExpansionBudgetEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / constraints / required
Added value: +[
+ "maAppetite",
+ "geographicExpansionReadiness"
+]
addedInput schema / properties / currentDrivers / items
Added value: +{
+ "properties": {
+ "contributionPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "driver": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "growthRatePct": {
+ "maximum": 300,
+ "minimum": -50,
+ "type": "number"
+ }
+ },
+ "required": [
+ "driver",
+ "contributionPct",
+ "growthRatePct"
+ ],
+ "type": "object"
+}
addedInput schema / properties / currentDrivers / maxItems
Added value: +6
addedInput schema / properties / currentDrivers / minItems
Added value: +1
addedInput schema / properties / growthTarget / properties
Added value: +{
+ "budgetAvailableEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "horizonMonths": {
+ "maximum": 60,
+ "minimum": 6,
+ "type": "number"
+ },
+ "targetArrEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / growthTarget / required
Added value: +[
+ "targetArrEur",
+ "horizonMonths",
+ "budgetAvailableEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "growthTarget",
+ "currentDrivers",
+ "constraints"
+]