mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
46 lines
823 B
JSON
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"
|
|
} |