Google Chrome · Schema

MemoryInfo

Memory hardware specifications.

BrowserChrome ExtensionsDeveloper ToolsWeb Platform

Properties

Name Type Description
totalRamBytes string Total RAM in bytes.
availableRamBytes string Available RAM in bytes.
totalInternalStorageBytes string Total internal storage in bytes.
View JSON Schema on GitHub

JSON Schema

google-chrome-memoryinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MemoryInfo",
  "title": "MemoryInfo",
  "type": "object",
  "description": "Memory hardware specifications.",
  "properties": {
    "totalRamBytes": {
      "type": "string",
      "format": "int64",
      "description": "Total RAM in bytes."
    },
    "availableRamBytes": {
      "type": "string",
      "format": "int64",
      "description": "Available RAM in bytes."
    },
    "totalInternalStorageBytes": {
      "type": "string",
      "format": "int64",
      "description": "Total internal storage in bytes."
    }
  }
}