mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
23 lines
426 B
JSON
23 lines
426 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"TurnAbortReason": {
|
|
"enum": [
|
|
"interrupted",
|
|
"replaced",
|
|
"review_ended"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"abortReason": {
|
|
"$ref": "#/definitions/TurnAbortReason"
|
|
}
|
|
},
|
|
"required": [
|
|
"abortReason"
|
|
],
|
|
"title": "InterruptConversationResponse",
|
|
"type": "object"
|
|
} |