AT&T Developer Hub · Schema

DeviceConnectivityStatus

DeviceConnectivityStatus schema

Fortune 1005GNetwork APIsCAMARAConnectivityTelecommunicationsEdge ComputingDevice StatusSIM Swap

Properties

Name Type Description
connectivityStatus string Current device connectivity state
roaming boolean Whether the device is currently roaming
View JSON Schema on GitHub

JSON Schema

device-status-api-device-connectivity-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-t-developer-hub/refs/heads/main/json-schema/device-status-api-device-connectivity-status-schema.json",
  "title": "DeviceConnectivityStatus",
  "description": "DeviceConnectivityStatus schema",
  "type": "object",
  "properties": {
    "connectivityStatus": {
      "type": "string",
      "description": "Current device connectivity state",
      "enum": [
        "CONNECTED_DATA",
        "CONNECTED_SMS",
        "NOT_CONNECTED"
      ],
      "example": "CONNECTED_DATA"
    },
    "roaming": {
      "type": "boolean",
      "description": "Whether the device is currently roaming",
      "example": false
    }
  }
}