addedInput schema / properties / aspirations / maxLength
Added value: +500
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / competitors / items
Added value: +{
+ "properties": {
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "positioning": {
+ "maxLength": 300,
+ "type": "string"
+ },
+ "strongPoints": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "targetSegment": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "weakPoints": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ }
+ },
+ "required": [
+ "name",
+ "positioning"
+ ],
+ "type": "object"
+}
addedInput schema / properties / competitors / maxItems
Added value: +8
addedInput schema / properties / competitors / minItems
Added value: +1
addedInput schema / properties / currentWeaknesses / items
Added value: +{
+ "maxLength": 300,
+ "type": "string"
+}
addedInput schema / properties / currentWeaknesses / maxItems
Added value: +5
addedInput schema / properties / customerPains / items
Added value: +{
+ "maxLength": 300,
+ "type": "string"
+}
addedInput schema / properties / customerPains / maxItems
Added value: +8
addedInput schema / properties / customerPains / minItems
Added value: +2
addedInput schema / properties / market / properties
Added value: +{
+ "geography": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maturity": {
+ "enum": [
+ "emerging",
+ "growing",
+ "mature",
+ "declining"
+ ],
+ "type": "string"
+ },
+ "targetSegment": {
+ "maxLength": 300,
+ "type": "string"
+ }
+}
addedInput schema / properties / market / required
Added value: +[
+ "targetSegment"
+]
addedInput schema / properties / product / properties
Added value: +{
+ "currentTagline": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "mainFeatures": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 2,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name",
+ "mainFeatures"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "market",
+ "competitors",
+ "customerPains"
+]