addedInput schema / properties / deal / properties
Added value: +{
+ "companyName": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "dealSizeEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "stage": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / deal / required
Added value: +[
+ "companyName",
+ "sector",
+ "dealSizeEur",
+ "stage"
+]
addedInput schema / properties / knownContacts / items
Added value: +{
+ "properties": {
+ "department": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "engagementLevel": {
+ "enum": [
+ "none",
+ "low",
+ "medium",
+ "high"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "notes": {
+ "maxLength": 300,
+ "type": "string"
+ },
+ "title": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "title",
+ "department",
+ "engagementLevel"
+ ],
+ "type": "object"
+}
addedInput schema / properties / knownContacts / maxItems
Added value: +10
addedInput schema / properties / knownContacts / minItems
Added value: +1
addedInput schema / properties / sellerContext / properties
Added value: +{
+ "dealVelocityDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "mainValueProp": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ },
+ "ourProductName": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / sellerContext / required
Added value: +[
+ "ourProductName",
+ "mainValueProp"
+]
addedInput schema / required
Added value: +[
+ "deal",
+ "knownContacts",
+ "sellerContext"
+]