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 / dealContext / properties
Added value: +{
+ "budget": {
+ "type": "string"
+ },
+ "competitors": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 3,
+ "minItems": 0,
+ "type": "array"
+ },
+ "decisionTimeline": {
+ "type": "string"
+ }
+}
addedInput schema / properties / offer / properties
Added value: +{
+ "mainBenefits": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 6,
+ "minItems": 2,
+ "type": "array"
+ },
+ "pricing": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "productName": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "useCase": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ }
+}
addedInput schema / properties / offer / required
Added value: +[
+ "productName",
+ "pricing",
+ "mainBenefits",
+ "useCase"
+]
addedInput schema / properties / prospect / properties
Added value: +{
+ "contactName": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "contactTitle": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / prospect / required
Added value: +[
+ "name",
+ "sector",
+ "contactName",
+ "contactTitle"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "prospect",
+ "offer"
+]