addedInput schema / properties / challenges / items
Added value: +{
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+}
addedInput schema / properties / challenges / maxItems
Added value: +4
addedInput schema / properties / challenges / minItems
Added value: +0
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 / customer / properties
Added value: +{
+ "contractStartDate": {
+ "type": "string"
+ },
+ "contractValueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "tier": {
+ "enum": [
+ "strategic",
+ "enterprise",
+ "mid-market",
+ "smb"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / customer / required
Added value: +[
+ "name",
+ "sector",
+ "tier",
+ "contractValueEur",
+ "contractStartDate"
+]
addedInput schema / properties / metrics / properties
Added value: +{
+ "featureAdoptionPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "npsScore": {
+ "maximum": 10,
+ "minimum": 0,
+ "type": "number"
+ },
+ "renewalDateDays": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "supportTickets": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "usageRate": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / nextQuarterGoals / items
Added value: +{
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+}
addedInput schema / properties / nextQuarterGoals / maxItems
Added value: +5
addedInput schema / properties / nextQuarterGoals / minItems
Added value: +1
addedInput schema / properties / period / properties
Added value: +{
+ "quarter": {
+ "enum": [
+ "Q1",
+ "Q2",
+ "Q3",
+ "Q4"
+ ],
+ "type": "string"
+ },
+ "year": {
+ "maximum": 2030,
+ "minimum": 2020,
+ "type": "number"
+ }
+}
addedInput schema / properties / period / required
Added value: +[
+ "quarter",
+ "year"
+]
addedInput schema / properties / wins / items
Added value: +{
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+}
addedInput schema / properties / wins / maxItems
Added value: +6
addedInput schema / properties / wins / minItems
Added value: +1
addedInput schema / required
Added value: +[
+ "company",
+ "customer",
+ "period",
+ "metrics",
+ "wins",
+ "challenges",
+ "nextQuarterGoals"
+]