Google Chrome · Schema

CountChromeDevicesThatNeedOsUpdateResponse

Response containing counts of devices needing OS updates.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
deviceOsNeedUpdateCount array
View JSON Schema on GitHub

JSON Schema

google-chrome-countchromedevicesthatneedosupdateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CountChromeDevicesThatNeedOsUpdateResponse",
  "title": "CountChromeDevicesThatNeedOsUpdateResponse",
  "type": "object",
  "description": "Response containing counts of devices needing OS updates.",
  "properties": {
    "deviceOsNeedUpdateCount": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "osVersion": {
            "type": "string",
            "description": "ChromeOS version."
          },
          "count": {
            "type": "string",
            "format": "int64",
            "description": "Number of devices running this version."
          }
        }
      }
    }
  }
}