Properties
| Name | Type | Description |
|---|---|---|
| assigned | number | Count of phone numbers that are in the assigned state. |
| unAssigned | number | Count of phone numbers which are in the un-assigned state. |
| inActive | number | Count of phone numbers which are inactive. |
| extensionOnly | number | Count of extensions only without phone number. |
| tollFreeNumbers | number | Count of the toll free numbers. |
| total | number | Total phone numbers and extensions available. |
| mobileNumber | number | Count of phone numbers of type `MOBILE_NUMBER` only without `PSTN_NUMBER` and extension. |
| serviceNumber | number | Count of phone numbers with `includedTelephonyTypes` as `PSTN_NUMBER` and `isServiceNumber` value as `true`. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NumberCount",
"title": "NumberCount",
"type": "object",
"properties": {
"assigned": {
"type": "number",
"example": 33,
"description": "Count of phone numbers that are in the assigned state."
},
"unAssigned": {
"type": "number",
"example": 114,
"description": "Count of phone numbers which are in the un-assigned state."
},
"inActive": {
"type": "number",
"example": 12,
"description": "Count of phone numbers which are inactive."
},
"extensionOnly": {
"type": "number",
"example": 692,
"description": "Count of extensions only without phone number."
},
"tollFreeNumbers": {
"type": "number",
"example": 1,
"description": "Count of the toll free numbers."
},
"total": {
"type": "number",
"example": 839,
"description": "Total phone numbers and extensions available."
},
"mobileNumber": {
"type": "number",
"example": 6,
"description": "Count of phone numbers of type `MOBILE_NUMBER` only without `PSTN_NUMBER` and extension."
},
"serviceNumber": {
"type": "number",
"example": 1,
"description": "Count of phone numbers with `includedTelephonyTypes` as `PSTN_NUMBER` and `isServiceNumber` value as `true`."
}
}
}