addedInput schema / properties / accounts / items
Added value: +{
+ "properties": {
+ "accountName": {
+ "maxLength": 160,
+ "minLength": 2,
+ "type": "string"
+ },
+ "contractRenewalDate": {
+ "type": "string"
+ },
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "currentSeats": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "knownTriggers": {
+ "maxLength": 400,
+ "type": "string"
+ },
+ "modulesAdopted": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 15,
+ "minItems": 1,
+ "type": "array"
+ },
+ "segment": {
+ "enum": [
+ "enterprise",
+ "mid-market",
+ "smb"
+ ],
+ "type": "string"
+ },
+ "usageScore": {
+ "enum": [
+ "heavy",
+ "active",
+ "light",
+ "dormant"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "accountName",
+ "segment",
+ "currentArrEur",
+ "currentSeats",
+ "modulesAdopted",
+ "contractRenewalDate",
+ "usageScore"
+ ],
+ "type": "object"
+}
addedInput schema / properties / accounts / maxItems
Added value: +50
addedInput schema / properties / accounts / minItems
Added value: +5
addedInput schema / properties / company / properties
Added value: +{
+ "arrTotalEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "nrrCurrent": {
+ "maximum": 200,
+ "minimum": 50,
+ "type": "number"
+ },
+ "nrrTarget": {
+ "maximum": 200,
+ "minimum": 50,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "arrTotalEur",
+ "nrrCurrent",
+ "nrrTarget"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / ownership / properties
Added value: +{
+ "aeTeamSize": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "averageQuotaPerAeEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "csmTeamSize": {
+ "minimum": 1,
+ "type": "integer"
+ }
+}
addedInput schema / properties / ownership / required
Added value: +[
+ "aeTeamSize",
+ "csmTeamSize",
+ "averageQuotaPerAeEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "accounts",
+ "ownership"
+]