{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/voice-update-conference-request-schema.json", "title": "UpdateConferenceRequest", "description": "UpdateConferenceRequest schema from Bandwidth voice API", "type": "object", "properties": { "status": { "type": "string", "enum": [ "active", "completed" ], "description": "Set to completed to end the conference and disconnect all members" }, "redirectUrl": { "type": "string", "format": "uri", "description": "URL to redirect the conference to for new BXML instructions" }, "redirectMethod": { "type": "string", "enum": [ "POST", "GET" ], "default": "POST", "description": "The HTTP method for the redirect webhook" }, "tag": { "type": "string", "description": "Custom tag for the conference" } } }