You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specs/abtesting-v3/common/schemas/Variant.yml
+23-13Lines changed: 23 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ variant:
28
28
metrics:
29
29
$ref: "#/metrics"
30
30
metadata:
31
-
$ref: "#/metadata"
31
+
$ref: "#/variantMetadata"
32
32
33
33
required:
34
34
- index
@@ -60,14 +60,8 @@ metric:
60
60
dimension:
61
61
type: string
62
62
description: Dimension defined during test creation
63
-
winsorizedValue:
64
-
type: number
65
-
format: double
66
-
description: |
67
-
Only present in case the metric is 'revenue'.
68
-
It is the amount exceeding the 95th percentile of global revenue transactions involved in the AB Test. This amount is not considered when calculating statistical significance.
69
-
It is tied to a per revenue-currency pair contrary to other
70
-
global filter effects (such as outliers and empty search count).
63
+
metadata:
64
+
$ref: "#/metricMetadata"
71
65
required:
72
66
- name
73
67
- updatedAt
@@ -84,19 +78,35 @@ metric:
84
78
pValue: 0.004
85
79
- name: revenue
86
80
dimension: USD
87
-
updatedAt": 2025-05-15T17:52:15.644906Z
81
+
updatedAt: 2025-05-15T17:52:15.644906Z
88
82
value: 1200.50
89
83
pValue: 0.04
90
-
example: 20.2
84
+
metadata: { "winsorizedValue": 80.2 }
91
85
- name: revenue
92
86
dimension: EUR
93
87
updatedAt: 2025-05-15T17:52:15.644906Z
94
88
value: 999.66
95
89
pValue: 0.04
96
-
example: 888.44
90
+
metadata: { "winsorizedValue": 888.8 }
97
91
98
-
metadata:
92
+
variantMetadata:
99
93
type: object
94
+
description: Variant specific metadata
100
95
properties:
101
96
filterEffects:
102
97
$ref: "../parameters.yml#/filterEffects"
98
+
99
+
metricMetadata:
100
+
type: object
101
+
description: Metric specific metadata
102
+
properties:
103
+
winsorizedValue:
104
+
type: number
105
+
format: double
106
+
description: |
107
+
Only present in case the metric is 'revenue'.
108
+
It is the amount exceeding the 95th percentile of global revenue transactions involved in the AB Test. This amount is not considered when calculating statistical significance.
109
+
It is tied to a per revenue-currency pair contrary to other
110
+
global filter effects (such as outliers and empty search count).
0 commit comments