From b7c71def911779b7b0f7755548ad21d80964b3c8 Mon Sep 17 00:00:00 2001 From: Fernando Beck Date: Mon, 26 Jun 2023 15:00:22 +0200 Subject: [PATCH] feat(specs): add new outlier count properties to variant payload (#1656) --- specs/abtesting/common/schemas/Variant.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/specs/abtesting/common/schemas/Variant.yml b/specs/abtesting/common/schemas/Variant.yml index 7d8415cf47..9f3d92ca7f 100644 --- a/specs/abtesting/common/schemas/Variant.yml +++ b/specs/abtesting/common/schemas/Variant.yml @@ -31,6 +31,12 @@ variant: $ref: '../parameters.yml#/index' noResultCount: $ref: '../../../common/parameters.yml#/count' + outlierTrackedSearchesCount: + type: integer + description: Count of the tracked searches attributed to outlier traffic that were removed from the A/B test. + outlierUsersCount: + type: integer + description: Count of users attributed to outlier traffic that were removed from the A/B test. searchCount: type: integer description: The number of search during the A/B test. @@ -54,3 +60,5 @@ variant: - clickThroughRate - clickCount - averageClickPosition + - outlierUsersCount + - outlierTrackedSearchesCount