Files
codex-telegram-bot/schemas/v2/McpServerOauthLoginCompletedNotification.json
2026-05-21 08:40:16 +00:00

23 lines
373 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "McpServerOauthLoginCompletedNotification",
"type": "object",
"required": [
"name",
"success"
],
"properties": {
"error": {
"type": [
"string",
"null"
]
},
"name": {
"type": "string"
},
"success": {
"type": "boolean"
}
}
}