mirror of
https://github.com/openai/codex.git
synced 2026-04-26 23:55:25 +00:00
36 lines
826 B
JSON
36 lines
826 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"GuardianApprovalReviewOverrideDecision": {
|
|
"description": "[UNSTABLE] Client decision that preempts a pending guardian approval review.",
|
|
"enum": [
|
|
"approve",
|
|
"decline"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"description": "[UNSTABLE] Params for preempting a pending guardian approval review.",
|
|
"properties": {
|
|
"decision": {
|
|
"$ref": "#/definitions/GuardianApprovalReviewOverrideDecision"
|
|
},
|
|
"reviewId": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
},
|
|
"turnId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"decision",
|
|
"reviewId",
|
|
"threadId",
|
|
"turnId"
|
|
],
|
|
"title": "ItemGuardianApprovalReviewOverrideParams",
|
|
"type": "object"
|
|
} |