Blues · Schema

Device

IoTCellularConnectivityDevice ManagementFleet ManagementSatelliteLoRaWiFiNotecardNotehub

Properties

Name Type Description
best_location object
cellular_usage object
contact object
dfu object
disabled boolean
firmware_host string
firmware_notecard string
fleet_uids array
gps_location object
last_activity string
product_uid string
provisioned string
serial_number string
sku string
temperature number
tower_info object
tower_location object
triangulated_location object
uid string
voltage number
View JSON Schema on GitHub

JSON Schema

blues-wireless-device.json Raw ↑
{
  "type": "object",
  "properties": {
    "best_location": {
      "$ref": "#/components/schemas/Location"
    },
    "cellular_usage": {
      "$ref": "#/components/schemas/CellularUsage"
    },
    "contact": {
      "$ref": "#/components/schemas/Contact"
    },
    "dfu": {
      "$ref": "#/components/schemas/DFUEnv"
    },
    "disabled": {
      "type": "boolean"
    },
    "firmware_host": {
      "type": "string"
    },
    "firmware_notecard": {
      "type": "string"
    },
    "fleet_uids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "gps_location": {
      "$ref": "#/components/schemas/Location"
    },
    "last_activity": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "product_uid": {
      "type": "string"
    },
    "provisioned": {
      "type": "string",
      "format": "date-time"
    },
    "serial_number": {
      "type": "string"
    },
    "sku": {
      "type": "string"
    },
    "temperature": {
      "type": "number",
      "format": "double"
    },
    "tower_info": {
      "type": "object",
      "nullable": true,
      "properties": {
        "cell_id": {
          "type": "integer"
        },
        "lac": {
          "type": "integer"
        },
        "mcc": {
          "type": "integer"
        },
        "mnc": {
          "type": "integer"
        }
      }
    },
    "tower_location": {
      "$ref": "#/components/schemas/Location"
    },
    "triangulated_location": {
      "$ref": "#/components/schemas/Location"
    },
    "uid": {
      "type": "string"
    },
    "voltage": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "uid",
    "provisioned",
    "product_uid",
    "fleet_uids",
    "voltage",
    "temperature"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Device"
}