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

21 lines
454 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WarningNotification",
"type": "object",
"required": [
"message"
],
"properties": {
"message": {
"description": "Concise warning message for the user.",
"type": "string"
},
"threadId": {
"description": "Optional thread target when the warning applies to a specific thread.",
"type": [
"string",
"null"
]
}
}
}