Payload schema
subscriptionKeystring
atOffsetinteger
attemptsinteger
errorstringoptional
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"subscriptionKey": {
"type": "string",
"minLength": 1
},
"atOffset": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"attempts": {
"type": "integer",
"exclusiveMinimum": 0,
"maximum": 9007199254740991
},
"error": {
"type": "string",
"minLength": 1
}
},
"required": [
"subscriptionKey",
"atOffset",
"attempts"
]
}