Bandwidth · Schema

AvailableNumber

An available phone number from Bandwidth inventory

CommunicationsCPaaSVoiceMessagingTelephonySMSMFA

Properties

Name Type Description
fullNumber string The full phone number in E.164 format
city string The city associated with the number
state string The state associated with the number
lata string The LATA code for the number
rateCenter string The rate center for the number
View JSON Schema on GitHub

JSON Schema

phone-numbers-available-number-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/phone-numbers-available-number-schema.json",
  "title": "AvailableNumber",
  "description": "An available phone number from Bandwidth inventory",
  "type": "object",
  "properties": {
    "fullNumber": {
      "type": "string",
      "description": "The full phone number in E.164 format"
    },
    "city": {
      "type": "string",
      "description": "The city associated with the number"
    },
    "state": {
      "type": "string",
      "description": "The state associated with the number"
    },
    "lata": {
      "type": "string",
      "description": "The LATA code for the number"
    },
    "rateCenter": {
      "type": "string",
      "description": "The rate center for the number"
    }
  }
}