Files
codex/codex-rs/app-server-protocol/schema/json/v2/ModelRequestFailedNotification.json
2026-03-19 09:26:25 -07:00

54 lines
931 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"ModelRequestError": {
"properties": {
"code": {
"type": [
"string",
"null"
]
},
"message": {
"type": "string"
},
"param": {
"type": [
"string",
"null"
]
},
"type": {
"type": "string"
}
},
"required": [
"message",
"type"
],
"type": "object"
}
},
"properties": {
"error": {
"$ref": "#/definitions/ModelRequestError"
},
"requestId": {
"type": "string"
},
"threadId": {
"type": "string"
},
"turnId": {
"type": "string"
}
},
"required": [
"error",
"requestId",
"threadId",
"turnId"
],
"title": "ModelRequestFailedNotification",
"type": "object"
}