| OLD | NEW |
| 1 { | 1 { |
| 2 "TestTrial1": [ | 2 "TestTrial1": [ |
| 3 {"group_name": "TestGroup1"} | 3 { |
| 4 "platforms": ["win"], |
| 5 "experiments": [{"name": "TestGroup1"}] |
| 6 } |
| 4 ], | 7 ], |
| 5 "TestTrial2": [ | 8 "TestTrial2": [ |
| 6 { | 9 { |
| 7 "group_name": "TestGroup2", | 10 "platforms": ["win"], |
| 8 "params": { | 11 "experiments": [ |
| 9 "x": "1", | 12 { |
| 10 "y": "2" | 13 "name": "TestGroup2", |
| 11 }, | 14 "params": { |
| 12 "enable_features": ["A", "B"], | 15 "x": "1", |
| 13 "disable_features": ["C"] | 16 "y": "2" |
| 14 }, | 17 }, |
| 15 { | 18 "enable_features": ["A", "B"], |
| 16 "group_name": "TestGroup2-2", | 19 "disable_features": ["C"] |
| 17 "params": { | 20 }, |
| 18 "x": "3", | 21 { |
| 19 "y": "4" | 22 "name": "TestGroup2-2", |
| 20 }, | 23 "params": { |
| 21 "enable_features": ["D", "E"], | 24 "x": "3", |
| 22 "disable_features": ["F"] | 25 "y": "4" |
| 26 }, |
| 27 "enable_features": ["D", "E"], |
| 28 "disable_features": ["F"] |
| 29 } |
| 30 ] |
| 23 } | 31 } |
| 24 ], | 32 ], |
| 25 "TestTrial3": [ | 33 "TestTrial3": [ |
| 26 {"group_name": "TestGroup3", "enable_features": ["X"]} | 34 { |
| 35 "platforms": ["win"], |
| 36 "experiments": [{"name": "TestGroup3", "enable_features": ["X"]}] |
| 37 } |
| 27 ] | 38 ] |
| 28 } | 39 } |
| OLD | NEW |