addedInput schema / properties / company / properties
Added value: +{
+ "currentMarkets": {
+ "items": {
+ "maxLength": 50,
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "headcount": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "currentMarkets"
+]
addedInput schema / properties / constraints / items
Added value: +{
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / constraints / maxItems
Added value: +5
addedInput schema / properties / expansionHorizonMonths / maximum
Added value: +60
addedInput schema / properties / expansionHorizonMonths / minimum
Added value: +6
changedInput schema / properties / expansionHorizonMonths / type
Previous value: -"number"New value: +"integer"
addedInput schema / properties / financials / properties
Added value: +{
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "expansionBudgetEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "targetArrNewMarketsEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / financials / required
Added value: +[
+ "currentArrEur",
+ "expansionBudgetEur"
+]
addedInput schema / properties / preferredEntryMode / enum
Added value: +[
+ "direct-sales",
+ "partnership",
+ "acquisition",
+ "distributor",
+ "greenfield"
+]
addedInput schema / properties / product / properties
Added value: +{
+ "avgDealValueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "pricingModel": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name"
+]
addedInput schema / properties / targetMarkets / items
Added value: +{
+ "properties": {
+ "country": {
+ "maxLength": 80,
+ "type": "string"
+ },
+ "gdpPerCapitaUsd": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "languages": {
+ "items": {
+ "maxLength": 30,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "population": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "region": {
+ "maxLength": 80,
+ "type": "string"
+ },
+ "regulatoryNotes": {
+ "maxLength": 300,
+ "type": "string"
+ }
+ },
+ "required": [
+ "country"
+ ],
+ "type": "object"
+}
addedInput schema / properties / targetMarkets / maxItems
Added value: +8
addedInput schema / properties / targetMarkets / minItems
Added value: +1
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "targetMarkets"
+]