addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "serie-a",
+ "serie-b",
+ "serie-c",
+ "serie-d-plus",
+ "profitable-sme",
+ "enterprise"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "stage"
+]
addedInput schema / properties / deals / items
Added value: +{
+ "properties": {
+ "competitor": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "dealValueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "durationDays": {
+ "minimum": 1,
+ "type": "number"
+ },
+ "id": {
+ "maxLength": 50,
+ "minLength": 1,
+ "type": "string"
+ },
+ "lostReason": {
+ "maxLength": 300,
+ "type": "string"
+ },
+ "notes": {
+ "maxLength": 500,
+ "type": "string"
+ },
+ "outcome": {
+ "enum": [
+ "won",
+ "lost",
+ "ghosted",
+ "no-decision"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "outcome",
+ "dealValueEur",
+ "durationDays"
+ ],
+ "type": "object"
+}
addedInput schema / properties / deals / maxItems
Added value: +50
addedInput schema / properties / deals / minItems
Added value: +3
addedInput schema / properties / primaryChallenge / maxLength
Added value: +400
addedInput schema / properties / primaryChallenge / minLength
Added value: +10
addedInput schema / properties / product / properties
Added value: +{
+ "avgContractValueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "category": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name",
+ "category",
+ "avgContractValueEur"
+]
addedInput schema / properties / salesCycleTargetDays / maximum
Added value: +730
addedInput schema / properties / salesCycleTargetDays / minimum
Added value: +1
addedInput schema / properties / topCompetitors / items
Added value: +{
+ "type": "string"
+}
addedInput schema / properties / topCompetitors / maxItems
Added value: +5
addedInput schema / properties / topCompetitors / minItems
Added value: +0
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "deals"
+]