addedInput schema / properties / company / properties
Added value: +{
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "homeMarket": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "productDescription": {
+ "maxLength": 400,
+ "minLength": 20,
+ "type": "string"
+ },
+ "revenueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "homeMarket",
+ "productDescription"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / preferences / properties
Added value: +{
+ "excludedModes": {
+ "items": {
+ "enum": [
+ "export",
+ "licensing",
+ "franchising",
+ "partnership",
+ "joint-venture",
+ "wholly-owned-subsidiary",
+ "acquisition"
+ ],
+ "type": "string"
+ },
+ "maxItems": 4,
+ "type": "array"
+ },
+ "preferredModes": {
+ "items": {
+ "enum": [
+ "export",
+ "licensing",
+ "franchising",
+ "partnership",
+ "joint-venture",
+ "wholly-owned-subsidiary",
+ "acquisition"
+ ],
+ "type": "string"
+ },
+ "maxItems": 4,
+ "type": "array"
+ },
+ "riskAppetite": {
+ "enum": [
+ "conservative",
+ "moderate",
+ "aggressive"
+ ],
+ "type": "string"
+ },
+ "successCriteria": {
+ "maxLength": 400,
+ "type": "string"
+ }
+}
addedInput schema / properties / preferences / required
Added value: +[
+ "riskAppetite"
+]
addedInput schema / properties / targetMarket / properties
Added value: +{
+ "country": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "investmentBudgetEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "preferredTimeline": {
+ "enum": [
+ "urgent",
+ "12-months",
+ "18-24-months",
+ "exploratory"
+ ],
+ "type": "string"
+ },
+ "rationale": {
+ "maxLength": 400,
+ "minLength": 20,
+ "type": "string"
+ }
+}
addedInput schema / properties / targetMarket / required
Added value: +[
+ "country",
+ "rationale",
+ "preferredTimeline",
+ "investmentBudgetEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "targetMarket",
+ "preferences"
+]