Index: chrome/common/variations/fieldtrial_testing_config_schema.json |
diff --git a/chrome/common/variations/fieldtrial_testing_config_schema.json b/chrome/common/variations/fieldtrial_testing_config_schema.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f00a3e9e3a8edb5288989afda9816c1c9da58070 |
--- /dev/null |
+++ b/chrome/common/variations/fieldtrial_testing_config_schema.json |
@@ -0,0 +1,31 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+{ |
+ "type_name": "FieldTrialTestingConfig", |
+ "schema": [{ |
+ "field": "groups", |
+ "type": "array", |
+ "contents": { |
+ "type_name": "FieldTrialTestingGroup", |
+ "type": "struct", |
+ "fields": [ |
+ {"field": "study", "type": "string"}, |
+ {"field": "group_name", "type": "string"}, |
+ { |
+ "field": "params", |
+ "type": "array", |
+ "contents": { |
+ "type_name": "FieldTrialGroupParams", |
+ "type": "struct", |
+ "fields": [ |
+ {"field": "key", "type": "string"}, |
+ {"field": "value", "type": "string"} |
+ ] |
+ } |
+ } |
+ ] |
+ } |
+ }] |
+} |