Google Chrome · Schema
BatteryInfo
Battery hardware information.
BrowserChrome ExtensionsDeveloper ToolsWeb Platform
Properties
| Name | Type | Description |
|---|---|---|
| serialNumber | string | Battery serial number. |
| manufacturer | string | Battery manufacturer. |
| designCapacity | string | Design capacity in milliamp hours. |
| designMinVoltage | integer | Designed minimum voltage in millivolts. |
| manufactureDate | string | Battery manufacture date. |
| technology | string | Battery technology (e.g., Li-ion). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BatteryInfo",
"title": "BatteryInfo",
"type": "object",
"description": "Battery hardware information.",
"properties": {
"serialNumber": {
"type": "string",
"description": "Battery serial number."
},
"manufacturer": {
"type": "string",
"description": "Battery manufacturer."
},
"designCapacity": {
"type": "string",
"format": "int64",
"description": "Design capacity in milliamp hours."
},
"designMinVoltage": {
"type": "integer",
"description": "Designed minimum voltage in millivolts."
},
"manufactureDate": {
"type": "string",
"format": "date",
"description": "Battery manufacture date."
},
"technology": {
"type": "string",
"description": "Battery technology (e.g., Li-ion)."
}
}
}