Payload schema
approvalRequestEventOffsetinteger
The held request's identity: the offset of its human-approval-requested event.
reason"human" | "expired"
Who refused: a human, or the hold's timeout.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"approvalRequestEventOffset": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991,
"description": "The held request's identity: the offset of its human-approval-requested event."
},
"reason": {
"type": "string",
"enum": [
"human",
"expired"
],
"description": "Who refused: a human, or the hold's timeout."
}
},
"required": [
"approvalRequestEventOffset",
"reason"
]
}