Payload schema
Telegram's message_id for the sent message.
The chat the message went to (present on connection-stream claims).
On session-stream markers: the offset of the send-requested this send satisfies.
On connection-stream claims: the coordinates of the satisfied send-requested.
The send-requested event's offset.
The session stream it lives on.
On connection-stream claims: the session stream — what reply hints resolve to.
Additional properties beyond the listed fields are allowed.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"messageId": {
"type": "number",
"description": "Telegram's message_id for the sent message."
},
"chatId": {
"description": "The chat the message went to (present on connection-stream claims).",
"type": "string"
},
"requestOffset": {
"description": "On session-stream markers: the offset of the send-requested this send satisfies.",
"type": "number"
},
"request": {
"description": "On connection-stream claims: the coordinates of the satisfied send-requested.",
"type": "object",
"properties": {
"offset": {
"type": "number",
"description": "The send-requested event's offset."
},
"stream": {
"type": "string",
"description": "The session stream it lives on."
}
},
"required": [
"offset",
"stream"
]
},
"sessionPath": {
"description": "On connection-stream claims: the session stream — what reply hints resolve to.",
"type": "string"
}
},
"required": [
"messageId"
],
"additionalProperties": {}
}