Files
codex/codex-rs/app-server-protocol/schema/json/McpElicitationRequestParams.json
2026-02-23 08:31:57 -08:00

38 lines
638 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"RequestId": {
"anyOf": [
{
"type": "string"
},
{
"format": "int64",
"type": "integer"
}
]
}
},
"properties": {
"message": {
"type": "string"
},
"requestId": {
"$ref": "#/definitions/RequestId"
},
"serverName": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"message",
"requestId",
"serverName",
"threadId"
],
"title": "McpElicitationRequestParams",
"type": "object"
}