-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathsettings.schema.0.2.json
395 lines (395 loc) · 11.4 KB
/
settings.schema.0.2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
{
"$id": "https://aka.ms/winget-settings.schema.json",
"$schema": "https://json-schema.org/draft/2019-09/schema#",
"title": "Microsoft's Windows Package Manager Settings Profile Schema",
"definitions": {
"Source": {
"description": "Source repository settings",
"type": "object",
"properties": {
"autoUpdateIntervalInMinutes": {
"description": "Number of minutes before source update",
"type": "integer",
"default": 5,
"minimum": 0,
"maximum": 43200
}
}
},
"Visual": {
"description": "Visual settings",
"type": "object",
"properties": {
"progressBar": {
"description": "Progress bar display style",
"type": "string",
"enum": [
"accent",
"rainbow",
"retro",
"sixel",
"disabled"
]
},
"anonymizeDisplayedPaths": {
"description": "Replaces some known folder paths with their respective environment variable",
"type": "boolean",
"default": true
},
"enableSixels": {
"description": "Enables output of sixel images in certain contexts",
"type": "boolean",
"default": false
}
}
},
"Logging": {
"description": "Logging settings",
"type": "object",
"properties": {
"level": {
"description": "Preferred logging level",
"type": "string",
"enum": [
"verbose",
"info",
"warning",
"error",
"critical"
]
},
"channels": {
"description": "The logging channels to enable",
"type": "array",
"items": {
"uniqueItems": true,
"type": "string",
"enum": [
"fail",
"cli",
"sql",
"repo",
"yaml",
"core",
"test",
"config",
"default",
"all"
],
"maxLength": 20
},
"minItems": 0,
"maxItems": 20
}
}
},
"InstallPrefReq": {
"description": "Shared schema for preferences and requirements",
"type": "object",
"properties": {
"scope": {
"description": "The scope of a package install",
"type": "string",
"enum": [
"user",
"machine"
],
"default": "user"
},
"locale": {
"description": "The locales of a package install",
"type": "array",
"items": {
"type": "string",
"pattern": "^([a-zA-Z]{2}|[iI]-[a-zA-Z]+|[xX]-[a-zA-Z]{1,8})(-[a-zA-Z]{1,8})*$",
"maxLength": 20
},
"minItems": 1,
"maxItems": 10
},
"architectures": {
"description": "The architecture(s) to use for a package install",
"type": "array",
"items": {
"uniqueItems": true,
"type": "string",
"enum": [
"neutral",
"x64",
"x86",
"arm64",
"arm"
],
"minItems": 1,
"maxItems": 4
}
},
"installerTypes": {
"description": "The installerType(s) to use for a package install",
"type": "array",
"items": {
"uniqueItems": true,
"type": "string",
"enum": [
"inno",
"wix",
"msi",
"nullsoft",
"zip",
"msix",
"exe",
"burn",
"msstore",
"portable"
],
"minItems": 1,
"maxItems": 9
}
}
}
},
"InstallBehavior": {
"description": "Install settings",
"type": "object",
"properties": {
"preferences": { "$ref": "#/definitions/InstallPrefReq" },
"requirements": { "$ref": "#/definitions/InstallPrefReq" },
"skipDependencies": {
"description": "Controls whether package dependencies and Windows Features are skipped during installation",
"type": "boolean",
"default": false
},
"disableInstallNotes": {
"description": "Controls whether installation notes are shown after a successful install",
"type": "boolean",
"default": false
},
"portablePackageUserRoot": {
"description": "The default root directory where packages are installed to under User scope. Applies to the portable installer type.",
"type": "string",
"default": "%LOCALAPPDATA%/Microsoft/WinGet/Packages/"
},
"portablePackageMachineRoot": {
"description": "The default root directory where packages are installed to under Machine scope. Applies to the portable installer type.",
"type": "string",
"default": "%PROGRAMFILES%/WinGet/Packages/"
},
"defaultInstallRoot": {
"description": "Default install location to use for packages that require it when not specified",
"type": "string",
"maxLength": 32767
},
"maxResumes": {
"description": "The maximum number of resumes allowed for a single resume id. This is to prevent continuous reboots if an install that requires a reboot is not properly detected.",
"type": "integer",
"default": 3,
"minimum": 1
},
"archiveExtractionMethod": {
"description": "Controls the behavior how the installer extracts archives. The current two supported values are 'shellApi' and 'tar'. 'shellApi' uses the Windows Shell API to extract archives. 'tar' uses the tar command to extract archives.",
"type": "string",
"enum": [
"shellApi",
"tar"
],
"default": "shellApi"
}
}
},
"UninstallBehavior": {
"description": "Uninstall settings",
"type": "object",
"properties": {
"purgePortablePackage": {
"description": "Controls whether the default behavior for uninstall removes all files and directories relevant to this package. Only applies to the portable installerType.",
"type": "boolean",
"default": false
}
}
},
"ConfigureBehavior": {
"description": "Configure settings",
"type": "object",
"properties": {
"defaultModuleRoot": {
"description": "The default root directory where PowerShell modules are installed to when applying a configuration.",
"type": "string",
"maxLength": 32767,
"default": "%LOCALAPPDATA%/Microsoft/WinGet/Configuration/Modules/"
}
}
},
"DownloadBehavior": {
"description": "Download settings",
"type": "object",
"properties": {
"defaultDownloadDirectory": {
"description": "The default directory where installers are downloaded to.",
"type": "string",
"default": "%USERPROFILE%/Downloads/"
}
}
},
"Telemetry": {
"description": "Telemetry settings",
"type": "object",
"properties": {
"disable": {
"description": "Controls whether telemetry events are written",
"type": "boolean",
"default": false
}
}
},
"Network": {
"description": "Network settings",
"type": "object",
"properties": {
"downloader": {
"description": "Control which download code is used for packages",
"type": "string",
"enum": [
"default",
"wininet",
"do"
],
"default": "default"
},
"doProgressTimeoutInSeconds": {
"description": "Number of seconds to wait without progress before fallback",
"type": "integer",
"default": 60,
"minimum": 1,
"maximum": 600
}
}
},
"Interactivity": {
"description": "Interactivity settings",
"type": "object",
"properties": {
"disable": {
"description": "Controls whether interactive prompts are shown by the Windows Package Manager client",
"type": "boolean",
"default": false
}
}
},
"Experimental": {
"description": "Experimental Features",
"type": "object",
"properties": {
"experimentalCMD": {
"description": "Reference implementation for an experimental command",
"type": "boolean",
"default": false
},
"experimentalARG": {
"description": "Reference implementation for an experimental argument",
"type": "boolean",
"default": false
},
"directMSI": {
"description": "Enable use of MSI APIs rather than msiexec for MSI installs",
"type": "boolean",
"default": false
},
"configuration03": {
"description": "Enable support for configuration schema 0.3",
"type": "boolean",
"default": false
},
"configureSelfElevate": {
"description": "Enable configure commands request elevation as needed",
"type": "boolean",
"default": false
},
"configureExport": {
"description": "Enable support for the configure export command",
"type": "boolean",
"default": false
},
"fonts": {
"description": "Enable support for managing fonts",
"type": "boolean",
"default": false
}
}
}
},
"allOf": [
{
"properties": {
"source": { "$ref": "#/definitions/Source" }
},
"additionalItems": true
},
{
"properties": {
"visual": { "$ref": "#/definitions/Visual" }
},
"additionalItems": true
},
{
"properties": {
"logging": { "$ref": "#/definitions/Logging" }
},
"additionalItems": true
},
{
"properties": {
"installPrefReq": { "$ref": "#/definitions/InstallPrefReq" }
},
"additionalItems": true
},
{
"properties": {
"installBehavior": { "$ref": "#/definitions/InstallBehavior" }
},
"additionalItems": true
},
{
"properties": {
"uninstallBehavior": { "$ref": "#/definitions/UninstallBehavior" }
},
"additionalItems": true
},
{
"properties": {
"configureBehavior": { "$ref": "#/definitions/ConfigureBehavior" }
},
"additionalItems": true
},
{
"properties": {
"downloadBehavior": { "$ref": "#/definitions/DownloadBehavior" }
},
"additionalItems": true
},
{
"properties": {
"telemetry": { "$ref": "#/definitions/Telemetry" }
},
"additionalItems": true
},
{
"properties": {
"network": { "$ref": "#/definitions/Network" }
},
"additionalItems": true
},
{
"properties": {
"interactivity": { "$ref": "#/definitions/Interactivity" }
},
"additionalItems": true
},
{
"properties": {
"experimentalFeatures": { "$ref": "#/definitions/Experimental" }
},
"additionalItems": true
}
],
"additionalProperties": true
}