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