-
Notifications
You must be signed in to change notification settings - Fork 2
/
com.google.Keystone.json
51 lines (51 loc) · 1.63 KB
/
com.google.Keystone.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"title": "Google Keystone Settings",
"description": "Preference Domain: com.google.keystone",
"__version": "1.0",
"__feedback": "josh@psu.edu",
"type": "object",
"options": {
"remove_empty_properties": true
},
"definitions": {
"policy_group": {
"type": "object",
"format": "grid",
"options": {
"collapsed": true,
"disable_properties": true
}
}
},
"properties": {
"updatePolicies": {
"title": "Update Policies",
"propertyOrder": 10,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "object",
"properties": {
"global": {
"title": "Global",
"type": "object",
"properties": {
"UpdateDefault": {
"title": "Default Style of Update",
"decription": "Type of update style to use. 0 for automatic, 1 for install on update checks, 2 for manual only and 3 for never",
"type": "integer",
"enum": [0, 1, 2, 3],
"options": {
"enum_titles": ["Automatic", "Scheduled", "Manual", "Never"]
}
}
}
}
}
}]
}
}
}