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

19 lines
423 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "GuardianWarningNotification",
"type": "object",
"required": [
"message",
"threadId"
],
"properties": {
"message": {
"description": "Concise guardian warning message for the user.",
"type": "string"
},
"threadId": {
"description": "Thread target for the guardian warning.",
"type": "string"
}
}
}