Payload schema
approvalRequestEventOffsetinteger
The presented batch's identity: the offset of its project/human-approval-requested event on the project root stream — the only identity a client sees (device-stream offsets never leave the platform).
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"approvalRequestEventOffset": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991,
"description": "The presented batch's identity: the offset of its project/human-approval-requested event on the project root stream — the only identity a client sees (device-stream offsets never leave the platform)."
}
},
"required": [
"approvalRequestEventOffset"
],
"additionalProperties": false
}