mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
51 lines
905 B
JSON
51 lines
905 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"RemoteControlPairingMode": {
|
|
"enum": [
|
|
"session",
|
|
"server"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"approvalId": {
|
|
"type": "string"
|
|
},
|
|
"challenge": {
|
|
"type": "string"
|
|
},
|
|
"controllerName": {
|
|
"type": "string"
|
|
},
|
|
"environmentId": {
|
|
"type": "string"
|
|
},
|
|
"expiresAt": {
|
|
"format": "int64",
|
|
"type": "integer"
|
|
},
|
|
"mode": {
|
|
"$ref": "#/definitions/RemoteControlPairingMode"
|
|
},
|
|
"prompt": {
|
|
"type": "string"
|
|
},
|
|
"serverId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"approvalId",
|
|
"challenge",
|
|
"controllerName",
|
|
"environmentId",
|
|
"expiresAt",
|
|
"mode",
|
|
"prompt",
|
|
"serverId"
|
|
],
|
|
"title": "RemoteControlApprovalConfirmParams",
|
|
"type": "object"
|
|
} |