Verizon · Schema
DeviceInformation
Device information
WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100
Properties
| Name | Type | Description |
|---|---|---|
| accountName | string | Account the device belongs to |
| deviceIds | array | |
| state | string | Device state |
| servicePlan | string | Current service plan |
| mdn | string | Mobile Directory Number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/verizon/refs/heads/main/json-schema/thingspace-connectivity-device-information-schema.json",
"title": "DeviceInformation",
"description": "Device information",
"type": "object",
"properties": {
"accountName": {
"type": "string",
"description": "Account the device belongs to",
"example": "0000123456-00001"
},
"deviceIds": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DeviceId"
}
},
"state": {
"type": "string",
"enum": [
"active",
"inactive",
"ready",
"deactivated"
],
"description": "Device state",
"example": "active"
},
"servicePlan": {
"type": "string",
"description": "Current service plan",
"example": "ThingSpace"
},
"mdn": {
"type": "string",
"description": "Mobile Directory Number",
"example": "19085551234"
}
}
}