AT&T Developer Hub · Schema

DeviceConnectivityStatus

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

at-t-developer-hub-deviceconnectivitystatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceConnectivityStatus",
  "title": "DeviceConnectivityStatus",
  "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
    }
  }
}