Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / settings / managed_storage / schema.json
blob4037d1fc11ff203d146005f2736c4178ac9d2f64
2   "type": "object",
3   "properties": {
4     "string-policy": { "type": "string" },
5     "int-policy": { "type": "integer" },
6     "double-policy": { "type": "number" },
7     "boolean-policy": { "type": "boolean" },
8     "list-policy": {
9       "type": "array",
10       "items": { "type": "string" }
11     },
12     "dict-policy": {
13       "type": "object",
14       "properties": {
15         "list": {
16           "type": "array",
17           "items": {
18             "type": "object",
19             "additionalProperties": { "type": "integer" }
20           }
21         }
22       }
23     }
24   }