{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/voice-transcription-request-schema.json", "title": "TranscriptionRequest", "description": "TranscriptionRequest schema from Bandwidth voice API", "type": "object", "properties": { "callbackUrl": { "type": "string", "format": "uri", "description": "The URL to send the transcription completed webhook to" }, "callbackMethod": { "type": "string", "enum": [ "POST", "GET" ], "default": "POST", "description": "The HTTP method for the transcription webhook" }, "tag": { "type": "string", "description": "Custom tag for the transcription request" } } }