AT&T Developer Hub · JSON Structure

Device Status Api Device Roaming Status Structure

DeviceRoamingStatus schema

Type: object Properties: 3
Fortune 1005GNetwork APIsCAMARAConnectivityTelecommunicationsEdge ComputingDevice StatusSIM Swap

DeviceRoamingStatus is a JSON Structure definition published by AT&T Developer Hub, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

roaming countryCode countryName

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/at-t-developer-hub/refs/heads/main/json-structure/device-status-api-device-roaming-status-structure.json",
  "description": "DeviceRoamingStatus schema",
  "type": "object",
  "properties": {
    "roaming": {
      "type": "boolean",
      "description": "Whether the device is roaming",
      "example": false
    },
    "countryCode": {
      "type": "int32",
      "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
    }
  },
  "name": "DeviceRoamingStatus"
}