Payload schema
pathstring
The agent stream the presented reply lives on.
replyEventOffsetinteger
The presented reply's identity on that stream: the offset of its agents/web-message-sent event (offsets are per-stream, so path + offset together are the identity).
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"path": {
"type": "string",
"pattern": "^\\/agents\\/.*",
"description": "The agent stream the presented reply lives on."
},
"replyEventOffset": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "The presented reply's identity on that stream: the offset of its agents/web-message-sent event (offsets are per-stream, so path + offset together are the identity)."
}
},
"required": [
"path",
"replyEventOffset"
],
"additionalProperties": false
}