addedInput schema / properties / accounts / items
Added value: +{
+ "properties": {
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "churnSignals": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 0,
+ "type": "array"
+ },
+ "expansionSignals": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 3,
+ "minItems": 0,
+ "type": "array"
+ },
+ "healthScore": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "id": {
+ "maxLength": 50,
+ "minLength": 1,
+ "type": "string"
+ },
+ "lastEngagementDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "npsScore": {
+ "maximum": 10,
+ "minimum": 0,
+ "type": "number"
+ },
+ "openIssues": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "renewalInDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "tier": {
+ "enum": [
+ "strategic",
+ "enterprise",
+ "mid-market",
+ "smb"
+ ],
+ "type": "string"
+ },
+ "usageRatePct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "arrEur",
+ "renewalInDays",
+ "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",
+ "60d",
+ "90d",
+ "180d"
+]
addedInput schema / properties / product / properties
Added value: +{
+ "avgContractLengthMonths": {
+ "maximum": 60,
+ "minimum": 1,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name"
+]
addedInput schema / properties / targetRenewalRatePct / maximum
Added value: +100
addedInput schema / properties / targetRenewalRatePct / minimum
Added value: +0
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "accounts"
+]