Container for a list of webhook IDs.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContainerForWebhookIDs", "title": "ContainerForWebhookIDs", "additionalProperties": false, "description": "Container for a list of webhook IDs.", "properties": { "webhookIds": { "description": "A list of webhook IDs.", "items": { "description": "A list of webhook IDs.", "format": "int64", "type": "integer" }, "type": "array" } }, "required": [ "webhookIds" ], "type": "object" }