Response containing a list of 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-phone-number-list-response-schema.json", "title": "PhoneNumberListResponse", "description": "Response containing a list of phone numbers", "type": "object", "properties": { "totalCount": { "type": "integer", "description": "Total number of phone numbers" }, "telephoneNumbers": { "type": "array", "items": { "$ref": "#/components/schemas/PhoneNumber" } } } }