Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions specs/abtesting/common/schemas/ABTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ ABTestConfiguration:
type: object
description: A/B test configuration.
properties:
featureFilters:
$ref: '#/FeatureFilters'
outliers:
$ref: '#/Outliers'
emptySearch:
Expand Down Expand Up @@ -169,3 +171,17 @@ EffectMetric:
- clickThroughRate
- conversionRate
- purchaseRate

FeatureFilters:
type: object
description: Configuration of feature-based filters applied to the A/B test population.
properties:
dynamicReRanking:
type: boolean
description: Whether to apply Dynamic Re-Ranking feature filters.
aiPerso:
type: boolean
description: Whether to apply AI Personalization feature filters.
multiSignalRanking:
type: boolean
description: Whether to apply Multi-Signal Re-Ranking feature filters.
2 changes: 2 additions & 0 deletions specs/abtesting/paths/estimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ post:
type: object
description: A/B test configuration for estimating the sample size and duration using minimum detectable effect.
properties:
featureFilters:
$ref: '../common/schemas/ABTest.yml#/FeatureFilters'
outliers:
$ref: '../common/schemas/ABTest.yml#/Outliers'
emptySearch:
Expand Down