addedInput schema / properties / company / properties
Added value: +{
+ "arrCurrentEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "quotaTeamEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / historicalConversionByStage / items
Added value: +{
+ "properties": {
+ "avgDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "conversionPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "fromStage": {
+ "enum": [
+ "discovery",
+ "qualification",
+ "demo",
+ "proposal",
+ "negotiation",
+ "closed-won",
+ "closed-lost"
+ ],
+ "type": "string"
+ },
+ "toStage": {
+ "enum": [
+ "discovery",
+ "qualification",
+ "demo",
+ "proposal",
+ "negotiation",
+ "closed-won",
+ "closed-lost"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "fromStage",
+ "toStage",
+ "avgDays",
+ "conversionPct"
+ ],
+ "type": "object"
+}
addedInput schema / properties / historicalConversionByStage / maxItems
Added value: +10
addedInput schema / properties / pipeline / properties
Added value: +{
+ "deals": {
+ "items": {
+ "properties": {
+ "account": {
+ "maxLength": 160,
+ "minLength": 2,
+ "type": "string"
+ },
+ "amountEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "championIdentified": {
+ "type": "boolean"
+ },
+ "competitor": {
+ "maxLength": 120,
+ "type": "string"
+ },
+ "currentStage": {
+ "enum": [
+ "discovery",
+ "qualification",
+ "demo",
+ "proposal",
+ "negotiation",
+ "closed-won",
+ "closed-lost"
+ ],
+ "type": "string"
+ },
+ "daysInCurrentStage": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "dealId": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "economicBuyerAccess": {
+ "enum": [
+ "direct",
+ "via-champion",
+ "blocked",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "expectedCloseDate": {
+ "type": "string"
+ },
+ "knownRisks": {
+ "maxLength": 400,
+ "type": "string"
+ },
+ "ownerRep": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "productsScope": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 8,
+ "type": "array"
+ },
+ "segment": {
+ "enum": [
+ "enterprise",
+ "mid-market",
+ "smb",
+ "self-serve"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "dealId",
+ "account",
+ "segment",
+ "amountEur",
+ "currentStage",
+ "daysInCurrentStage",
+ "expectedCloseDate",
+ "ownerRep"
+ ],
+ "type": "object"
+ },
+ "maxItems": 60,
+ "minItems": 3,
+ "type": "array"
+ },
+ "period": {
+ "maxLength": 40,
+ "minLength": 4,
+ "type": "string"
+ }
+}
addedInput schema / properties / pipeline / required
Added value: +[
+ "period",
+ "deals"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "pipeline"
+]