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

29 lines
457 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "McpServerOauthLoginParams",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"scopes": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
},
"timeoutSecs": {
"type": [
"integer",
"null"
],
"format": "int64"
}
}
}