addedInput schema / properties / accounts / items
Added value: +{
+ "properties": {
+ "activeUsers": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "contractRenewalDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "id": {
+ "maxLength": 50,
+ "minLength": 1,
+ "type": "string"
+ },
+ "lastEngagementDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "maxContractUsers": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "npsScore": {
+ "maximum": 10,
+ "minimum": 0,
+ "type": "number"
+ },
+ "signals": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 0,
+ "type": "array"
+ },
+ "tier": {
+ "enum": [
+ "strategic",
+ "enterprise",
+ "mid-market",
+ "smb"
+ ],
+ "type": "string"
+ },
+ "usageRatePct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "currentArrEur",
+ "tier"
+ ],
+ "type": "object"
+}
addedInput schema / properties / accounts / maxItems
Added value: +20
addedInput schema / properties / accounts / minItems
Added value: +2
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / horizon / enum
Added value: +[
+ "30d",
+ "90d",
+ "180d"
+]
addedInput schema / properties / product / properties
Added value: +{
+ "availableUpsells": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 1,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name",
+ "availableUpsells"
+]
addedInput schema / properties / targetUpsellEur / minimum
Added value: +0
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "accounts"
+]