{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListWebhooksResponse", "title": "ListWebhooksResponse", "properties": { "_links": { "description": "Pagination references.", "$ref": "#/components/schemas/PaginationLinks" }, "accountReference": { "description": "Reference to the account.", "type": "string" }, "data": { "description": "The list of webhooks configured for this account.", "items": { "$ref": "#/components/schemas/Webhook" }, "type": "array" }, "itemsTotal": { "description": "Total number of items.", "format": "int32", "type": "integer" }, "pagesTotal": { "description": "Total number of pages.", "format": "int32", "type": "integer" } }, "required": [ "itemsTotal", "pagesTotal" ], "type": "object" }