Request to disconnect phone numbers
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-disconnect-request-schema.json", "title": "DisconnectRequest", "description": "Request to disconnect phone numbers", "type": "object", "properties": { "name": { "type": "string", "description": "A name for the disconnect order" }, "disconnectTelephoneNumberOrderType": { "type": "object", "properties": { "telephoneNumberList": { "type": "array", "items": { "type": "string" }, "description": "List of phone numbers to disconnect" } } } } }