ApiSchemas
HookDeliveryPage
One shape from the contract, as it appears on the wire.
Used by hooks.deliveries
JSON Schema
{
"type": "object",
"properties": {
"deliveries": {
"type": "array",
"items": {
"$ref": "#/components/schemas/HookDelivery"
}
},
"nextCursor": {
"type": "string"
}
},
"required": [
"deliveries"
],
"additionalProperties": false
}