ApiSchemas
HookConnectionStats
One shape from the contract, as it appears on the wire.
Used by hooks.stats
Referenced from HookStats
JSON Schema
{
"type": "object",
"properties": {
"connectionId": {
"$ref": "#/components/schemas/ConnectionId"
},
"connectionName": {
"type": "string"
},
"pending": {
"type": "integer",
"minimum": 0
},
"delivered": {
"type": "integer",
"minimum": 0
},
"dead": {
"type": "integer",
"minimum": 0
},
"lastError": {
"type": "string"
},
"lastErrorAt": {
"type": "string"
}
},
"required": [
"connectionId",
"connectionName",
"pending",
"delivered",
"dead"
],
"additionalProperties": false
}