Google Chrome · Schema

StorageStatusReport

Storage usage report at a point in time.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
reportTime string Timestamp of the report.
disk array Disk information for each disk on the device.
View JSON Schema on GitHub

JSON Schema

google-chrome-storagestatusreport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageStatusReport",
  "title": "StorageStatusReport",
  "type": "object",
  "description": "Storage usage report at a point in time.",
  "properties": {
    "reportTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the report."
    },
    "disk": {
      "type": "array",
      "description": "Disk information for each disk on the device.",
      "items": {
        "type": "object",
        "properties": {
          "bytesReadThisSession": {
            "type": "string",
            "format": "int64",
            "description": "Bytes read this session."
          },
          "bytesWrittenThisSession": {
            "type": "string",
            "format": "int64",
            "description": "Bytes written this session."
          },
          "readTimeThisSession": {
            "type": "string",
            "description": "Time spent reading this session."
          },
          "writeTimeThisSession": {
            "type": "string",
            "description": "Time spent writing this session."
          },
          "ioTimeThisSession": {
            "type": "string",
            "description": "Time spent on I/O operations this session."
          },
          "discardTimeThisSession": {
            "type": "string",
            "description": "Time spent on discard operations this session."
          },
          "volumeIds": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Volume IDs associated with this disk."
          },
          "health": {
            "type": "string",
            "description": "Disk health state."
          }
        }
      }
    }
  }
}