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

24 lines
472 B
JSON

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