mirror of
https://github.com/openai/codex.git
synced 2026-05-24 21:14:51 +00:00
47 lines
831 B
JSON
Generated
47 lines
831 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"McpServerStartupFailure": {
|
|
"properties": {
|
|
"error": {
|
|
"type": "string"
|
|
},
|
|
"server": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"error",
|
|
"server"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"cancelled": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"failed": {
|
|
"items": {
|
|
"$ref": "#/definitions/McpServerStartupFailure"
|
|
},
|
|
"type": "array"
|
|
},
|
|
"ready": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"cancelled",
|
|
"failed",
|
|
"ready"
|
|
],
|
|
"title": "McpServerStartupCompletedNotification",
|
|
"type": "object"
|
|
} |