AT&T · Schema

DeviceRoamingStatus

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
roaming boolean Whether the device is roaming
countryCode integer Country code where device is roaming (ITU-T E.164)
countryName array Country name(s) where device is roaming
View JSON Schema on GitHub

JSON Schema

att-deviceroamingstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceRoamingStatus",
  "title": "DeviceRoamingStatus",
  "type": "object",
  "properties": {
    "roaming": {
      "type": "boolean",
      "description": "Whether the device is roaming",
      "example": false
    },
    "countryCode": {
      "type": "integer",
      "nullable": true,
      "description": "Country code where device is roaming (ITU-T E.164)",
      "example": null
    },
    "countryName": {
      "type": "array",
      "nullable": true,
      "description": "Country name(s) where device is roaming",
      "items": {
        "type": "string"
      },
      "example": null
    }
  }
}