Vonage · Schema
Number
CommunicationMessagingTelecommunicationsVideo ConferencingVoiceSMSVerification
Properties
| Name | Type | Description |
|---|---|---|
| country | string | Two-character country code. |
| msisdn | string | Phone number in E.164 format. |
| type | string | Number type (mobile-lvn, landline, landline-toll-free). |
| features | array | |
| cost | string | Monthly cost of the number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Number",
"title": "Number",
"type": "object",
"properties": {
"country": {
"type": "string",
"description": "Two-character country code."
},
"msisdn": {
"type": "string",
"description": "Phone number in E.164 format."
},
"type": {
"type": "string",
"description": "Number type (mobile-lvn, landline, landline-toll-free)."
},
"features": {
"type": "array",
"items": {
"type": "string",
"enum": [
"SMS",
"VOICE",
"MMS"
]
}
},
"cost": {
"type": "string",
"description": "Monthly cost of the number."
}
}
}