Google Chrome · Schema

HeartbeatStatusReport

Heartbeat status indicating the device is online.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
reportTime string Timestamp of the heartbeat.
state string Device state.
View JSON Schema on GitHub

JSON Schema

google-chrome-heartbeatstatusreport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeartbeatStatusReport",
  "title": "HeartbeatStatusReport",
  "type": "object",
  "description": "Heartbeat status indicating the device is online.",
  "properties": {
    "reportTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the heartbeat."
    },
    "state": {
      "type": "string",
      "description": "Device state.",
      "enum": [
        "STATE_UNSPECIFIED",
        "UNKNOWN",
        "ONLINE",
        "OFFLINE"
      ]
    }
  }
}