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

15 lines
303 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JSONRPCNotification",
"description": "A notification which does not expect a response.",
"type": "object",
"required": [
"method"
],
"properties": {
"method": {
"type": "string"
},
"params": true
}
}