23 lines
373 B
JSON
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"
|
|
}
|
|
}
|
|
} |