{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamWebhookConfiguration", "title": "EventStreamWebhookConfiguration", "type": "object", "description": "Configuration specific to a webhook destination.", "additionalProperties": false, "required": [ "webhook_endpoint", "webhook_authorization" ], "properties": { "webhook_endpoint": { "type": "string", "description": "Target HTTP endpoint URL.", "pattern": "^https://.*" }, "webhook_authorization": { "$ref": "#/components/schemas/EventStreamWebhookAuthorizationResponse" } } }