Verizon · JSON Structure

Thingspace Connectivity Device Information Structure

Device information

Type: object Properties: 5
WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

DeviceInformation is a JSON Structure definition published by Verizon, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountName deviceIds state servicePlan mdn

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verizon/refs/heads/main/json-structure/thingspace-connectivity-device-information-structure.json",
  "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"
    }
  },
  "name": "DeviceInformation"
}