app server request/response structure for sandbox nux

This commit is contained in:
iceweasel-oai
2026-02-13 15:07:10 -08:00
parent 12f69b893f
commit 96557c4854
31 changed files with 1502 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"WindowsSandboxNuxPromptAction": {
"enum": [
"setupElevated",
"setupUnelevated",
"retryElevated",
"quit"
],
"type": "string"
}
},
"properties": {
"action": {
"$ref": "#/definitions/WindowsSandboxNuxPromptAction"
}
},
"required": [
"action"
],
"title": "WindowsSandboxNuxPromptResponse",
"type": "object"
}