Payload schema
reasonstringoptional
Why the loop paused.
triggerOffsetintegeroptional
Self-driven context offset that tripped the autonomous breaker; absent for an operator-authored pause.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"reason": {
"description": "Why the loop paused.",
"type": "string",
"minLength": 1
},
"triggerOffset": {
"description": "Self-driven context offset that tripped the autonomous breaker; absent for an operator-authored pause.",
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
}
}
}