From f242701dd54bc58b4dc685cde1e72498b7b23545 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 13 Feb 2026 12:06:34 +0000 Subject: [PATCH] docs: add missing title property to webhook API schemas Closes #2035 Co-Authored-By: Claude Opus 4.6 --- apify-api/openapi/components/schemas/webhooks/Webhook.yaml | 3 +++ .../openapi/components/schemas/webhooks/WebhookCreate.yaml | 3 +++ .../openapi/components/schemas/webhooks/WebhookUpdate.yaml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/apify-api/openapi/components/schemas/webhooks/Webhook.yaml b/apify-api/openapi/components/schemas/webhooks/Webhook.yaml index 3f52936ae8..ff6759f161 100644 --- a/apify-api/openapi/components/schemas/webhooks/Webhook.yaml +++ b/apify-api/openapi/components/schemas/webhooks/Webhook.yaml @@ -54,6 +54,9 @@ properties: headersTemplate: type: [string, "null"] examples: ['{\n "Authorization": "Bearer ..."}'] + title: + type: [string, "null"] + examples: [Actor run succeeded webhook] description: type: [string, "null"] examples: [this is webhook description] diff --git a/apify-api/openapi/components/schemas/webhooks/WebhookCreate.yaml b/apify-api/openapi/components/schemas/webhooks/WebhookCreate.yaml index ed7a8df11b..c7873803e5 100644 --- a/apify-api/openapi/components/schemas/webhooks/WebhookCreate.yaml +++ b/apify-api/openapi/components/schemas/webhooks/WebhookCreate.yaml @@ -35,6 +35,9 @@ properties: headersTemplate: type: [string, "null"] examples: ['{\n "Authorization": "Bearer ..."}'] + title: + type: [string, "null"] + examples: [Actor run succeeded webhook] description: type: [string, "null"] examples: [this is webhook description] diff --git a/apify-api/openapi/components/schemas/webhooks/WebhookUpdate.yaml b/apify-api/openapi/components/schemas/webhooks/WebhookUpdate.yaml index 1f1bb68e84..f41123365a 100644 --- a/apify-api/openapi/components/schemas/webhooks/WebhookUpdate.yaml +++ b/apify-api/openapi/components/schemas/webhooks/WebhookUpdate.yaml @@ -31,6 +31,9 @@ properties: headersTemplate: type: [string, "null"] examples: ['{\n "Authorization": "Bearer ..."}'] + title: + type: [string, "null"] + examples: [Actor run succeeded webhook] description: type: [string, "null"] examples: [this is webhook description]