Files
codex/codex-rs/app-server-protocol/schema/json/v2/FeedbackUploadParams.json
Ningyi Xie cc8c0955bc Pass turn id with feedback uploads
Co-authored-by: Codex <noreply@openai.com>
2026-04-10 00:55:25 -07:00

44 lines
681 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"classification": {
"type": "string"
},
"extraLogFiles": {
"items": {
"type": "string"
},
"type": [
"array",
"null"
]
},
"includeLogs": {
"type": "boolean"
},
"reason": {
"type": [
"string",
"null"
]
},
"threadId": {
"type": [
"string",
"null"
]
},
"turnId": {
"type": [
"string",
"null"
]
}
},
"required": [
"classification",
"includeLogs"
],
"title": "FeedbackUploadParams",
"type": "object"
}