Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / common / variations / fieldtrial_testing_config_schema.json
blob840f5fda5c10c55ea975bb7cf61236d41d7a2d56
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6   "type_name": "FieldTrialTestingConfig",
7   "schema": [{
8     "field": "groups",
9     "type": "array",
10     "contents": {
11       "type_name": "FieldTrialTestingGroup",
12       "type": "struct",
13       "fields": [
14         {"field": "study", "type": "string"},
15         {"field": "group_name", "type": "string"},
16         {
17           "field": "params",
18           "type": "array",
19           "contents": {
20             "type_name": "FieldTrialGroupParams",
21             "type": "struct",
22             "fields": [
23               {"field": "key", "type": "string"},
24               {"field": "value", "type": "string"}
25             ]
26           }
27         }
28       ]
29     }
30   }]