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

21 lines
457 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DeprecationNoticeNotification",
"type": "object",
"required": [
"summary"
],
"properties": {
"details": {
"description": "Optional extra guidance, such as migration steps or rationale.",
"type": [
"string",
"null"
]
},
"summary": {
"description": "Concise summary of what is deprecated.",
"type": "string"
}
}
}