Verizon · Schema

DeviceId

Device identifier

WirelessTelecommunicationsIoT5GEnterpriseNetwork APIsFortune 100

Properties

Name Type Description
kind string Type of device identifier
id string Device identifier value
View JSON Schema on GitHub

JSON Schema

thingspace-connectivity-device-id-schema.json Raw ↑
{
  "$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-id-schema.json",
  "title": "DeviceId",
  "description": "Device identifier",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "imei",
        "meid",
        "esn",
        "iccid",
        "min",
        "mdn",
        "otaid"
      ],
      "description": "Type of device identifier",
      "example": "imei"
    },
    "id": {
      "type": "string",
      "description": "Device identifier value",
      "example": "990013907835573"
    }
  }
}