{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WebhookCreateRequest", "title": "WebhookCreateRequest", "type": "object", "description": "Request body for creating a new webhook.", "properties": { "notificationUrl": { "type": "string", "format": "uri", "description": "The URL that will receive POST notifications when changes occur." }, "specification": { "$ref": "#/components/schemas/WebhookSpecification" } }, "required": [ "notificationUrl" ] }