Google Chrome · Schema
StorageInfo
Storage hardware specifications.
BrowserChrome ExtensionsDeveloper ToolsWeb Platform
Properties
| Name | Type | Description |
|---|---|---|
| totalDiskBytes | string | Total disk space in bytes. |
| availableDiskBytes | string | Available disk space in bytes. |
| volume | array | Disk volumes and partitions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StorageInfo",
"title": "StorageInfo",
"type": "object",
"description": "Storage hardware specifications.",
"properties": {
"totalDiskBytes": {
"type": "string",
"format": "int64",
"description": "Total disk space in bytes."
},
"availableDiskBytes": {
"type": "string",
"format": "int64",
"description": "Available disk space in bytes."
},
"volume": {
"type": "array",
"description": "Disk volumes and partitions.",
"items": {
"type": "object",
"properties": {
"volumeId": {
"type": "string",
"description": "Volume identifier."
},
"storageTotalBytes": {
"type": "string",
"format": "int64",
"description": "Total storage of the volume in bytes."
},
"storageFreeBytes": {
"type": "string",
"format": "int64",
"description": "Free storage of the volume in bytes."
}
}
}
}
}
}