addedInput schema / properties / account / properties
Added value: +{
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "championName": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "churnReason": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ },
+ "daysToChurn": {
+ "maximum": 365,
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "signals": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ }
+}
addedInput schema / properties / account / required
Added value: +[
+ "name",
+ "arrEur",
+ "churnReason",
+ "signals"
+]
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 / product / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "account",
+ "product"
+]