Files
codex/codex-rs/app-server-protocol/schema/json/v2/RemoteControlApprovalRequestResponse.json
2026-04-16 10:49:35 -07:00

40 lines
685 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"RemoteControlApprovalDecision": {
"enum": [
"approve",
"deny"
],
"type": "string"
}
},
"properties": {
"approvalKeyId": {
"type": [
"string",
"null"
]
},
"decision": {
"$ref": "#/definitions/RemoteControlApprovalDecision"
},
"signature": {
"type": [
"string",
"null"
]
},
"signatureAlgorithm": {
"type": [
"string",
"null"
]
}
},
"required": [
"decision"
],
"title": "RemoteControlApprovalRequestResponse",
"type": "object"
}