{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebhookList", "title": "WebhookList", "type": "object", "properties": { "offset": { "type": "integer", "description": "The offset of the result set." }, "limit": { "type": "integer", "description": "The limit applied to the result set." }, "count": { "type": "integer", "description": "The number of items returned." }, "totalCount": { "type": "integer", "description": "The total number of webhooks." }, "items": { "type": "array", "items": { "$ref": "#/components/schemas/Webhook" } } } }