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,46 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"WindowsSandboxNuxPromptScreen": {
"enum": [
"enable",
"fallback"
],
"type": "string"
},
"WindowsSandboxNuxSurface": {
"enum": [
"tui",
"codexApp",
"vscode"
],
"type": "string"
}
},
"properties": {
"failureCode": {
"type": [
"string",
"null"
]
},
"failureMessage": {
"type": [
"string",
"null"
]
},
"screen": {
"$ref": "#/definitions/WindowsSandboxNuxPromptScreen"
},
"surface": {
"$ref": "#/definitions/WindowsSandboxNuxSurface"
}
},
"required": [
"screen",
"surface"
],
"title": "WindowsSandboxNuxPromptParams",
"type": "object"
}