|
18 | 18 | "format": "date-time"
|
19 | 19 | },
|
20 | 20 | "steps": {
|
21 |
| - "anyOf": [ |
22 |
| - { |
23 |
| - "type": "array", |
24 |
| - "items": { |
| 21 | + "type": ["null", "array"], |
| 22 | + "items": { |
| 23 | + "type": ["null", "object"], |
| 24 | + "additionalProperties": true, |
| 25 | + "properties": { |
| 26 | + "count": { |
| 27 | + "type": ["null", "integer"] |
| 28 | + }, |
| 29 | + "avg_time": { |
| 30 | + "type": ["null", "number"], |
| 31 | + "multipleOf": 1e-20 |
| 32 | + }, |
| 33 | + "avg_time_from_start": { |
| 34 | + "type": ["null", "number"], |
| 35 | + "multipleOf": 1e-20 |
| 36 | + }, |
| 37 | + "goal": { |
| 38 | + "type": ["null", "string"] |
| 39 | + }, |
| 40 | + "overall_conv_ratio": { |
| 41 | + "type": ["null", "number"], |
| 42 | + "multipleOf": 1e-20 |
| 43 | + }, |
| 44 | + "step_conv_ratio": { |
| 45 | + "type": ["null", "number"], |
| 46 | + "multipleOf": 1e-20 |
| 47 | + }, |
| 48 | + "event": { |
| 49 | + "type": ["null", "string"] |
| 50 | + }, |
| 51 | + "session_event": { |
| 52 | + "type": ["null", "string"] |
| 53 | + }, |
| 54 | + "step_label": { |
| 55 | + "type": ["null", "string"] |
| 56 | + }, |
| 57 | + "selector": { |
| 58 | + "type": ["null", "string"] |
| 59 | + }, |
| 60 | + "selector_params": { |
25 | 61 | "type": ["null", "object"],
|
26 | 62 | "additionalProperties": true,
|
27 | 63 | "properties": {
|
28 |
| - "count": { |
29 |
| - "type": ["null", "integer"] |
30 |
| - }, |
31 |
| - "avg_time": { |
32 |
| - "type": ["null", "number"], |
33 |
| - "multipleOf": 1e-20 |
34 |
| - }, |
35 |
| - "avg_time_from_start": { |
36 |
| - "type": ["null", "number"], |
37 |
| - "multipleOf": 1e-20 |
38 |
| - }, |
39 |
| - "goal": { |
40 |
| - "type": ["null", "string"] |
41 |
| - }, |
42 |
| - "overall_conv_ratio": { |
43 |
| - "type": ["null", "number"], |
44 |
| - "multipleOf": 1e-20 |
45 |
| - }, |
46 |
| - "step_conv_ratio": { |
47 |
| - "type": ["null", "number"], |
48 |
| - "multipleOf": 1e-20 |
49 |
| - }, |
50 |
| - "event": { |
51 |
| - "type": ["null", "string"] |
52 |
| - }, |
53 |
| - "session_event": { |
54 |
| - "type": ["null", "string"] |
55 |
| - }, |
56 | 64 | "step_label": {
|
57 | 65 | "type": ["null", "string"]
|
| 66 | + } |
| 67 | + } |
| 68 | + }, |
| 69 | + "time_buckets_from_start": { |
| 70 | + "type": ["null", "object"], |
| 71 | + "additionalProperties": false, |
| 72 | + "properties": { |
| 73 | + "lower": { |
| 74 | + "type": ["null", "integer"] |
58 | 75 | },
|
59 |
| - "selector": { |
60 |
| - "type": ["null", "string"] |
| 76 | + "higher": { |
| 77 | + "type": ["null", "integer"] |
61 | 78 | },
|
62 |
| - "selector_params": { |
63 |
| - "type": ["null", "object"], |
64 |
| - "additionalProperties": true, |
65 |
| - "properties": { |
66 |
| - "step_label": { |
67 |
| - "type": ["null", "string"] |
68 |
| - } |
| 79 | + "buckets": { |
| 80 | + "type": ["null", "array"], |
| 81 | + "items": { |
| 82 | + "type": "integer" |
69 | 83 | }
|
| 84 | + } |
| 85 | + } |
| 86 | + }, |
| 87 | + "time_buckets_from_prev": { |
| 88 | + "type": ["null", "object"], |
| 89 | + "additionalProperties": false, |
| 90 | + "properties": { |
| 91 | + "lower": { |
| 92 | + "type": ["null", "integer"] |
70 | 93 | },
|
71 |
| - "time_buckets_from_start": { |
72 |
| - "type": ["null", "object"], |
73 |
| - "additionalProperties": false, |
74 |
| - "properties": { |
75 |
| - "lower": { |
76 |
| - "type": ["null", "integer"] |
77 |
| - }, |
78 |
| - "higher": { |
79 |
| - "type": ["null", "integer"] |
80 |
| - }, |
81 |
| - "buckets": { |
82 |
| - "anyOf": [ |
83 |
| - { |
84 |
| - "type": "array", |
85 |
| - "items": { |
86 |
| - "type": "integer" |
87 |
| - } |
88 |
| - }, |
89 |
| - { |
90 |
| - "type": "null" |
91 |
| - } |
92 |
| - ] |
93 |
| - } |
94 |
| - } |
| 94 | + "higher": { |
| 95 | + "type": ["null", "integer"] |
95 | 96 | },
|
96 |
| - "time_buckets_from_prev": { |
97 |
| - "type": ["null", "object"], |
98 |
| - "additionalProperties": false, |
99 |
| - "properties": { |
100 |
| - "lower": { |
101 |
| - "type": ["null", "integer"] |
102 |
| - }, |
103 |
| - "higher": { |
104 |
| - "type": ["null", "integer"] |
105 |
| - }, |
106 |
| - "buckets": { |
107 |
| - "anyOf": [ |
108 |
| - { |
109 |
| - "type": "array", |
110 |
| - "items": { |
111 |
| - "type": "integer" |
112 |
| - } |
113 |
| - }, |
114 |
| - { |
115 |
| - "type": "null" |
116 |
| - } |
117 |
| - ] |
118 |
| - } |
| 97 | + "buckets": { |
| 98 | + "type": ["null", "array"], |
| 99 | + "items": { |
| 100 | + "type": "integer" |
119 | 101 | }
|
120 | 102 | }
|
121 | 103 | }
|
122 | 104 | }
|
123 |
| - }, |
124 |
| - { |
125 |
| - "type": "null" |
126 | 105 | }
|
127 |
| - ] |
| 106 | + } |
128 | 107 | },
|
129 | 108 | "analysis": {
|
130 | 109 | "type": ["null", "object"],
|
|
0 commit comments