{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-webhook-subscription-create-schema.json", "title": "WebhookSubscriptionCreate", "description": "Request body for creating a webhook subscription.", "type": "object", "properties": { "url": { "type": "string", "format": "uri", "description": "The HTTPS endpoint URL. Must use TLS 1.2 or higher.", "example": "https://example.com" }, "event_categories": { "type": "array", "items": { "type": "string" }, "description": "The event categories to subscribe to.", "example": [ "example-value" ] } }, "required": [ "url", "event_categories" ] }