winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a3cea271bb84cf2a3358d97242effc348cce18a5
parent 9171097d6790628cc2226456729026657ed91b60
Author: JohnMcPMS <johnmcp@microsoft.com>
Date:   Wed, 12 Mar 2025 18:02:04 -0700

Add securityContext entry to 0.2 schema (#5295)

## Change
Adds the `securityContext` directive to the 0.2 schema.
Diffstat:
Mschemas/JSON/configuration/configuration.schema.0.2.json | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/schemas/JSON/configuration/configuration.schema.0.2.json b/schemas/JSON/configuration/configuration.schema.0.2.json @@ -73,6 +73,11 @@ "allowPrerelease": { "type": "boolean", "description": "Enable using prerelease modules." + }, + "securityContext": { + "type": "string", + "enum": [ "current", "restricted", "elevated" ], + "description": "Provides an indication of the security context in which the configuration unit should be run." } }, "additionalProperties": true,