Files
codex/codex-rs/app-server-protocol/schema/json/WindowsSandboxNuxPromptParams.json
2026-02-13 15:07:10 -08:00

46 lines
823 B
JSON

{
"$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"
}