{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VoiceWebhookCreate", "title": "VoiceWebhookCreate", "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "format": "uri", "description": "The URL to receive webhook callbacks." }, "token": { "type": "string", "description": "A token for webhook signature validation." } } }