addedInput schema / properties / account / properties
Added value: +{
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "currentProducts": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "size": {
+ "enum": [
+ "smb",
+ "mid-market",
+ "enterprise",
+ "strategic"
+ ],
+ "type": "string"
+ },
+ "usageSignals": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 0,
+ "type": "array"
+ }
+}
addedInput schema / properties / account / required
Added value: +[
+ "name",
+ "arrEur",
+ "currentProducts"
+]
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 / portfolio / items
Added value: +{
+ "properties": {
+ "category": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "category"
+ ],
+ "type": "object"
+}
addedInput schema / properties / portfolio / maxItems
Added value: +10
addedInput schema / properties / portfolio / minItems
Added value: +2
addedInput schema / required
Added value: +[
+ "company",
+ "account",
+ "portfolio"
+]