app-server support for Windows sandbox setup.

This commit is contained in:
iceweasel-oai
2026-02-17 11:39:01 -08:00
parent 31cbebd3c2
commit 29e7f851cd
21 changed files with 626 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"WindowsSandboxSetupMode": {
"enum": [
"elevated",
"unelevated"
],
"type": "string"
}
},
"properties": {
"mode": {
"$ref": "#/definitions/WindowsSandboxSetupMode"
}
},
"required": [
"mode"
],
"title": "WindowsSandboxSetupStartParams",
"type": "object"
}