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"
+]
removedInput schema / properties / currentToolsLandscape
Removed value: -{
- "type": "object"
-}
addedInput schema / properties / departments / items
Added value: +{
+ "maxLength": 60,
+ "type": "string"
+}
addedInput schema / properties / departments / maxItems
Added value: +8
addedInput schema / properties / departments / minItems
Added value: +1
removedInput schema / properties / implementationConstraints
Removed value: -{
- "type": "array"
-}
addedInput schema / properties / kpiRequests
Added value: +{
+ "items": {
+ "properties": {
+ "currentTrackingMethod": {
+ "enum": [
+ "manual",
+ "spreadsheet",
+ "partial-tool",
+ "none"
+ ],
+ "type": "string"
+ },
+ "department": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "frequency": {
+ "enum": [
+ "realtime",
+ "daily",
+ "weekly",
+ "monthly"
+ ],
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "department",
+ "currentTrackingMethod",
+ "frequency"
+ ],
+ "type": "object"
+ },
+ "maxItems": 12,
+ "minItems": 3,
+ "type": "array"
+}
removedInput schema / properties / objectives
Removed value: -{
- "type": "array"
-}
addedInput schema / properties / primaryDashboardTool
Added value: +{
+ "enum": [
+ "metabase",
+ "tableau",
+ "powerbi",
+ "looker",
+ "grafana",
+ "notion",
+ "other",
+ "none"
+ ],
+ "type": "string"
+}
addedInput schema / properties / techStack
Added value: +{
+ "items": {
+ "maxLength": 60,
+ "type": "string"
+ },
+ "maxItems": 10,
+ "minItems": 0,
+ "type": "array"
+}
addedInput schema / required
Added value: +[
+ "company",
+ "departments",
+ "kpiRequests",
+ "techStack"
+]